
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
          }
          
          :root {
            --primary: #667eea;
            --secondary: #764ba2;
            --whatsapp: #25D366;
            --dark: #0d2b3a;
            --light-bg: #f4f7fe;
            --white: #ffffff;
            --accent: #ff6b6b;
        }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Poppins', sans-serif; 
            background: var(--light-bg); 
            color: #333; 
            line-height: 1.6; 
            overflow-x: hidden;
        }

        /* Navbar - Enhanced Responsive */
        .navbar {
            background: var(--white);
            padding: 15px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            min-height: 70px;
        }
        .navbar-inner {
            width: 100%;
            max-width: 1200px;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { 
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .logo img { 
            height: 50px;
            width: auto;
            max-width: 180px;
        }
        .menu { 
            display: flex; 
            list-style: none; 
            gap: 35px;
            align-items: center;
            margin: 0;
            padding: 0;
        }
        /* ===== NAVBAR YELLOW LINE HOVER ANIMATION ===== */

.menu a {
  position: relative;
  padding: 5px 0;
  color: #000 !important;        /* force black */
  text-decoration: none !important; /* remove underline */
  font-weight: 500;
}
.menu a:visited {
  color: #000 !important;
}
.menu a:hover {
  color: #000;
}
/* Yellow animated line */
.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #facc15,   /* yellow */
    #fde047,   /* light yellow */
    #facc15
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px;
}

/* Hover effect */
.menu a:hover::before {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .menu a::before {
    display: none;
  }
}

       
.nav-call-btn {
  background: linear-gradient(
    135deg,
    #f6c453,   /* golden */
    #f2b233    /* mustard */
  );
  color: #1a1a1a;                 /* dark text */
  border: none;
  padding: 12px 30px;
  border-radius: 999px;           /* perfect pill */
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(242, 178, 51, 0.35);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.nav-call-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: all 0.6s ease;
}

.nav-call-btn:hover::after {
  left: 120%;
}
        /* ===== NAVBAR TABLET FIX ===== */
     /* Hide menu ONLY on tablets & mobiles */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
  }

  .menu.active {
    display: flex;
  }
}


        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 8px;
            z-index: 1001;
            flex-shrink: 0;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            display: block;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 20px;
        }

        /* Hero Section - Fully Responsive */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: clamp(30px, 5vw, 50px) clamp(15px, 3vw, 20px);
            border-radius: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        .hero h1 { 
            font-size: clamp(1.5em, 5vw, 2.5em);
            margin-bottom: 15px; 
            line-height: 1.2;
            word-wrap: break-word;
        }
        .hero .subtitle { 
            font-size: clamp(1em, 3vw, 1.2em);
            opacity: 0.95; 
            margin-bottom: 10px;
        }
        .hero .hindi { 
            font-size: clamp(0.85em, 2.5vw, 0.95em);
            opacity: 0.85;
        }
        .hero-badges { 
            display: flex; 
            justify-content: center; 
            gap: clamp(8px, 2vw, 15px);
            margin-top: 20px; 
            flex-wrap: wrap;
        }
        .badge { 
            background: rgba(255,255,255,0.2); 
            padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 15px);
            border-radius: 50px; 
            font-size: clamp(0.75em, 2vw, 0.9em);
            font-weight: 600;
            white-space: nowrap;
        }

        /* Quick Apply - Enhanced */
        .quick-apply {
            background: var(--white);
            padding: clamp(20px, 4vw, 30px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border: 3px solid var(--whatsapp);
            text-align: center;
        }
        .quick-apply h2 { 
            color: var(--dark); 
            margin-bottom: 15px;
            font-size: clamp(1.2em, 4vw, 1.5em);
        }
        .quick-apply p { 
            color: #666; 
            margin-bottom: 20px; 
            font-size: clamp(0.85em, 2.5vw, 0.95em);
        }
        .whatsapp-btn {
            background: var(--whatsapp);
            color: white;
            text-decoration: none;
            padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 30px);
            border-radius: 50px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(0.9em, 2.5vw, 1.05em);
            transition: 0.3s;
            max-width: 100%;
        }
        .whatsapp-btn:hover { 
            transform: scale(1.05); 
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }

        /* Info Cards - Grid Responsive */
        .info-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: clamp(12px, 2vw, 20px);
            margin-bottom: 30px;
        }
        .info-card {
            background: white;
            padding: clamp(15px, 3vw, 25px);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary);
            transition: 0.3s;
        }
        .info-card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .info-card h3 { 
            color: var(--primary); 
            margin-bottom: 12px; 
            font-size: clamp(1em, 3vw, 1.2em);
        }
        .info-card p { 
            color: #666; 
            font-size: clamp(0.85em, 2.5vw, 0.95em);
        }
        .info-card .hindi-text { 
            display: block; 
            color: #888; 
            font-size: clamp(0.75em, 2vw, 0.85em);
            margin-top: 8px;
        }

       /* ===== WHY CHOOSE US – IMPROVED GRID ===== */

.features {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.features h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2em;
  color: var(--dark);
}

/* 3 + 3 layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual card */
.feature-item {
  text-align: center;
  padding: 25px 20px;
  border-radius: 16px;
  background: #f8fafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(102,126,234,0.15);
}

/* Icon styling */
.feature-icon {
  font-size: 2.4em;
  margin-bottom: 15px;
}

/* Title */
.feature-item h4 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

/* Description */
.feature-item p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet: 2 per row */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 30px 15px;
  }
}


        /* Application Form - Mobile First */
        .form-card {
            background: white;
            padding: clamp(15px, 4vw, 30px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .form-card h2 {
            color: var(--dark);
            margin-bottom: 10px;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            font-size: clamp(1.1em, 3.5vw, 1.5em);
        }
        .form-card > p {
            color: #666;
            margin-bottom: 25px;
            font-size: clamp(0.85em, 2.5vw, 0.95em);
        }

        .form-group { margin-bottom: clamp(15px, 3vw, 20px); }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: clamp(0.9em, 2.5vw, 1em);
        }
        label span { 
            color: #666; 
            font-weight: 400; 
            font-size: clamp(0.75em, 2vw, 0.85em);
            display: block; 
            margin-top: 4px;
        }

        input, select, textarea {
            width: 100%;
            padding: clamp(12px, 2.5vw, 14px);
            border: 2px solid #edf2f7;
            border-radius: 12px;
            font-family: inherit;
            font-size: clamp(0.9em, 2.5vw, 1em);
            transition: 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        textarea { 
            resize: vertical; 
            min-height: 80px;
        }

        .job-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
            gap: 12px; 
            margin-top: 10px;
        }
        .job-option input { display: none; }
        .job-option label {
            background: #f8fafc;
            border: 2px solid #edf2f7;
            padding: clamp(10px, 2.5vw, 15px);
            text-align: center;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.3s;
            display: block;
            margin: 0;
            font-weight: 500;
            font-size: clamp(0.85em, 2vw, 0.95em);
        }
        .job-option input:checked + label {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .submit-btn {
            width: 100%;
            background: var(--dark);
            color: white;
            border: none;
            padding: clamp(14px, 3vw, 18px);
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(0.95em, 2.5vw, 1.1em);
            cursor: pointer;
            margin-top: 20px;
            transition: 0.3s;
        }
        .submit-btn:hover { 
            background: var(--primary); 
            transform: scale(1.02);
        }

        /* Image Sections - Responsive Grid */
        /*.image-section {*/
        /*    background: white;*/
        /*    padding: clamp(20px, 4vw, 30px);*/
        /*    border-radius: 20px;*/
        /*    box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
        /*    margin-bottom: 30px;*/
        /*}*/
        /*.image-section h2 { */
        /*    color: var(--dark); */
        /*    margin-bottom: 20px;*/
        /*    font-size: clamp(1.2em, 4vw, 1.5em);*/
        /*}*/
        /*.image-grid {*/
        /*    display: grid;*/
        /*    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));*/
        /*    gap: clamp(12px, 2vw, 20px);*/
        /*    margin-bottom: 20px;*/
        /*}*/
        /*.image-item {*/
        /*    position: relative;*/
        /*    border-radius: 15px;*/
        /*    overflow: hidden;*/
        /*    box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
        /*    aspect-ratio: 4/3;*/
        /*}*/
        /*.image-item img {*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    object-fit: cover;*/
        /*    transition: 0.3s;*/
        /*}*/
        /*.image-item:hover img { transform: scale(1.05); }*/
        /*.image-item-label {*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);*/
        /*    color: white;*/
        /*    padding: clamp(15px, 3vw, 20px);*/
        /*    font-weight: 600;*/
        /*    font-size: clamp(0.9em, 2.5vw, 1em);*/
        /*}*/

        .full-width-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Benefits Section - Responsive Two Column */
          .benefits-with-image {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: clamp(20px, 4vw, 30px);
            align-items: center;
            background: white;
            padding: clamp(20px, 4vw, 30px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .benefits-with-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }
        .benefits-list {
            list-style: none;
        }
        .benefits-list li {
            padding: clamp(8px, 2vw, 12px) 0;
            color: #666;
            /* display: flex; */
            align-items: flex-start;
            gap: 12px;
            font-size: clamp(0.85em, 2.5vw, 0.95em);
        }
        .benefits-list li {
          display: block;
      }
      
      .benefits-list li:before {
          display: inline-block;
          margin-right: 12px;
      }
      
        .benefits-list li:before {
            content: "✓";
            color: var(--whatsapp);
            font-weight: 700;
            font-size: 1.3em;
            flex-shrink: 0;
            line-height: 1;
        }


        /* Step Process Cards */
        .step-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: clamp(12px, 2vw, 20px);
            margin-bottom: 30px;
        }
        .step-card {
            text-align: center;
            padding: clamp(15px, 3vw, 20px);
            background: #f8fafc;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }
        .step-card .step-icon {
            font-size: clamp(2em, 5vw, 2.5em);
            margin-bottom: 12px;
        }
        .step-card h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: 700;
            font-size: clamp(0.9em, 2.5vw, 1em);
        }
        .step-card p {
            color: #666;
            font-size: clamp(0.8em, 2vw, 0.9em);
            line-height: 1.5;
        }

        /* FAQ Section - Accordion Enhanced */
        .faq-wrapper {
            background: white;
            padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 30px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .faq-title {
            color: var(--dark);
            text-align: center;
            margin-bottom: clamp(20px, 4vw, 35px);
            font-size: clamp(1.3em, 4vw, 1.8em);
            font-weight: 700;
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 12px;
            border: 2px solid #edf2f7;
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
        }
        .faq-question {
            width: 100%;
            background: #f8fafc;
            border: none;
            padding: clamp(12px, 3vw, 18px) clamp(15px, 3vw, 20px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            font-size: clamp(0.85em, 2.5vw, 1em);
            font-family: inherit;
            transition: 0.3s;
            text-align: left;
        }
        .faq-question:hover {
            background: #f0f4ff;
        }
        .faq-question span {
            flex: 1;
            word-wrap: break-word;
        }
        .faq-question i {
            font-size: 0.9em;
            color: var(--primary);
            transition: 0.3s;
            min-width: 20px;
            text-align: right;
            flex-shrink: 0;
        }
        .faq-item.active .faq-question {
            background: var(--primary);
            color: white;
        }
        .faq-item.active .faq-question i {
            color: white;
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #ffffff;
        }
        .faq-item.active .faq-answer {
            max-height: 1000px;
        }
        .faq-answer p {
            color: #666;
            font-size: clamp(0.85em, 2.5vw, 0.95em);
            padding: clamp(15px, 3vw, 20px);
            margin: 0;
            line-height: 1.6;
        }

        /* Footer - Responsive Grid */
        footer {
            background: var(--dark);
            color: white;
            padding: clamp(30px, 5vw, 50px) clamp(15px, 3vw, 20px) 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
            gap: clamp(20px, 4vw, 30px);
            max-width: 1100px;
            margin: 0 auto 40px;
        }
        .footer-column h4 { 
            color: var(--primary); 
            margin-bottom: 20px; 
            font-weight: 700;
            font-size: clamp(0.95em, 2.5vw, 1.1em);
        }
        .footer-column ul { list-style: none; }
        .footer-column li { margin-bottom: 10px; }
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            font-size: clamp(0.8em, 2vw, 0.9em);
            transition: 0.3s;
        }
        .footer-column a:hover { color: white; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: clamp(20px, 4vw, 30px);
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            text-align: center;
        }
        .footer-bottom p {
            font-size: clamp(0.8em, 2vw, 0.9em);
        }
        .footer-social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        .footer-social-icons a {
            color: white;
            font-size: clamp(1em, 3vw, 1.2em);
            transition: 0.3s;
        }
        .footer-social-icons a:hover { color: var(--whatsapp); }

        /* Floating WhatsApp - Responsive Size */
        .whatsapp-float {
            position: fixed;
            bottom: clamp(15px, 3vw, 20px);
            right: clamp(15px, 3vw, 20px);
            background: var(--whatsapp);
            width: clamp(55px, 10vw, 65px);
            height: clamp(55px, 10vw, 65px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
        }
        .whatsapp-float img { 
            width: clamp(30px, 6vw, 35px);
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* TABLET BREAKPOINT */
        @media (max-width: 1024px) {
            .container { padding: 15px; }
        }

        /* MOBILE BREAKPOINT */
        @media (max-width: 768px) {
            .navbar { 
                padding: 10px 0;
                min-height: 60px;
            }
            .navbar-inner {
                padding: 0 15px;
            }
            .logo img { height: 40px; }
            
            .hamburger { display: flex !important; }
            
            .menu { 
                display: none !important;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 0;
                margin: 0;
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                list-style: none;
                z-index: 999;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .menu.active { display: flex !important; }

            .menu li { 
                border-bottom: 1px solid #eee;
                padding: 0;
                margin: 0;
                width: 100%;
            }

            .menu li:last-child { border-bottom: none; }

            .menu a { 
                padding: 15px 0;
                display: block;
                font-size: 1em;
            }

            /* Mobile menu call button */
            .menu .nav-call-btn {
                margin-top: 10px;
                width: 100%;
                padding: 14px 20px;
            }

            .hero { 
                padding: 30px 15px; 
                margin-bottom: 20px;
                border-radius: 15px;
            }
            
            .info-section { 
                grid-template-columns: 1fr;
            }
            
            .features-grid { 
                grid-template-columns: repeat(2, 1fr);
            }
            
            .job-grid { 
                grid-template-columns: 1fr;
            }
            
            .image-grid { 
                grid-template-columns: 1fr;
            }
            
            .benefits-with-image {
                grid-template-columns: 1fr;
            }

            .step-grid {
                grid-template-columns: 1fr;
            }
        }

        /* SMALL MOBILE */
        @media (max-width: 480px) {
            .container { padding: 10px; }
            .navbar-inner {
                padding: 0 10px;
            }
            
            .features-grid { 
                grid-template-columns: 1fr;
            }
            
            .hero-badges {
                flex-direction: column;
                align-items: stretch;
            }
            
            .badge {
                text-align: center;
            }
        }

        /* EXTRA SMALL */
        @media (max-width: 360px) {
            .navbar-inner { 
                padding: 0 10px;
            }
            .logo img { height: 35px; }
            
            .whatsapp-btn {
                padding: 10px 15px;
                font-size: 0.85em;
            }
        }

        /* Landscape Phone Fix */
        @media (max-height: 500px) and (orientation: landscape) {
            .menu {
                max-height: calc(100vh - 50px);
                padding: 10px 20px;
            }
            
            .menu li {
                padding: 8px 0;
            }
        }
        /* ===== STEP PROCESS GRID RESPONSIVE FIX ===== */

/* ===== JOB PROCESS SECTION ===== */

.job-process {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 22px;
}

.job-process h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
  color: var(--dark);
}

.job-process-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 35px;
  font-size: 0.95em;
}

/* Grid: 4 + 4 */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Step Card */
.step-card {
  background: #f8fafc;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(102,126,234,0.15);
}

/* Icon */
.step-icon {
  font-size: 2.4em;
  margin-bottom: 12px;
}

/* Title */
.step-card h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1em;
}

/* Text */
.step-card p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
}

/* Highlight final step */
.step-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-left: 4px solid var(--whatsapp);
}

.step-highlight h4,
.step-highlight p {
  color: #fff;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .step-grid {
    grid-template-columns: 1fr;
  }

  .job-process {
    padding: 30px 15px;
  }
}

body.menu-open {
  overflow: hidden;
}

.center-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-call {
  display: none;
}
@media (max-width: 900px) {
  .mobile-call {
    display: block;
    margin-top: 15px;
  }

  .mobile-call .nav-call-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1em;
  }
}


/* ===== FREE ROOM & FOOD RESPONSIVE FIX ===== */

.free-facility-section {
  padding: 20px;
}

.free-facility-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.free-title {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.free-card {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 15px;
}

.free-card h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.free-card p {
  font-size: 0.95em;
  line-height: 1.6;
}

.free-note {
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  text-align: center;
}

.free-note-strong {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .free-facility-section {
    padding: 15px;
  }

  .free-facility-box {
    padding: 20px;
  }

  .free-grid {
    grid-template-columns: 1fr;
  }

  .free-card {
    padding: 16px;
  }

  .free-title {
    font-size: 1.3em;
  }
}

/* Prevent WhatsApp overlap */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px;
  }
}
@media (max-width: 768px) {
  .nav-right .nav-call-btn {
    display: none !important;
  }
}

/* ===== GREY FOOTER THEME ===== */

.site-footer {
  background: #f3f4f6; /* light grey */
  color: #374151;
  padding: 50px 20px 25px;
  border-top: 1px solid #e5e7eb;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h4 {
  color: #111827;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #111827;
}

/* Legal links */
.footer-legal-links {
  max-width: 1200px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d1d5db;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}

.footer-legal-links a {
  color: #4b5563;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #111827;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #374151;
}

.footer-bottom strong {
  color: #111827;
}

/* Social icons */
.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  color: #374151;
  font-size: 18px;
  transition: color 0.2s ease;
}

.footer-social-icons a:hover {
  color: #2563eb; /* subtle blue hover */
}

/* Mobile */
@media (max-width: 768px) {
  .footer-bottom,
  .footer-legal-links {
    justify-content: center;
    text-align: center;
  }
}
/* =====================================================
   IMAGE SECTION – CLEAN & PROFESSIONAL (NO OVERLAY BUG)
   ===================================================== */

.image-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.image-section h2 {
  color: #0d2b3a;
  margin-bottom: 22px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* GRID */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.image-item {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2f2;
}

/* IMAGE – NO DARKENING, NO FILTER */
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.4s ease;
}

/* LABEL – TEXT READABILITY ONLY */
.image-item-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;

  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;

  padding: 6px 14px;
  border-radius: 8px;

  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* HOVER */
.image-item:hover img {
  transform: scale(1.03);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-item {
    height: 220px;
  }

  .image-item-label {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}






  