/* <style> */
        :root {
            --primary-color: #4361ee;
            --secondary-color: #3a0ca3;
            --accent-color: #4cc9f0;
            --dark-color: #14213d;
            --light-color: #f8f9fa;
            --text-color: #2b2d42;
            --text-light: #6c757d;
            --success-color: #38b000;
            --warning-color: #ff9e00;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light-color);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .navbar {
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .navbar-brand span {
            color: var(--dark-color);
        }

        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            color: var(--dark-color) !important;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
/* PHP Email Form Messages
------------------------------*/
 .contact-us .error-message {
   display: none;
   background: #df1529;
   color: #ffffff;
   text-align: left;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
 }

 .d-block {
   display: block !important;
 }

 .contact-us .sent-message {
   display: none;
   color: #ffffff;
   background: #059652;
   text-align: center;
   padding: 15px;
   /* margin-bottom: 24px; */
   font-weight: 600;
 }

 .contact-us .loading {
   display: none;
   background: #fff;
   text-align: center;
   padding: 15px;
   /* margin-bottom: 24px; */
 }

 .contact-us .loading:before {
   content: "";
   display: inline-block;
   border-radius: 50%;
   width: 24px;
   height: 24px;
   margin: 0 10px -6px 0;
   border: 3px solid #18d26E;
   border-top-color: #EEE;
   animation: animate-loading 1s linear infinite;
 }

 @keyframes animate-loading {
   0% {
     transform: rotate(0deg)
   }

   100% {
     transform: rotate(360deg);
   }
 }


        /* Hero Section */
        .hero-area {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            /* background: linear-gradient(135deg, rgba(74 90 166 / 90%), rgba(72 47 124 / 80%)), url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center; */
            /* background: linear-gradient(135deg, rgba(74 90 166 / 90%), rgba(72 47 124 / 80%)), url('../images/homepage.avif') no-repeat center center; */
            background: linear-gradient(135deg, rgba(4 90 166 / 45%), rgba(72 47 124 / 0%)), url('../images/homepage.avif') no-repeat center center;
           
            /* 4 90 166 / 45%), rgb(72 47 124 / 0% */
            
            /* 135deg, rgb(74 90 166 / 90%), rgb(72 47 124 / 80%)) */
            background-size: cover;
            color: white;
            overflow: hidden;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
        }

        .btn-outline-light {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        /* Animated Elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* About Section */
         .about-section {
        padding: 6rem 0;
        background-color: white;
        position: relative;
        overflow: hidden;
    }

    .about-img {
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        transform: translateY(0);
    }

    .about-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .section-title {
        position: relative;
        margin-bottom: 2.5rem;
        color: var(--dark-color);
        display: inline-block;
        font-weight: 700;
    }

    .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -12px;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .section-title:hover:after {
        width: 80px;
    }

    .vision-mission-card {
        background-color: #f9fafc;
        border-left: 4px solid var(--primary-color);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

    .vision-mission-card:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .vision-icon, .mission-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(67, 97, 238, 0.1);
        color: var(--primary-color);
        border-radius: 12px;
    }

    .lead {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 2rem;
    }

    @media (max-width: 991.98px) {
        .about-section {
            padding: 4rem 0;
        }
        
        .about-img {
            margin-bottom: 3rem;
            max-width: 80%;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
    }

        /* Services Section */
        .list-unstyled{
             padding: revert;
        }
        .services-section {
            padding: 6rem 0;
            background-color: var(--light-color);
            position: relative;
        }

        .service-card {
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            background: white;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            font-size: 2rem;
            border-radius: 20px;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }

        .service-title {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
            
            color: rgb(12, 12, 12);
            position: relative;
            overflow: hidden;
        }

        .stats-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background-image: url("../images/stats.svg");
            /* background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg=='); */

        }


        .stat-item {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, rgb(0, 0, 0), #0f1346);
            background-clip: text;  
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonial-section {
            padding: 6rem 0;
            background-color: white;
            position: relative;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 1rem;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(67, 97, 238, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }

        .client-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
            margin-right: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            /* background: linear-gradient(135deg, rgba(30, 64, 175, 0.9)0%, rgba(37, 99, 235, 0.9)100%), url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center; */
            /* background: linear-gradient(135deg, rgba(30, 64, 175, 0.9)0%, rgba(37, 99, 235, 0.9)100%), url('../images/contact-bg.jpg') no-repeat center center; */
            background: linear-gradient(135deg, rgba(47 85 212 / 34%)0%, rgba(37 99 235 / 29%)100%), url('../images/contact-bg.jpg') no-repeat center center;

            /* linear-gradient(135deg, rgb(47 85 212 / 34%) 0%, rgba(37, 99, 235, 0.9) 100%), url(../images/contact-bg.jpg) no-repeat center center; */
            background-size: cover;
            color: rgb(255, 255, 255);
            position: relative;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

        }

        .contact-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* background: rgba(255, 255, 255, 0.1); */
            background: rgba(255 255 255 / 31%);
            backdrop-filter: blur(5px);
            color: white;
            /* font-size: 1.5rem; */
            font-size: 20px;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .form-control {
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }

        .form-select {
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            margin-bottom: 1.5rem;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
        
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 15px;
        }

        .footer-links a:hover:before {
            opacity: 1;
            left: 0;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 0.75rem;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50% !important;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-brand {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                margin-bottom: 2rem;
            }

            .about-img,
            .contact-form {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero-area {
                min-height: 600px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .stat-number {
                font-size: 2rem;
                
            }

            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.8rem;
                margin-top: 50px;
            }

            .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }

            .d-flex.gap-3 {
                flex-direction: column;
            }

            .client-img {
                width: 60px;
                height: 60px;
                margin-right: 1rem;
            }
        }

        /* General Service Icon Animations */
        .service-icon i {
            transition: all 0.5s ease;
        }

        /* Passport Icon - Page Flip Animation */
        .service-card:hover .fa-passport {
            animation: flipPassport 1.5s ease;
        }

        @keyframes flipPassport {

            0%,
            100% {
                transform: rotateY(0);
            }

            50% {
                transform: rotateY(180deg);
            }
        }

        /* Plane Icon - Flying Animation */
        .service-card:hover .fa-plane {
            animation: flyPlane 2s infinite linear;
        }

        @keyframes flyPlane {
            0% {
                transform: translateX(0) rotate(0deg);
            }

            25% {
                transform: translateX(5px) rotate(5deg);
            }

            50% {
                transform: translateX(0) rotate(0deg);
            }

            75% {
                transform: translateX(-5px) rotate(-5deg);
            }
        }

        /* ID Card Icon - Scanning Animation */
        .service-card:hover .fa-id-card {
            animation: scanCard 2s infinite linear;
        }

        @keyframes scanCard {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
            }
        }

        /* Umbrella Beach Icon - Waving Animation */
        .service-card:hover .fa-umbrella-beach {
            animation: waveBeach 2s infinite ease-in-out;
        }

        @keyframes waveBeach {

            0%,
            100% {
                transform: rotate(-5deg);
            }

            50% {
                transform: rotate(5deg);
            }
        }

        /* Hotel Icon - Bounce Animation */
        .service-card:hover .fa-hotel {
            animation: bounceHotel 1s infinite alternate;
        }

        @keyframes bounceHotel {
            from {
                transform: translateY(0);
            }

            to {
                transform: translateY(-10px);
            }
        }

        /* Globe Icon - Spinning Animation */
        .service-card:hover .fa-globe {
            animation: spinGlobe 4s infinite linear;
        }

        @keyframes spinGlobe {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Vision & Mission Cards */
        .vision-mission-card {
            background-color: rgba(67, 97, 238, 0.05);
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .vision-mission-card:hover {
            background-color: rgba(67, 97, 238, 0.1);
            transform: translateX(5px);
        }

        .vision-icon,
        .mission-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            color: var(--primary-color);
        }
        html {
  scroll-behavior: smooth;
}
.custom-underline {
  position: relative;
}

.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 100%;
  border-radius: 40px;
  height: 1.5px; /* underline ची जाडी */
  background-color: rgb(0, 8, 255); /* underline चा रंग */
}
    /* </style> */