/* =============================================
   HOME PAGE CSS - OPTIMIZED
   ============================================= */

   :root {
    /* Colors */
    --primary-color: #0b3c6d;
    --primary-light: #1e5a9a;
    --primary-dark: #072a4e;
    --secondary-color: #ff7e00;
     
    /* --secondary-light: #ff9933; */
    --secondary-light: #ff9933;
    --text-color: #333333;
    --text-light: #666666;
    --light-color: #f8f9fa;
    --off-white: #f5f7fa;
    --border-color: #e9ecef;
    --light-gray: #cccccc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0b3c6d, #1e5a9a);
    --gradient-secondary: linear-gradient(135deg, #ff7e00, #ff9933);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --border-radius: 8px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
  }
  
  /* =============================================
     ANIMATIONS
     ============================================= */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) translateX(-50%);
    }
    40% {
      transform: translateY(-15px) translateX(-50%);
    }
    60% {
      transform: translateY(-7px) translateX(-50%);
    }
  }
  
  @keyframes subtle-zoom {
    from {
      transform: scale(1.05);
    }
    to {
      transform: scale(1.15);
    }
  }
  
  @keyframes fade-in-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scrollX-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  
  @keyframes spin-continuous {
    0% { transform: translateX(-50%) scale(1.12) rotate(0deg); }
    100% { transform: translateX(-50%) scale(1.12) rotate(360deg); }
  }
  
  /* =============================================
     HERO SECTION
     ============================================= */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    color: white;
    overflow: hidden;
    margin-top: -80px;
    z-index: 1;
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: brightness(1) contrast(0.5);
    transform: scale(1);
    animation: subtle-zoom 30s infinite alternate ease-in-out;
    will-change: transform;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 60, 109, 0.99), rgba(5, 42, 78, 0.49));
    z-index: 2;
  }
  
  /* Logo background element */
  .hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
   
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s forwards 0.3s;
    background: linear-gradient(to right, #ffffff, #d0d8e6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s forwards 0.6s;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s forwards 0.9s;
  }
  
  .hero-buttons a {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px; /* Better touch target for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-buttons .btn {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid transparent;
  }
  
  .hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.3);
  }
  
  .hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 5;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .scroll-down:hover {
    color: var(--secondary-color);
    transform: translateX(-50%) scale(1.2);
  }
  
  /* =============================================
     ABOUT SECTION
     ============================================= */
  .about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 600px;
  }
  
  .about-image {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;

    transform: translateX(-50px);
    opacity: 0;
    transform: translateX(0);
    opacity: 1;
    background-position: center;
  }
  
  .about-image-hover {
    position: relative;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: translateX(-50px);
    opacity: 0;
    transform: translateX(0);
    opacity: 1;
    background-position: center;
  }

  .about-image-hover img {
    transition: transform 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
    max-width: 100%;
    max-height: 580px;
    width: auto;
    height: auto;
  }

  .about-image-hover:hover img {
    transform: scale(1.15);
  }
  
 
  
  .experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    animation: float 6s ease-in-out infinite;
  }
  
  .experience-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
  }
  
  .experience-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: white;
  }
  
  .about-text {
    transform: translateX(50px);
    opacity: 0;
    transition: all 1s ease;
    padding: 1rem 0;
  }
  
  .about-text.animate {
    transform: translateX(0);
    opacity: 1;
  }
  
  .about-features {
    margin-top: 1.5rem;
  }
  
  .feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(11, 60, 109, 0.2);
    transition: var(--transition);
  }
  
  .feature:hover .feature-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
  }
  
  .feature:hover .feature-icon i {
    transform: rotateY(-180deg);
  }
  
  .feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .feature-text p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* =============================================
     SERVICES PREVIEW SECTION
     ============================================= */
  .services-preview {
    background-color: var(--off-white);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
  }
  
  .service-card {
    background-color: white;
    padding: 2.5rem 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .service-card.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.3s; }
  .delay-3 { transition-delay: 0.5s; }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-slow);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
  }
  
  .service-card:hover::before {
    transform: scale(3);
    opacity: 0.08;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
  }
  
  .service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon i {
    color: white;
    transform: rotateY(-180deg);
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .service-card:hover h3 {
    color: var(--primary-dark);
  }
  
  .service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  .services-cta {
    margin-top: 3rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
  }
  
  .services-cta.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* =============================================
     STATS SECTION
     ============================================= */
  .stats {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
  }
  
  .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8YnVpbGRpbmcsY29uc3RydWN0aW9ufHx8fHx8MTcxODI3NDQ3Ng&ixlib=rb-4.0.3&q=80&w=1080') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
  }
  
  .stats-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
 
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(50px);
    opacity: 0;
  }
  
  .stat-item.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
  }
  
  .stat-item:hover .stat-icon {
    transform: scale(1.2);
    color: var(--secondary-light);
  }
  
  .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
  }
  
  .stat-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  
  /* =============================================
     PROJECTS SECTION
     ============================================= */
  .projects-section {
    background-color: var(--light-color);
  }
  
  .projects-header {
    text-align: center;
    margin-bottom: 3rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
  }
  
  .projects-header.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .projects-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .projects-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
  }
  
  .projects-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    transform: translateY(0);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
  }
  
  .project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
  }
  
  .status-completed {
    background-color: #10b981;
    color: #fff;
  }
  
  .status-running {
    background-color: #fbbf24;
    color: #111827;
  }
  
  .status-ongoing {
    background-color: #fbbf24;
    color: #111827;
  }
  
  .status-upcoming {
    background-color: #3b82f6;
    color: #fff;
  }
  
  .status-planning {
    background-color: #17a2b8;
  }
  
  .project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.1);
  }
  
  .project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .project-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .project-title a {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .project-title a:hover {
    color: var(--secondary-color);
  }
  
  .project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
  
  .project-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .project-detail-item i {
    color: var(--secondary-color);
  }
  
  .project-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 0;
    margin-top: auto;
  }
  
  .project-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .project-link:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
  }
  
  .view-all-projects {
    text-align: center;
    margin-top: 3rem;
  }
  
  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .btn-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    gap: 0.8rem;
  }
  
  /* =============================================
     TESTIMONIALS SECTION
     ============================================= */
  .testimonials {
    background-color: var(--off-white);
  }
  
  .testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
  }
  
  .testimonials-slider.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .testimonial-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
  }
  
  .testimonial-content {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content::before {
    content: '\201C';
    font-family: 'Georgia', serif;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 5rem;
    color: var(--light-gray);
    opacity: 0.3;
    line-height: 1;
  }
  
  .testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
  }
  
  .author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.2rem;
    border: 3px solid var(--primary-light);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
  }
  
  .author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  /* =============================================
     CLIENTS SECTION
     ============================================= */
  .clients {
    position: relative;
    overflow: hidden;
  }
  
  .clients-grid {
    position: relative;
    overflow: hidden;
  }
  
  .client-row {
    display: flex;
    gap: 2rem;
    animation: scrollX 40s linear infinite;
    overflow: hidden;
    /* Duplicate logos for seamless loop */
  }
  
  .client-row-1 {
    animation: scrollX 120s linear infinite;
  }
  
  .client-row-2 {
    animation: scrollX-reverse 140s linear infinite;
    margin: 2rem 0;
    transform: translateX(-50%);
  }
  
  .client-row-3 {
    animation: scrollX 160s linear infinite;
  }
  
  .client-logo {
    width: 140px;
    height: 90px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .client-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.25s, filter 0.25s;
  }
  
  .client-logo:hover,
  .client-logo:focus {
    z-index: 2;
    position: relative;
  }
  
  .client-logo:hover img {
    filter: none;
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(11,60,109,0.13);
  }
  
  .client-row {
    width: max-content;
  }
  
  /* =============================================
     WHY CHOOSE US SECTION
     ============================================= */
  .why-choose {
    background-color: var(--off-white);
  }
  
  .why-choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
  }
  
  .reason-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    transform: translateY(50px);
    opacity: 0;
    height: 100%;
  }
  
  .reason-card.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
  }
  
  .reason-icon {
    width: 70px;
    height: 70px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .reason-card:hover .reason-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
  }
  
  .reason-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: var(--transition);
  }
  
  .reason-card:hover .reason-icon i {
    color: white;
    transform: rotateY(-180deg);
  }
  
  .reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .reason-card:hover h3 {
    color: var(--primary-dark);
  }
  
  .reason-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  /* =============================================
     PROCESS SECTION
     ============================================= */
  .process {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f8fafc 60%, #e0e7ef 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    border-radius: 24px;
    padding-bottom: 30px;
  }
  .process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 60px auto 0 auto;
    max-width: 900px;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(11, 60, 109, 0.2);
  }
  .process-step {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
    min-height: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .process-step.animate {
    opacity: 1;
    transform: translateY(0);
  }
  .process-step:nth-child(odd) {
    flex-direction: row;
  }
  .process-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  .process-step .step-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(11,60,109,0.09);
    padding: 28px 28px 22px 28px;
    min-width: 260px;
    max-width: 340px;
    position: relative;
    z-index: 4;
    transition: box-shadow 0.2s;
  }
  .process-step:nth-child(odd) .step-content {
    margin-right: 60px;
    margin-left: 0;
    text-align: right;
    align-items: flex-end;
  }
  .process-step:nth-child(even) .step-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
    align-items: flex-start;
  }
  .step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    background: var(--gradient-secondary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255,126,0,0.13);
    border: 5px solid #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    top: 50%;
    margin-top: -27px;
  }
  .process-step:hover .step-number {
    animation: spin-continuous 1s linear infinite;
    box-shadow: 0 8px 32px rgba(255,126,0,0.18);
  }
  .step-content h3 {
    font-size: 1.13rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .step-content p {
    color: #666;
    font-size: 0.98rem;
    margin: 0;
  }

  
  /* =============================================
     CTA SECTION
     ============================================= */
  .cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
  }
  
  .cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/photos/3.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}
  
  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
    padding: 0 20px;
  }
  
  .cta-content.animate {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-content .btn {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
  }
  
  .cta-content .btn:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
  }
  
  /* =============================================
     TECHNOLOGY PARTNERS SECTION
     ============================================= */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .partner-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .partner-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
  }
  
  .partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
  }
  
  .partner-card:hover .partner-logo img {
    transform: scale(1.1);
  }
  
  .partner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
  }
  
  .partner-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  /* =============================================
     BUTTON STYLES
     ============================================= */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-decoration: none;
  }
  
  .btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-5px);
  }
  
  .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
  }
  
  .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  /* =============================================
     SECTION HEADER STYLES
     ============================================= */
  .section {
    padding: 100px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-left.section-title::after {
    left: 0;
    transform: none;
  }
  
  /* Responsive underline positioning */
  @media screen and (max-width: 768px) {
    .text-left.section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  .text-center {
    text-align: center;
  }
  
  /* =============================================
     BACK TO TOP BUTTON
     ============================================= */
  .back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transition: var(--transition);
    border: none;
  }
  
  .back-to-top.show {
    bottom: 30px;
    opacity: 1;
  }
  
  .back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
  }
  
  /* =============================================
     PRELOADER
     ============================================= */
  .bec-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }
  
  .bec-loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* =============================================
     RESPONSIVE DESIGN - MOBILE FIRST APPROACH
     ============================================= */
  
  /* Large Desktop */
  @media screen and (max-width: 1200px) {
    .hero-title {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .section {
      padding: 80px 0 60px;
    }
    
    .section-title {
      font-size: clamp(2rem, 3vw, 2.5rem);
    }
    
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Tablet Landscape */
  @media screen and (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      min-height: auto;
    }
    
    .about-image-hover {
      height: 400px;
      order: 2;
    }
    
    .about-image-hover img {
      max-height: 380px;
    }
    
    .about-text {
      order: 1;
      text-align: center;
      padding: 0;
    }
    
    .about-text .section-header {
      text-align: center;
    }
    
    .about-text .section-title {
      text-align: center;
    }
    
    .about-text .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-text p {
      text-align: center;
      line-height: 1.6;
    }
    
    .about-features {
      margin-top: 1.5rem;
    }
    
    .about-features .feature {
      text-align: center;
      margin-bottom: 1rem;
    }
    
    .about-text .btn {
      margin-top: 1.5rem;
      display: inline-block;
    }
    
    .experience-box {
      right: 20px;
      bottom: 20px;
    }
    
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .why-choose-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    /* Process Timeline - Tablet */
    .process-steps {
      gap: 40px;
      max-width: 100%;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 60px;
      text-align: left;
      align-items: flex-start;
      min-width: 200px;
      max-width: 300px;
    }
  }
  
  /* Tablet Portrait */
  @media screen and (max-width: 768px) {
    .hero {
      height: 80vh;
      background-attachment: scroll;
      margin-top: -70px;
    }
    
    .hero::before {
      width: 200px;
      height: 200px;
      opacity: 0.08;
    }
    
    .hero-title {
      font-size: clamp(2rem, 5vw, 2.5rem);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: clamp(1rem, 3vw, 1.2rem);
      margin-bottom: 2rem;
      line-height: 1.5;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .hero-buttons a {
      width: 100%;
      max-width: 280px;
      padding: 12px 24px;
      font-size: 14px;
    }
    
    .section {
      padding: 60px 0 40px;
    }
    
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2rem);
    }
    
    .section-title::after {
      width: 70px;
      height: 3px;
      bottom: -10px;
    }
    
    .section-subtitle {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .container {
      padding: 0 1.5rem;
    }
    
    .projects-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .partners-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .why-choose-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .testimonial-author {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-left: 0;
    }
    
    .author-image {
      margin-right: 0;
      margin-bottom: 1rem;
    }
    
    /* Process Timeline - Mobile */
    .process-steps {
      gap: 30px;
      max-width: 100%;
      padding-left: 20px;
    }
    
    .process-steps::before {
      left: 20px;
      width: 3px;
    }
    
    .process-step {
      margin-bottom: 2rem;
      padding-left: 0;
      flex-direction: row !important;
      position: relative;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 50px;
      text-align: left;
      align-items: flex-start;
      min-width: 0;
      max-width: 100%;
      padding: 20px;
      flex: 1;
    }
    
    .step-number {
      position: absolute !important;
      left: 20px !important;
      transform: translateX(-50%) !important;
      z-index: 3 !important;
      width: 44px !important;
      height: 44px !important;
      font-size: 1.15rem !important;
      border-width: 4px !important;
      margin-top: -22px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      background: var(--gradient-secondary, orange);
      color: #fff;
      opacity: 1 !important;
      top: 50% !important;
    }
    
    .cta-content h2 {
      font-size: clamp(1.8rem, 4vw, 2rem);
    }
    
    .cta-content p {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .client-logo {
      width: 120px;
      height: 75px;
    }
    
    .stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }
  
  /* Mobile Large */
  @media screen and (max-width: 576px) {
    .process {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .process-steps {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .process-step {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .hero {
      height: 70vh;
      margin-top: -60px;
    }
    
    .hero::before {
      width: 150px;
      height: 150px;
      opacity: 0.06;
    }
    
    .hero-title {
      font-size: clamp(1.8rem, 6vw, 2rem);
      margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
      font-size: clamp(0.9rem, 3.5vw, 1rem);
      margin-bottom: 1.5rem;
    }
    
    .hero-buttons a {
      padding: 10px 20px;
      font-size: 13px;
      max-width: 250px;
    }
    
    .section {
      padding: 40px 0 30px;
    }
    
    .section-title {
      font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    
    .section-title::after {
      width: 60px;
      height: 3px;
      bottom: -8px;
    }
    
    .section-subtitle {
      font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    
    .container {
      padding: 0 1rem;
    }
    
    .feature {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .feature-icon {
      margin-right: 0;
      margin-bottom: 1rem;
      width: 60px;
      height: 60px;
    }
    
    .feature-icon i {
      font-size: 24px;
    }
    
    .about-image {
      height: 250px;
    }
    
    .about-text {
      text-align: center;
    }
    
    .about-text .section-header {
      text-align: center;
    }
    
    .about-text .section-title {
      text-align: center;
    }
    
    .about-text .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-text p {
      text-align: center;
      line-height: 1.6;
    }
    
    .experience-box {
      right: 10px;
      bottom: 10px;
      padding: 12px;
    }
    
    .experience-box h3 {
      font-size: 1.3rem;
    }
    
    .experience-box p {
      font-size: 0.8rem;
    }
    
    .project-image {
      height: 180px;
    }
    
    .testimonial-item {
      padding: 1.2rem;
    }
    
    .testimonial-content {
      padding: 0.8rem;
      font-size: 0.85rem;
    }
    
    .client-logo {
      width: 100px;
      height: 60px;
    }
    
    /* Process Timeline - Small Mobile */
    .process-steps {
      gap: 25px;
    }
    
    .process-steps::before {
      left: 15px;
      width: 2px;
    }
    
    .process-step {
      margin-bottom: 1.5rem;
      padding-left: 0;
      flex-direction: row !important;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 40px;
      text-align: left;
      align-items: flex-start;
      min-width: 0;
      max-width: 100%;
      padding: 15px;
    }
    
    .step-number {
      width: 35px;
      height: 35px;
      font-size: 1rem;
      border-width: 2px;
      margin-bottom: 0;
      margin-top: -17.5px;
    }
    
    .step-content h3 {
      font-size: 1rem;
    }
    
    .step-content p {
      font-size: 0.8rem;
    }
    
    .back-to-top {
      right: 15px;
      bottom: 15px;
      width: 40px;
      height: 40px;
    }
    
    .back-to-top i {
      font-size: 16px;
    }
    
    .stat-content h3 {
      font-size: 1.8rem;
    }
    
    .stat-content p {
      font-size: 0.8rem;
    }
    
    .stats-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .service-card {
      padding: 1.5rem;
    }
    
    .service-card h3 {
      font-size: 1.2rem;
    }
    
    .service-card p {
      font-size: 0.85rem;
    }
  }
  
  /* Mobile Small */
  @media screen and (max-width: 480px) {
    .process {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .process-steps {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      gap: 20px;
      max-width: 100%;
      padding-left: 15px;
    }
    
    .process-step {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      margin-bottom: 1.5rem;
      padding-left: 0;
      flex-direction: row !important;
      position: relative;
    }
    
    .process-steps::before {
      left: 15px;
      width: 3px;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 40px;
      text-align: left;
      align-items: flex-start;
      min-width: 0;
      max-width: 100%;
      padding: 18px;
      flex: 1;
    }
    
    .step-number {
      position: absolute !important;
      left: 15px !important;
      transform: translateX(-50%) !important;
      z-index: 3 !important;
      width: 40px !important;
      height: 40px !important;
      font-size: 1rem !important;
      border-width: 3px !important;
      margin-top: -20px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      background: var(--gradient-secondary, orange);
      color: #fff;
      opacity: 1 !important;
      top: 50% !important;
    }
    
    .hero {
      height: 65vh;
    }
    
    .hero::before {
      width: 120px;
      height: 120px;
    }
    
    .hero-title {
      font-size: clamp(1.5rem, 7vw, 1.8rem);
    }
    
    .hero-subtitle {
      font-size: clamp(0.8rem, 4vw, 0.9rem);
    }
    
    .hero-buttons a {
      padding: 8px 16px;
      font-size: 12px;
      max-width: 220px;
    }
    
    .section {
      padding: 30px 0 25px;
    }
    
    .section-title {
      font-size: clamp(1.3rem, 6vw, 1.5rem);
    }
    
    .section-title::after {
      width: 50px;
      height: 2px;
      bottom: -6px;
    }
    
    .section-subtitle {
      font-size: clamp(0.75rem, 3.5vw, 0.8rem);
    }
    
    .container {
      padding: 0 0.8rem;
    }
    
    .about-image {
      height: 200px;
    }
    
    .about-text {
      text-align: center;
    }
    
    .about-text .section-header {
      text-align: center;
    }
    
    .about-text .section-title {
      text-align: center;
    }
    
    .about-text .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-text p {
      text-align: center;
      line-height: 1.5;
      font-size: 0.9rem;
    }
    
    .experience-box {
      right: 8px;
      bottom: 8px;
      padding: 10px;
    }
    
    .experience-box h3 {
      font-size: 1.1rem;
    }
    
    .experience-box p {
      font-size: 0.7rem;
    }
    
    .project-image {
      height: 150px;
    }
    
    .client-logo {
      width: 90px;
      height: 54px;
    }
    
    .service-card {
      padding: 1.2rem;
    }
    
    .service-card h3 {
      font-size: 1.1rem;
    }
    
    .service-card p {
      font-size: 0.8rem;
    }
    
    .feature-text h4 {
      font-size: 1rem;
    }
    
    .feature-text p {
      font-size: 0.75rem;
    }
    
    /* Process Timeline - Extra Small Mobile */
    .process-steps {
      gap: 20px;
    }
    
    .process-steps::before {
      left: 18px;
      width: 3px;
      background: var(--gradient-secondary, orange);
      opacity: 0.8;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 35px;
      padding: 12px;
    }
    
    .step-number {
      width: 36px;
      height: 36px;
      font-size: 1rem;
      border-width: 3px;
      margin-top: -18px;
      background: var(--gradient-secondary, orange);
      color: #fff;
      opacity: 1 !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    
    .step-content h3 {
      font-size: 0.95rem;
    }
    
    .step-content p {
      font-size: 0.75rem;
    }
  }
  
  /* Extra Small Mobile */
  @media screen and (max-width: 360px) {
    .process {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .process-steps {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .process-step {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .hero {
      height: 60vh;
    }
    
    .hero-title {
      font-size: clamp(1.3rem, 8vw, 1.5rem);
    }
    
    .hero-subtitle {
      font-size: clamp(0.7rem, 4.5vw, 0.8rem);
    }
    
    .hero-buttons a {
      padding: 6px 12px;
      font-size: 11px;
      max-width: 200px;
    }
    
    .section {
      padding: 25px 0 20px;
    }
    
    .section-title {
      font-size: clamp(1.2rem, 7vw, 1.3rem);
    }
    
    .section-title::after {
      width: 40px;
      height: 2px;
      bottom: -5px;
    }
    
    .section-subtitle {
      font-size: clamp(0.7rem, 4vw, 0.75rem);
    }
    
    .container {
      padding: 0 0.5rem;
    }
    
    .about-image {
      height: 180px;
    }
    
    .client-logo {
      width: 80px;
      height: 48px;
    }
    
    .service-card {
      padding: 1rem;
      min-height: 250px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
    }
    
    .feature-icon i {
      font-size: 20px;
    }
    
    .process-steps {
      gap: 15px;
    }
    
    .process-steps::before {
      left: 15px;
      width: 2px;
      background: var(--gradient-secondary, orange);
      opacity: 0.8;
    }
    
    .process-step .step-content,
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
      margin: 0 0 0 30px;
      padding: 10px;
    }
    
    .step-number {
      width: 32px;
      height: 32px;
      font-size: 0.9rem;
      border-width: 2px;
      margin-top: -16px;
      background: var(--gradient-secondary, orange);
      color: #fff;
      opacity: 1 !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    
    .step-content h3 {
      font-size: 0.9rem;
    }
    
    .step-content p {
      font-size: 0.7rem;
    }
    
    .scroll-down {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
    
    .back-to-top {
      width: 35px;
      height: 35px;
    }
    
    .back-to-top i {
      font-size: 14px;
    }
  }
  
  /* Touch Device Optimizations */
  @media (hover: none) and (pointer: coarse) {
    .hero-buttons a:hover,
    .service-card:hover,
    .project-card:hover,
    .reason-card:hover,
    .stat-item:hover,
    .partner-card:hover {
      transform: none;
    }
    
    .service-card:hover .service-icon,
    .reason-card:hover .reason-icon {
      transform: none;
    }
    
    .service-card:hover .service-icon i,
    .reason-card:hover .reason-icon i {
      transform: none;
    }
    
    .scroll-down:hover {
      transform: translateX(-50%) scale(1.1);
    }
    
    .back-to-top:hover {
      transform: translateY(-3px);
    }
    
    /* Process Timeline Touch Optimizations */
    .process-step:hover .step-number {
      transform: translateX(-50%) scale(1.05);
    }
  }

@media (max-width: 768px) {
  .about-image-hover {
    height: 180px;
  }
  .about-image-hover img {
    max-width: 90%;
    max-height: 140px;
  }
  .about-image-hover:hover img {
    transform: scale(1.08);
  }
}

@media (max-width: 480px) {
  .about-image-hover {
    display: none !important;
  }
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
  background: var(--light-color);
  padding: 5rem 0;
}

.gallery-container {
  display: flex;
  height: 400px;
  gap: 0.5rem;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.gallery-bar {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--border-radius);
}

.gallery-bar:hover {
  flex: 3;
  transform: scale(1.02);
  z-index: 10;
}

.gallery-bar:not(:hover) {
  flex: 0.8;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-bar:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
}

.gallery-bar:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Gallery Responsive */
@media screen and (max-width: 768px) {
  .gallery-container {
    height: 300px;
    gap: 0.3rem;
  }
  
  .gallery-bar:hover {
    flex: 2.5;
  }
  
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1rem;
  }
  
  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .gallery-container {
    height: 250px;
    gap: 0.2rem;
  }
  
  .gallery-bar:hover {
    flex: 2;
  }
  
  .gallery-overlay {
    padding: 1rem 0.8rem 0.8rem;
  }
  
  .gallery-overlay h3 {
    font-size: 0.9rem;
  }
  
  .gallery-overlay p {
    font-size: 0.75rem;
  }
}

/* =============================================
   PROCESS SECTION - TIMELINE
   ============================================= */
.process {
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 60, 109, 0.02) 0%, rgba(30, 90, 154, 0.02) 100%);
  z-index: 1;
}

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

.process .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process .section-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process .section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Timeline Fixes */
@media screen and (max-width: 768px) {
  .process-steps {
    gap: 40px;
    max-width: 100%;
    padding-left: 20px;
  }
  
  .process-steps::before {
    left: 20px;
    width: 3px;
  }
  
  .process-step {
    margin-bottom: 2rem;
    padding-left: 0;
    flex-direction: row !important;
    position: relative;
  }
  
  .process-step .step-content,
  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    margin: 0 0 0 50px;
    text-align: left;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    padding: 20px;
    flex: 1;
  }
  
  .step-number {
    position: absolute !important;
    left: 20px !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.15rem !important;
    border-width: 4px !important;
    margin-top: -22px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary, orange);
    color: #fff;
    opacity: 1 !important;
    top: 50% !important;
  }
}