/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #22c55e;
    --secondary-color: #a855f7;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-color: #374151;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
    --accent-orange: #f97316;
    --accent-blue: #06b6d4;
    --accent-pink: #ec4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== PREMIUM UNIQUE HEADER ==================== */
.navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2), 0 0 20px rgba(168, 85, 247, 0.15);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #22c55e 0%, #a855f7 50%, #f97316 100%) 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

/* Animated background elements */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, #a855f7, #f97316, transparent);
    opacity: 0.6;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #a855f7 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    animation: slideInLeft 0.6s ease;
    position: relative;
    z-index: 10;
    letter-spacing: 0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-img {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
    transition: var(--transition);
    position: relative;
}

.logo-img:hover {
    transform: scale(1.1) rotate(-5deg) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(34, 197, 94, 0.6));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px;
    display: block;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #a855f7, #f97316);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

.nav-menu a.active {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 10;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #a855f7);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.hamburger:hover span {
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.5);
}

/* ==================== ANIMATED HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: linear-gradient(135deg, #22c55e, #a855f7);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 28px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    border-radius: 12px;
}

.slider-arrow:hover {
    background: rgba(34, 197, 94, 0.4);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ==================== About Section ==================== */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.about h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about p {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

/* ==================== Services Section ==================== */
.services {
    padding: 80px 20px;
    background: white;
}

.services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.service-icon {
    font-size: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ==================== Why Choose Us ==================== */
.why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ==================== CTA Section ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #ffffff;
    color: #22c55e;
    font-weight: 900;
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #16a34a;
}

.btn-secondary {
    background-color: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
    font-weight: 900;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
    color: #ffffff;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 20px 20px;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #22c55e 0%, #a855f7 50%, #f97316 100%) 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
    transform: scale(1);
}

.social-links a:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* ==================== WhatsApp Button ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20a95f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 18px;
    }

    .logo-img {
        height: 50px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .services h2,
    .about h2,
    .why-choose h2,
    .cta h2 {
        font-size: 32px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        padding: 10px 15px;
        font-size: 20px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-img {
        height: 115px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about,
    .services,
    .why-choose,
    .cta {
        padding: 50px 20px;
    }

    .slider-controls {
        bottom: 15px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* ===== Clean Navbar Button Fix ===== */
.nav-container {
  max-width: 1280px;
  height: auto;
  min-height: 82px;
  gap: 14px;
}

.nav-menu {
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.nav-menu li {
  display: flex;
}

.nav-menu a {
  min-height: 44px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  border-radius: 9px;
}

/* Give long menu buttons enough space */
.nav-menu a[href="visa.html"],
.nav-menu a[href="recharge.html"],
.nav-menu a[href="immigration.html"] {
  min-width: 118px;
}

/* Make active button more beautiful */
.nav-menu a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #7c3aed);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
}

/* Mobile view */
@media (max-width: 900px) {
  .nav-container {
    min-height: 72px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-menu a {
    width: 100%;
    min-height: 42px;
    white-space: normal;
    line-height: 1.2;
  }
}

/* ===== Reduce Header Height Cleanly ===== */
.navbar {
  min-height: 70px;
}

.nav-container {
  min-height: 70px;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  align-items: center;
}

.nav-menu a {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 900px) {
  .navbar {
    min-height: 64px;
  }

  .nav-container {
    min-height: 64px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .logo-img {
    max-height: 46px;
  }

  .nav-menu a {
    min-height: 38px;
    padding: 9px 12px;
  }
}

/* ===== Final Header Size + Logo Fix ===== */
.navbar {
  min-height: 76px !important;
}

.nav-container {
  min-height: 76px !important;
  height: auto !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.logo-img {
  width: 125px !important;
  max-height: 64px !important;
  object-fit: contain !important;
}

.nav-menu {
  align-items: center !important;
}

.nav-menu a {
  min-height: 40px !important;
  padding: 9px 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

/* ===== Logo Size 100px For All Main Pages ===== */
.logo-img {
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}



/* ===== Mobile Hamburger Menu Fix ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    display: block;
  }

  .nav-menu {
    display: none !important;
    width: 100%;
    flex-direction: column !important;
    background: #0f172a;
    padding: 15px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    margin-bottom: 6px;
  }
}

/* ===== WORKING MOBILE MENU FIX ===== */
@media (max-width: 900px) {
  .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
    z-index: 99999 !important;
  }

  .hamburger span {
    width: 30px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
    display: block !important;
  }

  .nav-menu {
    display: none !important;
    width: 100% !important;
    flex-direction: column !important;
    background: #0f172a !important;
    padding: 15px !important;
    margin-top: 12px !important;
    border-radius: 12px !important;
    list-style: none !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100% !important;
  }

  .nav-menu a {
    width: 100% !important;
    margin-bottom: 7px !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ===== India Real Time Clock ===== */
.india-clock-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #ffff00;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  white-space: nowrap;
}

.india-flag {
  font-size: 22px;
}

.india-clock-widget span,
.india-clock-widget strong {
  display: block;
  line-height: 1.1;
}

#indiaDate {
  color: #ff0000;
  font-size: 10px;
  font-weight: 700;
}

#indiaTime {
  color: #008000;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .india-clock-widget {
    width: 1000%;
    justify-content: center;
    margin-top: 10px;
  }
}

/* Final mobile menu force fix */
@media (max-width: 900px) {
  .nav-menu.force-open,
  .nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background: #0f172a !important;
    padding: 15px !important;
    margin-top: 12px !important;
    border-radius: 12px !important;
    z-index: 99999 !important;
  }

  .nav-menu.force-open li,
  .nav-menu.active li {
    width: 100% !important;
  }

  .nav-menu.force-open a,
  .nav-menu.active a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    margin-bottom: 7px !important;
  }
}

/* ===== More Services Dropdown ===== */
.more-services {
  position: relative;
}

.more-services-btn {
  min-height: 40px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.more-services-btn:hover,
.more-services-btn.active {
  background: linear-gradient(135deg, #16a34a, #7c3aed);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  padding: 10px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  list-style: none;
  z-index: 99999;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.more-services:hover .dropdown-menu,
.more-services.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  width: 100%;
  margin-bottom: 7px;
  text-align: center;
}

@media (max-width: 900px) {
  .more-services {
    width: 100%;
  }

  .more-services-btn {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
}

/* ===== Live Customer Reviews ===== */
.live-reviews-section {
  padding: 80px 6%;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.12), transparent 30%),
    #f8fafc;
}

.reviews-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.reviews-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 40px;
}

.reviews-heading p {
  color: #64748b;
  font-size: 17px;
}

.live-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.live-review-card {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: 0.3s;
}

.live-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.16);
}

.live-review-card::before {
  content: "LIVE";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  color: #fff;
  background: #ef4444;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #7c3aed);
  border-radius: 50%;
  font-weight: 900;
}

.review-top h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
}

.review-top p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 14px;
}

.stars {
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 18px;
  font-weight: 900;
}

.stars span {
  color: #0f172a;
  font-size: 14px;
}

.review-text {
  color: #334155;
  line-height: 1.7;
}

.live-review-card small {
  color: #16a34a;
  font-weight: 800;
}

@media (max-width: 900px) {
  .live-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .live-review-grid {
    grid-template-columns: 1fr;
  }

  .live-reviews-section {
    padding: 55px 5%;
  }
}

/* ===== Crystal Clear Flight/Train Search ===== */
.hero {
  position: relative;
}

.travel-search-box {
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  padding: 18px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(18px);
}

.search-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.search-tab {
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #334155;
  background: #e2e8f0;
  font-weight: 900;
  cursor: pointer;
}

.search-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #7c3aed);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.25);
}

.travel-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 180px 180px 150px;
  gap: 12px;
  align-items: end;
}

.search-field {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 10px 12px;
}

.search-field label {
  display: block;
  margin-bottom: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field input,
.search-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #0f172a;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
}

.search-submit-btn {
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #16a34a);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.25);
}

.popular-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.popular-routes span {
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.popular-routes button {
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 950px) {
  .travel-search-box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 18px auto;
  }

  .travel-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .search-submit-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .travel-search-form {
    grid-template-columns: 1fr;
  }
}

/* ===== Crystal Transparent Search Form ===== */
.travel-search-box {
  background: rgba(255, 255, 255, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22) !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
}

.search-field {
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.search-field label {
  color: #0f172a !important;
}

.search-field input,
.search-field select {
  color: #0f172a !important;
}

.search-field input::placeholder {
  color: #475569 !important;
}

.search-tab {
  background: rgba(255, 255, 255, 0.5) !important;
  color: #0f172a !important;
}

.search-tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.92), rgba(124, 58, 237, 0.92)) !important;
}

.popular-routes span {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.popular-routes button {
  background: rgba(255, 255, 255, 0.55) !important;
  color: #0f172a !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

/* ===== Banner Text Adjust Safe Version ===== */
.hero-slider .slide-content {
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
  top: 54% !important;
  transform: translate(-50%, -50%) !important;
}

.hero-slider .slide-content h1 {
  font-size: 54px !important;
  line-height: 1.15 !important;
}

.hero-slider .slide-content p {
  font-size: 20px !important;
  max-width: 720px !important;
  margin: 18px auto 0 !important;
}

@media (max-width: 700px) {
  .hero-slider .slide-content {
    top: 56% !important;
  }

  .hero-slider .slide-content h1 {
    font-size: 34px !important;
  }

  .hero-slider .slide-content p {
    font-size: 16px !important;
  }
}

.service-query-section {
  padding: 70px 6%;
  background: #f8fafc;
}

.service-query-section h2 {
  text-align: center;
  color: #0f172a;
  font-size: 38px;
  margin-bottom: 10px;
}

.service-query-section p {
  text-align: center;
  color: #64748b;
  margin-bottom: 35px;
}

.service-query-form {
  max-width: 850px;
  margin: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.service-query-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.service-query-form input,
.service-query-form select,
.service-query-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  outline: none;
}

.service-query-form button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #7c3aed);
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 700px) {
  .service-query-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Final navbar + mobile dropdown fix */
.more-services {
  position: relative;
}

.more-services-btn {
  min-height: 40px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 210px;
  padding: 10px;
  background: #0f172a;
  border-radius: 12px;
  list-style: none;
  z-index: 999999;
}

.more-services.open .dropdown-menu,
.more-services:hover .dropdown-menu {
  display: block;
}

@media (max-width: 900px) {
  .nav-menu.active,
  .nav-menu.force-open {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .more-services,
  .more-services-btn,
  .dropdown-menu {
    width: 100% !important;
  }

  .dropdown-menu {
    position: static !important;
    margin-top: 8px;
  }

  .dropdown-menu li,
  .dropdown-menu a {
    width: 100% !important;
    text-align: center;
  }
}