/* main.css - General Styles */

* {
    box-sizing: border-box;
}

/* Global Image Auto-Resize Rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Responsive image containers */
.image-container,
.img-container,
.photo-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-container img,
.img-container img,
.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img,
.img-container:hover img,
.photo-container:hover img {
    transform: scale(1.05);
}

/* Auto-sizing for different aspect ratios */
.img-square {
    aspect-ratio: 1/1;
}

.img-landscape {
    aspect-ratio: 16/9;
}

.img-portrait {
    aspect-ratio: 3/4;
}

.img-wide {
    aspect-ratio: 21/9;
}

/* Flexible image sizes */
.img-small {
    max-width: 300px;
}

.img-medium {
    max-width: 600px;
}

.img-large {
    max-width: 900px;
}

.img-full {
    width: 100%;
}

/* Content images auto-resize */
.content img,
.post-content img,
.page-content img,
.entry-content img,
.single-blog-body img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 50%;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 50%;
}

.aligncenter {
    display: block;
    margin: 20px auto;
    text-align: center;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide {
    width: 120%;
    max-width: 120%;
    margin-left: -10%;
    margin-right: -10%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .alignwide {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .img-small,
    .img-medium {
        max-width: 100%;
    }
}

/* Blog Styles Fallback - Ensure blog styles are always loaded */
.single-blog-post {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #232526 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.single-blog-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.single-blog-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.single-blog-body {
    color: #e0e0e0;
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.back-to-blog {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000000;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    /* Prevent layout shift */
    opacity: 1 !important;
    visibility: visible !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    color: var(--color-text);
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    /* IE6/7 support */
    zoom: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }

p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Links */
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent-alt);
}

/* Buttons */
.btn-primary {
    background: var(--color-gold-gradient);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: var(--color-accent-alt);
}

/* Sections */
.section {
    padding: 80px 0;
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold-gradient);
    border-radius: 2px;
}

.section-header h3 {
    color: #718096;
    font-weight: 400;
    margin: 0;
}

/* Hero Section with Light/Gold Theme */
.hero-photo-editing {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0 40px 0;
  overflow: hidden;
}

.hero-photo-editing .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: var(--color-gold-gradient);
}

.shape-1 { 
  width: 180px; 
  height: 180px; 
  top: -60px; 
  left: -60px; 
  background: var(--color-gold-gradient);
}
.shape-2 { 
  width: 120px; 
  height: 120px; 
  bottom: 40px; 
  right: 10%; 
  background: var(--color-gold-gradient);
}
.shape-3 { 
  width: 80px; 
  height: 80px; 
  top: 30%; 
  right: -40px; 
  background: var(--color-gold-gradient);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, #FFD70033 0%, transparent 70%);
  z-index: 2;
}

.banner-content {
  display: flex;
  flex: 1 1 100%;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

.hero-text-section {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #23272f;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px 0;
  color: #ece8ab;
}

.title-highlight {
  color: #FFD700;
  font-weight: 900;
}

.title-gradient {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin: 18px 0 0 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
}

.stat-label {
  font-size: 0.95rem;
  color: #aaa;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin: 18px 0 0 0;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: #23272f;
  color: #fff;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #000;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #bdbdbd;
}

.hero-visual {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.image-showcase {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}

.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 450px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  user-select: none;
  touch-action: pan-y;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.base-image,
.overlay-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.base-image img,
.overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay-image {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.25s cubic-bezier(.4,2,.6,1);
}
.base-image { z-index: 1; }
.image-caption {
  position: absolute;
  top: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
  letter-spacing: 1px;
}
.before-caption { left: 20px; }
.after-caption { right: 20px; }
.slider-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 100%;
  z-index: 10;
  pointer-events: none;
}
.divider-line {
  position: absolute;
  left: -2px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}
.divider-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: ew-resize;
}
.handle-circle {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(255,215,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  border: 2px solid #fff;
}
@media (max-width: 768px) {
  .comparison-slider { height: 220px; }
  .handle-circle { width: 32px; height: 32px; font-size: 14px; }
}
.upload-zone {
  margin-top: 24px;
  background: #181a1f;
  border-radius: 14px;
  padding: 24px 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-content i {
  font-size: 2.2rem;
  color: #FFD700;
}

.upload-content h3 {
  color: #FFD700;
  margin: 0;
  font-size: 1.2rem;
}

.upload-content p {
  color: #ccc;
  margin: 0;
}

.upload-btn {
  margin-top: 8px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.upload-btn:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; gap: 32px; }
  .hero-text-section, .hero-visual { max-width: 100%; }
  .before-after-slider { height: 220px; }


  .about-hero-content { flex-direction: column; gap: 32px; }
  .about-hero-text, .about-hero-image { max-width: 100%; }
  .about-hero-image img { height: 260px; object-fit: cover; }


  .portfolio-photoedit-grid { grid-template-columns: 1fr; }


  .contact-photoedit-card { flex-direction: column; gap: 32px; padding: 24px; }
  .contact-photoedit-info, .contact-photoedit-form { max-width: 100%; }
.hero-visual {min-width: 100%;}

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .before-after-slider {
    height: 300px;
  }
  
  .handle-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}



/* Animation for header elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-section,
.hero-visual {
  animation: fadeInUp 0.6s ease-out;
}

.hero-visual {
  animation-delay: 0.2s;
}


/* Service Cards with Functional Before/After Sliders */
.photo-editing-services {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-photo-frame {
  position: absolute;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  opacity: 0.1;
}

.frame-1 { width: 120px; height: 80px; top: 10%; left: 5%; }
.frame-2 { width: 100px; height: 60px; top: 60%; right: 10%; }
.frame-3 { width: 80px; height: 50px; bottom: 20%; left: 15%; }

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  opacity: 0.1;
}

.orb-1 { width: 200px; height: 200px; top: -100px; right: -100px; }
.orb-2 { width: 150px; height: 150px; bottom: -75px; left: -75px; }

.container {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #000;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD700;
}

.card-header p {
  color: #ccc;
  font-size: 0.95rem;
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  cursor: ew-resize;
  user-select: none;
}

.before-after-slider.dragging {
  cursor: grabbing;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  width: 100%;
}

.before-label,
.after-label {
  position: absolute;
  top: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  /* width: 4px; */
  height: 100%;
  background: #FFD700;
  cursor: ew-resize;
  z-index: 20;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.slider-handle:hover,
.slider-handle.hover {
  background: #FFA500;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.slider-handle.dragging {
  background: #FFA500;
  box-shadow: 0 0 20px rgba(255, 215, 0, 1);
}

.handle-line {
  width: 100%;
  height: 100%;
  background: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  color: #000;
  font-size: 14px;
  transition: all 0.3s ease;
}

.slider-handle:hover .handle-circle,
.slider-handle.hover .handle-circle {
  background: #FFA500;
  transform: translate(-50%, -50%) scale(1.1);
}

.slider-handle.dragging .handle-circle {
  background: #FFA500;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Focus styles for accessibility */
.slider-handle:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}



.card-features {
  margin: 25px 0;
}

.card-features ul {
  list-style: none;
  padding: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.9rem;
}

.card-features i {
  color: #FFD700;
  font-size: 12px;
}

.card-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold-gradient);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .before-after-slider {
    height: 200px;
}

.handle-circle {
    width: 35px;
    height: 35px;
    font-size: 12px;
}
  
  .card-actions {
      flex-direction: column;

  }
}


/* Modern About Us Section Styles */
.about-hero-modern {
  position: relative;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #fff;
  padding: 80px 0 40px 0;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 { width: 200px; height: 200px; top: -60px; left: -60px; background: linear-gradient(135deg, #FFD700, #FFA500);}
.shape-2 { width: 120px; height: 120px; bottom: 40px; right: 10%; background: linear-gradient(135deg, #4fc3f7, #29b6f6);}
.shape-3 { width: 80px; height: 80px; top: 30%; right: -40px; background: linear-gradient(135deg, #9c27b0, #7b1fa2);}
.about-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.about-hero-text {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-hero-badge {
  display: inline-block;
  background: #FFD700;
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-align: center;
}
.about-hero-highlight {
  color: #FFD700;
  font-weight: 900;
}
.about-hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px 0;
}
.about-hero-text p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 12px;
}
.about-hero-stats {
  display: flex;
  gap: 32px;
  margin: 18px 0 0 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
  transition: all 0.3s ease;
  position: relative;
}

.stat-number.animated {
  animation: statPulse 0.6s ease-out;
}

@keyframes statPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.stat-label {
  font-size: 0.95rem;
  color: #aaa;
}
.about-hero-image {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  object-fit: cover;
}

/* Timeline */
.about-timeline-modern {
  background: #181a1f;
  color: #fff;
  padding: 60px 0 40px 0;
}
.timeline-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFD700;
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFD700, #FFA500);
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.timeline-dot {
  width: 32px;
  height: 32px;
  background: #FFD700;
  border-radius: 50%;
  margin-top: 4px;
  box-shadow: 0 0 0 6px rgba(255,215,0,0.15);
  z-index: 2;
}
.timeline-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 18px 28px;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.timeline-year {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.timeline-content h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  color: #fff;
}
.timeline-content p {
  color: #b0bec5;
  font-size: 0.98rem;
  margin: 0;
}

/* Team Grid */
.about-team-modern {
  background: #232526;
  color: #fff;
  padding: 60px 0 40px 0;
}
.team-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFD700;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
  border-color: #FFD700;
}
.team-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,215,0,0.08);
}
.team-info {
  padding: 18px 10px 14px 10px;
}
.team-info h4 {
  margin: 0 0 6px 0;
  color: #FFD700;
  font-size: 1.1rem;
}
.team-role {
  color: #4fc3f7;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Values Section */
.about-values-modern {
  background: #181a1f;
  color: #fff;
  padding: 60px 0 40px 0;
}
.values-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFD700;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 18px;
  padding: 32px 18px 24px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  cursor: pointer;
}
.value-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
  border-color: #FFD700;
}
.value-icon {
  font-size: 2.2rem;
  color: #FFD700;
  margin-bottom: 14px;
}
.value-card h4 {
  margin: 0 0 8px 0;
  color: #FFD700;
  font-size: 1.1rem;
}
.value-card p {
  color: #b0bec5;
  font-size: 0.98rem;
  margin: 0;
}

/* Responsive Design */



/* Modern Photo Editing Portfolio Styles */
.portfolio-photoedit-modern {
  position: relative;
  background: linear-gradient(135deg, #181a1f 0%, #232526 100%);
  color: #fff;
  padding: 80px 0 40px 0;
  overflow: hidden;
}
.portfolio-photoedit-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.portfolio-photoedit-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
}
.shape-1 { width: 180px; height: 180px; top: -60px; left: -60px; background: linear-gradient(135deg, #FFD700, #FFA500);}
.shape-2 { width: 120px; height: 120px; bottom: 40px; right: 10%; background: linear-gradient(135deg, #4fc3f7, #29b6f6);}
.shape-3 { width: 80px; height: 80px; top: 30%; right: -40px; background: linear-gradient(135deg, #9c27b0, #7b1fa2);}
.portfolio-photoedit-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.portfolio-photoedit-badge {
  display: inline-block;
  background: #FFD700;
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.portfolio-photoedit-highlight {
  color: #FFD700;
  font-weight: 900;
}
.portfolio-photoedit-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.portfolio-photoedit-header p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 0;
}
.portfolio-photoedit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}
.portfolio-photoedit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.portfolio-photoedit-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
  border-color: #FFD700;
}
.photoedit-beforeafter {
  position: relative;
  width: 100%;
  height: 240px;
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  user-select: none;
}
.photoedit-before, .photoedit-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: clip-path 0.3s cubic-bezier(.4,2,.6,1);
}
.photoedit-before { z-index: 1; }
.photoedit-after { z-index: 2; }
.photoedit-slider {
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 100%;
  z-index: 10;
  pointer-events: auto;
  cursor: ew-resize;
  transition: left 0.3s cubic-bezier(.4,2,.6,1);
}
.slider-dot {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255,215,0,0.18);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photoedit-card-content {
  padding: 24px 18px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.photoedit-card-content h3 {
  margin: 0 0 6px 0;
  color: #FFD700;
  font-size: 1.1rem;
}
.photoedit-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.tag {
  background: #232526;
  color: #FFD700;
  border-radius: 12px;
  padding: 3px 12px;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.photoedit-card-content p {
  color: #b0bec5;
  font-size: 0.98rem;
  margin: 0;
}
.portfolio-photoedit-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-photoedit-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 12px 32px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.18);
  transition: all 0.3s;
}
.btn-photoedit-modern:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  color: #000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.22);
}


.photoedit-beforeafter-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* Ensures responsive height */
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  user-select: none;
  min-height: 160px; /* fallback for browsers not supporting aspect-ratio */
  max-height: 340px;
}

.photoedit-before, .photoedit-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: clip-path 0.3s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
  display: block;
}

.photoedit-slider-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 100%;
  z-index: 10;
  pointer-events: auto;
  cursor: ew-resize;
  outline: none;
}

.photoedit-slider-handle::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255,215,0,0.18);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}





.pricing-photoedit-modern {
  position: relative;
  background: linear-gradient(135deg, #232526 0%, #181a1f 100%);
  color: #fff;
  padding: 80px 0 40px 0;
  overflow: hidden;
}
.pricing-photoedit-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.pricing-photoedit-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
}
.shape-1 { width: 180px; height: 180px; top: -60px; left: -60px; background: linear-gradient(135deg, #FFD700, #FFA500);}
.shape-2 { width: 120px; height: 120px; bottom: 40px; right: 10%; background: linear-gradient(135deg, #4fc3f7, #29b6f6);}
.shape-3 { width: 80px; height: 80px; top: 30%; right: -40px; background: linear-gradient(135deg, #9c27b0, #7b1fa2);}
.pricing-photoedit-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.pricing-photoedit-badge {
  display: inline-block;
  background: #FFD700;
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.pricing-photoedit-highlight {
  color: #FFD700;
  font-weight: 900;
}
.pricing-photoedit-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.pricing-photoedit-header p {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 0;
}
.pricing-photoedit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}
.pricing-photoedit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px 32px 24px;
}
.pricing-photoedit-card:hover, .pricing-photoedit-card.featured {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,215,0,0.10);
  border-color: #FFD700;
  z-index: 3;
}
.pricing-layer-icon {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 18px;
}
.pricing-photoedit-card h3 {
  margin: 0 0 10px 0;
  color: #FFD700;
  font-size: 1.3rem;
  font-weight: 700;
}
.pricing-photoedit-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 18px;
}
.pricing-photoedit-price .currency {
  font-size: 1.2rem;
  vertical-align: super;
  color: #FFD700;
}
.pricing-photoedit-price .period {
  font-size: 1rem;
  color: #aaa;
  font-weight: 400;
  margin-left: 2px;
}
.pricing-photoedit-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  width: 100%;
}
.pricing-photoedit-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pricing-photoedit-features li i {
  color: #FFD700;
  font-size: 1.1em;
}
.btn-photoedit-pricing {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 12px 32px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.18);
  transition: all 0.3s;
  margin-top: 10px;
}
.btn-photoedit-pricing:hover, .btn-photoedit-pricing.featured {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  color: #000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.22);
}
.pricing-featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FFD700;
  color: #232526;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 6px 16px;
  box-shadow: 0 2px 8px rgba(255,215,0,0.10);
  letter-spacing: 0.5px;
}
.pricing-photoedit-footer {
  text-align: center;
  margin-top: 48px;
  color: #b0bec5;
  font-size: 1.05rem;
}
.pricing-photoedit-link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 600;
}



.contact-photoedit-modern {
  position: relative;
  background: linear-gradient(135deg, #232526 0%, #181a1f 100%);
  color: #fff;
  padding: 80px 0 40px 0;
  overflow: hidden;
}
.contact-photoedit-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.contact-photoedit-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
}
.shape-1 { width: 180px; height: 180px; top: -60px; left: -60px; background: linear-gradient(135deg, #FFD700, #FFA500);}
.shape-2 { width: 120px; height: 120px; bottom: 40px; right: 10%; background: linear-gradient(135deg, #4fc3f7, #29b6f6);}
.shape-3 { width: 80px; height: 80px; top: 30%; right: -40px; background: linear-gradient(135deg, #9c27b0, #7b1fa2);}
.contact-photoedit-card {
  display: flex;
  gap: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 48px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-photoedit-info {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-photoedit-badge {
  display: inline-block;
  background: #FFD700;
  color: #232526;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-align: center;
}
.contact-photoedit-highlight {
  color: #FFD700;
  font-weight: 900;
}
.contact-photoedit-info h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.contact-photoedit-info p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 0;
}
.contact-photoedit-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 0 0;
}
.contact-photoedit-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: #fff;
}
.contact-photoedit-method i {
  font-size: 1.5rem;
  color: #FFD700;
  margin-top: 2px;
}
.contact-photoedit-method strong {
  display: block;
  color: #FFD700;
  font-size: 1rem;
  font-weight: 700;
}
.contact-photoedit-method a {
  color: #4fc3f7;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-photoedit-social {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.contact-photoedit-social a {
  color: #FFD700;
  font-size: 1.4rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-photoedit-social a:hover {
  background: #FFD700;
  color: #232526;
  transform: scale(1.12);
}
.contact-photoedit-form {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-photoedit-form-card {
  background: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 36px 28px 28px 28px;
  width: 100%;
  max-width: 500px;
}
.contact-photoedit-form-card h3 {
  margin: 0 0 18px 0;
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}



/*--------------View.php------------*/
.newform-contact-form {
  background: rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 36px 24px 28px 24px;
  max-width: 480px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.newform-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.input-wrapper {
  position: relative;
  flex: 1 1 180px;
  min-width: 120px;
  margin-bottom: 0;
}

.input-wrapper.full-width {
  flex: 1 1 100%;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 16px 12px 16px 12px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  color: #232526;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  resize: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  background: rgba(255,255,255,0.32);
  box-shadow: 0 0 0 2px #FFD70055;
}

.input-wrapper label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #888;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  background: transparent;
  transition: 0.2s;
  z-index: 2;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  color: #FFD700;
  background: rgba(255,255,255,0.85);
  padding: 0 6px;
  border-radius: 6px;
}

.input-border {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 2px;
  opacity: 0.2;
  transition: opacity 0.2s;
}

.input-wrapper input:focus ~ .input-border,
.input-wrapper textarea:focus ~ .input-border {
  opacity: 1;
}

.btn-submit-modern {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #232526;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 14px 0;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(255,215,0,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 8px;
  width: 100%;
}

.btn-submit-modern:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  color: #000;
  transform: translateY(-2px) scale(1.03);
}

.g-recaptcha {
   transform: scale(0.85);
    transform-origin: 0 0;
    margin: 0 auto;
  
  border-radius: 8px;
  overflow: hidden;
}

.form-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #b91c1c;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.form-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #16a34a;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}





.footer-modern {
  position: relative;
  background: var(--color-bg-alt);
  color: var(--color-text);
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}
.footer-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.footer-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
}
.shape-1 { width: 160px; height: 160px; top: -40px; left: -40px; background: linear-gradient(135deg, #FFD700, #FFA500);}
.shape-2 { width: 100px; height: 100px; bottom: 30px; right: 8%; background: linear-gradient(135deg, #4fc3f7, #29b6f6);}
.shape-3 { width: 60px; height: 60px; top: 40%; right: -30px; background: linear-gradient(135deg, #9c27b0, #7b1fa2);}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 2;
}
.footer-brand-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo img, .footer-logo .logo-placeholder {
  max-width: 160px;
  margin-bottom: 10px;
}

/* Footer Logo Styles */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-symbol img {
  max-width: 160px;
  /*height: 50px;*/
  object-fit: contain;
  margin-bottom: 0;
}
.footer-description {
  color: #b0bec5;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.footer-social-modern {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.footer-social-modern a {
  color: #FFD700;
  font-size: 1.3rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-modern a:hover {
  background: #FFD700;
  color: #232526;
  transform: scale(1.12) rotate(-8deg);
}
.footer-links-modern h4,
.footer-contact-modern h4 {
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-menu-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu-modern li {
  margin-bottom: 10px;
}
.footer-menu-modern a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-menu-modern a:hover {
  color: var(--color-accent);
}
.footer-contact-modern .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.footer-contact-modern .contact-item i {
  color: #FFD700;
  font-size: 1.1em;
  margin-top: 2px;
}
.footer-contact-modern .contact-item a {
  color: #4fc3f7;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.05rem;
}
.footer-bottom-modern {
  background: rgba(255,255,255,0.04);
  padding: 18px 0;
  text-align: center;
  color: #b0bec5;
  font-size: 1.05rem;
  border-top: 1px solid rgba(255,215,0,0.08);
}
.footer-bottom-modern .designed_by a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 600px) {
    
    .container{ width: 100%;}
  .footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 30px 0 10px 0; }
  .footer-brand-modern, .footer-links-modern, .footer-contact-modern { align-items: center; text-align: center; }
  .footer-social-modern { justify-content: center; }

 
  .hero-photo-editing { padding: 40px 0 20px 0; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .before-after-slider { height: 140px; }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
  }
 
  .about-hero-modern { padding: 40px 0 20px 0; }
  .about-hero-text h1 { font-size: 2rem; }
  .about-hero-stats { gap: 16px; }
  .timeline-title, .team-title, .values-title { font-size: 1.3rem; }
  .timeline-content, .team-info, .value-card { padding: 12px; }

  .portfolio-photoedit-header h2 { font-size: 1.3rem; }
  .photoedit-card-content { padding: 12px; }
  .photoedit-beforeafter-slider {
    aspect-ratio: 1.2/1;
    min-height: 120px;
    max-height: unset;
  }
 
  .pricing-photoedit-header h2 { font-size: 1.3rem; }
  .pricing-photoedit-card { padding: 18px 8px 18px 8px; }

  .contact-photoedit-card { padding: 10px; border-radius: 16px; }
  .contact-photoedit-form-card { padding: 16px 6px 12px 6px; border-radius: 12px; }
  .contact-photoedit-info h2 { font-size: 1.1rem; }

  .newform-contact-form { padding: 12px 4px 8px 4px; border-radius: 12px; }
  .form-group { flex-direction: column;}
  .newform-contact-form {
    padding: 8px 0 8px 0;
    border-radius: 10px;
    max-width: 100%;
    min-width: 0;
  }
  .newform-contact-form form {
    gap: 10px;
  }
  .input-wrapper,
  .input-wrapper.full-width {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .input-wrapper input,
  .input-wrapper textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .btn-submit-modern {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-photoedit-form {
    min-width: 100%;
    }
  .contact-photoedit-form-card {
    max-width: 100%;
    }

    .contact-photoedit-info {
      align-items: center;
      text-align: center;
    }
    .contact-photoedit-methods {
      align-items: center;
    }
    .contact-photoedit-method {
      justify-content: center;
      text-align: center;
    }
    .contact-photoedit-method i {
      margin-right: 0;
      margin-bottom: 6px;
    }
    .contact-photoedit-social {
      justify-content: center;
    }

}

@media (max-width: 500px) {
.hero-title {
    font-size: 1.5rem;
    text-align: center;
  }

.hero-subtitle {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 12px;
  text-align: center;
}

.hero-actions {
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  flex: unset;
  width: 50%;
  margin: 0 auto;
}

  .hero-stats {
    margin: 0 auto;
  }
.services-subtitle {
  font-size: 16px;
}

.services-title {
  font-size: 1.8rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
}
.card-header h3 {
  font-size: 18px;}

.card-features li {
  font-size: 16px;
}

.pricing-photoedit-badge {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.pricing-photoedit-header p {
  font-size: 16px;
}

.pricing-photoedit-features {
  width: unset;
}

.btn-photoedit-pricing {
  padding: 7px 20px;
  font-size: 16px;
}

.portfolio-photoedit-badge {
  padding: 4px 10px;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: unset;
}
.portfolio-photoedit-header p {
  font-size: 14px;
}
  .photoedit-beforeafter-slider {
    max-height: unset;
  }
  
    .about-hero-text h1 {  font-size: 1.3rem; text-align: center;}
  
  .about-hero-text p { font-size: 16px;}
  
  .stat-label { font-size: 14px;}
  .photoedit-card-content p {
  font-size: 14px;
}

.pricing-photoedit-features li{
    font-size: 14px;
}

.pricing-featured-badge {

  right: 12px;
  padding: 2px 4px;
 
}

}


@media (max-width: 360px) {
    
    .card-features li {
    font-size: 14px;
  }
  
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .g-recaptcha > div {
    margin: 0 auto;
  }
  .newform-contact-form form {
    gap: 10px;
  }
  .input-wrapper,
  .input-wrapper.full-width {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .input-wrapper input,
  .input-wrapper textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .btn-submit-modern {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-photoedit-form {
    min-width: 100%;
    }
  .contact-photoedit-form-card {
    max-width: 100%;
    }

    .contact-photoedit-info {
      align-items: center;
      text-align: center;
    }
    .contact-photoedit-methods {
      align-items: center;
    }
    .contact-photoedit-method {
      justify-content: center;
      text-align: center;
    }
    .contact-photoedit-method i {
      margin-right: 0;
      margin-bottom: 6px;
    }
    .contact-photoedit-social {
      justify-content: center;
    }
}




  

