 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 60px;
            padding: 1rem 3rem;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        
        }

        .navbar.scrolled {
            background: white;
            padding: 0.6rem 3rem;
            color: black;
            .navbar-menu li a{
                color: black;
            }
          
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
            margin-right: auto;
        }

        .navbar-logo img {
            width: 85px;
            height: 85px;
            position: absolute;
            object-fit: contain;
        }

        .navbar-logo:hover {
            transform: scale(1.05);
        }

        .navbar-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            margin-left: auto;
        }

        .navbar-menu li a {
            color: black;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #F28001;
            transition: width 0.3s ease;
        }

        .navbar-menu li a:hover::after {
            width: 100%;
        }

        .navbar-menu li a:hover {
            color: #F28001;
        }

        .navbar-cta {
            padding: 0.6rem 1.5rem;
            background: #F28001;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .navbar-cta:hover {
            background: #d97001;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(242, 128, 1, 0.4);
        }

        .navbar-cta:hover::after {
            display: none;
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        .navbar-toggle span {
            width: 25px;
            height: 3px;
           background: #F28001;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .navbar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .navbar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        @media (max-width: 992px) {
            .navbar {
                padding: 0.7rem 2rem;
            }

            .navbar.scrolled {
                padding: 0.5rem 2rem;
            }

            .navbar-toggle {
                display: flex;
            }

            .navbar-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                flex-direction: column;
                background: white;
                backdrop-filter: blur(15px);
                width: 100%;
                min-height: calc(100vh - 60px);
                padding: 3rem 2rem;
                gap: 2rem;
                transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                align-items: center;
                justify-content: center;
            }

            .navbar-menu.active {
                left: 0;
            }

            .navbar-menu li {
                width: 100%;
                max-width: 300px;
                text-align: center;
                opacity: 0;
                transform: translateX(-30px);
                transition: all 0.3s ease;
            }

            .navbar-menu.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .navbar-menu.active li:nth-child(1) { transition-delay: 0.1s; }
            .navbar-menu.active li:nth-child(2) { transition-delay: 0.15s; }
            .navbar-menu.active li:nth-child(3) { transition-delay: 0.2s; }
            .navbar-menu.active li:nth-child(4) { transition-delay: 0.25s; }
            .navbar-menu.active li:nth-child(5) { transition-delay: 0.3s; }
            .navbar-menu.active li:nth-child(6) { transition-delay: 0.35s; }

            .navbar-menu li a {
                display: block;
                font-size: 1.3rem;
                border-radius: 12px;
                backdrop-filter: blur(10px);
                /* border-bottom: 1px solid rgba(14, 11, 11, 0.61); */
                transition: all 0.3s ease;
            }

            .navbar-menu li a:hover {
                transform: scale(1.05);
            }

            .navbar-menu li a::after {
                display: none;
            }

            .navbar-cta {
                background-color: #F28001;
                border: 2px solid white;
                padding: 1rem 2rem;
                font-size: 1.2rem;
            }

            .navbar-cta:hover {
                color: white;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                padding: 0.6rem 1.5rem;
            }

            .navbar-logo {
                font-size: 1.3rem;
            }

            .navbar-logo img {
                width: 80px;
                height: 80px;
            }

            .navbar-menu {
                top: 55px;
            }
        }

        /* Services Section Styles */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .services-subtitle {
            font-size: 1.15rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid #f0f0f0;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F28001, #ff9f40);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(242, 128, 1, 0.15);
            border-color: #F28001;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            color: #F28001;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #F28001 0%, #ff9f40 100%);
            transform: scale(1.1) rotate(5deg);
        }

        .service-card:hover .service-icon svg {
            color: white;
            transform: scale(1.1);
        }

        .service-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-name {
            color: #F28001;
        }

        .service-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .service-arrow {
            display: inline-block;
            font-size: 1.5rem;
            color: #F28001;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design for Services Section */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 992px) {
            .services-section {
                padding: 60px 0;
            }

            .services-container {
                padding: 0 2rem;
            }

            .services-title {
                font-size: 2.3rem;
            }

            .services-subtitle {
                font-size: 1.05rem;
            }

            .services-header {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services-title {
                font-size: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-icon {
                width: 70px;
                height: 70px;
            }

            .service-icon svg {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 576px) {
            .services-container {
                padding: 0 1.5rem;
            }

            .services-title {
                font-size: 1.8rem;
            }

            .services-subtitle {
                font-size: 1rem;
            }

            .service-name {
                font-size: 1.3rem;
            }

            .service-description {
                font-size: 0.95rem;
            }
        }

        /* About Section Styles */
        .about-section {
            padding: 100px 0;
            position: relative;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-label {
            display: inline-block;
            color: #F28001;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .about-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #F28001;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #F28001;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .about-btn:hover {
            background: #d97001;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(242, 128, 1, 0.3);
            color: white;
        }

        .about-images {
            position: relative;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .image-wrapper:hover {
            transform: translateY(-10px);
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-wrapper:hover img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay span {
            color: white;
            font-size: 1rem;
            font-weight: 600;
        }

        .img-1 {
            grid-row: span 2;
            height: 450px;
        }

        .img-2 {
            height: 215px;
        }

        .img-3 {
            height: 215px;
        }

        .img-4 {
            grid-column: span 2;
            height: 250px;
        }

        /* Responsive Design for About Section */
        @media (max-width: 1200px) {
            .about-content {
                gap: 3rem;
            }

            .about-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .about-section {
                padding: 80px 0;
            }

            .about-container {
                padding: 0 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-title {
                font-size: 2.2rem;
            }

            .about-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0;
            }

            .about-title {
                font-size: 2rem;
            }

            .about-description {
                font-size: 1rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin: 2rem 0;
            }

            .image-grid {
                gap: 1rem;
            }

            .img-1 {
                height: 350px;
            }

            .img-2, .img-3 {
                height: 180px;
            }

            .img-4 {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .about-container {
                padding: 0 1.5rem;
            }

            .about-title {
                font-size: 1.8rem;
            }

            .about-description {
                font-size: 0.95rem;
            }

            .about-btn {
                width: 100%;
                text-align: center;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .img-1, .img-2, .img-3 {
                grid-row: auto;
                height: 250px;
            }

            .img-4 {
                grid-column: auto;
                height: 250px;
            }
        }

        .container-hero {
            height: 100vh;
            width: 100vw;
            position: relative;
            background-image: url('Images/Backgrounds/skardu-flyways.jpg');
            background-size: cover;
            background-position: center;
            transition: background-image 0.8s ease-in-out;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }

        .container-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .container-hero-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .container-hero-content {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            height: 100%;
        }

        .container-hero-inner:first-child {
            flex: 0;
            color: white;
            text-align: center;
            max-width: 700px;
        }

        .container-hero-inner h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            line-height: 1.2;
        }

        .container-hero-inner p {
            font-size: 1.1rem;
            line-height: 1.7;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7);
            margin: 0 auto 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-btn {
            display: inline-block;
            padding: 0.85rem 2rem;
            background: #F28001;
            backdrop-filter: blur(10px);
            border: 2px solid #F28001;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-shadow: none;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-btn:hover {
            background: white;
            color: #F28001;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(242, 128, 1, 0.4);
            text-shadow: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-transition {
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .container-hero-inner:last-child {
            flex: 0;
            display: flex;
            gap: 1.5rem;
            overflow: hidden;
            padding: 1rem 0;
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        .carousel-wrapper {
            display: flex;
            gap: 1.5rem;
            animation: scroll 20s linear infinite;
            will-change: transform;
        }

        .carousel-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 5 - 1.5rem * 5));
            }
        }

        .container-hero-inner-cards {
            min-width: 180px;
            width: 180px;
            height: 220px;
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .container-hero-inner-cards::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
            z-index: 1;
        }

        .container-hero-inner-cards:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            z-index: 2;
            color: white;
        }

        .card-content h2 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .card-content p {
            font-size: 0.75rem;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container-hero-inner h2 {
                font-size: 2.5rem;
            }

            .container-hero-inner p {
                font-size: 1rem;
            }

            .hero-btn {
                padding: 0.8rem 1.8rem;
                font-size: 0.95rem;
            }

            .container-hero-inner-cards {
                min-width: 160px;
                width: 160px;
                height: 200px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-160px * 5 - 1.5rem * 5));
                }
            }
        }

        @media (max-width: 992px) {
            .container-hero-content {
                padding: 2rem;
                gap: 2rem;
            }

            .container-hero-inner h2 {
                font-size: 2.2rem;
            }

            .container-hero-inner p {
                font-size: 0.95rem;
            }

            .hero-btn {
                padding: 0.75rem 1.6rem;
                font-size: 0.9rem;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-160px * 5 - 1.5rem * 5));
                }
            }
        }

        @media (max-width: 768px) {
            .container-hero-inner h2 {
                font-size: 1.9rem;
            }

            .container-hero-inner p {
                font-size: 0.9rem;
            }

            .hero-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }

            .container-hero-inner-cards {
                min-width: 150px;
                width: 150px;
                height: 180px;
            }

            .card-content h2 {
                font-size: 1.2rem;
            }

            .card-content p {
                font-size: 0.7rem;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-150px * 5 - 1.5rem * 5));
                }
            }
        }

        @media (max-width: 576px) {
            .container-hero-content {
                padding: 1.5rem;
            }

            .container-hero-inner h2 {
                font-size: 1.6rem;
            }

            .container-hero-inner p {
                font-size: 0.85rem;
            }

            .hero-btn {
                padding: 0.65rem 1.4rem;
                font-size: 0.8rem;
            }

            .container-hero-inner-cards {
                min-width: 140px;
                width: 140px;
                height: 170px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-140px * 5 - 1.5rem * 5));
                }
            }
        }





















/*--------------------------------------------------------------
#         FAQ's Section
--------------------------------------------------------------*/

.faqs {
    font-family: Arial, sans-serif;
    /* background-color: #f9f9f9; */
    padding: 20px;
    padding-bottom: 100px;

}

.faq-container {
    width: 90%;
    margin: auto;
    background: rgba(227, 224, 224, 0.409);
    /* backdrop-filter: blur(5px); */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 50px;
}

h2 {
    text-align: center;
    color: #fa8908c3;
    margin-bottom: 10px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
}


.faq-item {
    width: 100%;
    /* Each FAQ takes half width */
    border-bottom: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: color 0.3s ease;
    color: #000000;
    font-size: 15px;
}

.faq-item.active .faq-question {
    color: #fa8908c3;
    /* Change only the question color */
}

.faq-answer {
    display: none;
    font-size: 13px;
    color: #000000;
    padding: 5px 0;
    text-align: justify;
}

.plus-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

@media (max-width: 803px) {
    .faq-container {

        flex-direction: column;
        gap: 0px;

    }

    .faq-grid {
        width: 100%;
    }

}


/*--------------------------------------------------------------
        #           Footer Section
----------------------------------------------------------------*/

.footer-container {
    width: 100%;
    /*background-image: url(/Images/Footer.png);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.footer-container .footer {
    /* background-color: #00a3cc; */
    color: #474444;
    padding: 50px 0 30px;
}

.footer-container .footer .footer-brand img {
    height: auto;
    width: 100%;
    max-width: 300px;
}

.footer-container .footer .footer-brand .footer-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-container .footer .footer-brand .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-container .footer .footer-brand .social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #dfd3d3;
   color: #fa8908c3;
    border-radius: 50%;
    text-decoration: none;
    font-size: 25px;
    transition: all 0.3s ease;
}

.footer-container .footer .footer-brand .social-links .social-link:hover {
    background: #fa8908c3;
    color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #474444;
}

.useful-links {
    list-style: none;
    padding: 0;
}

.useful-links li {
    margin-bottom: 15px;
}

.useful-links a {
    color: #474444;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.useful-links a:hover {
    text-decoration: underline;
}

.dropdown-indicator {
    color: #474444;
    font-size: 14px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-address,
.contact-phone,
.contact-email {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

.contact-address i,
.contact-phone i,
.contact-email i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.footer-contact img {
    height: auto;
    width: 100%;
    max-width: 300px;
    max-height: 100px;
    object-fit: contain;
}

.footer-divider {
    height: 1px;
    background-color: #474444;
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 13px;
    padding: 10px 0;

}

.footer-links-bottom a {
    color: #474444;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links-bottom a:hover {
    /* color: white; */
    text-decoration: underline;
}

/* Additional responsive adjustments */
@media (max-width: 767.98px) {
    .footer-container .footer {
        padding: 40px 0 20px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }

    .footer-brand:last-child,
    .footer-links:last-child,
    .footer-contact:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links-bottom a {
        margin: 0;
    }
}




/*--------------------------------------------------------------
# Scroll To Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1111000;
}

.scroll-top:hover {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fa8908c3;
    color: white;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.scroll-top i {
    font-size: 40px;
    font-weight: 700;
}


/*--------------------------------------------------------------
#       Whatsapp Bouncing Button Section
--------------------------------------------------------------*/

label {
    display: none;
}

#whats {
    font-size: 45px;
    position: absolute;
    font-weight: 800;
    border-radius: 50%;
    /* color: #128C7E; */
    color: #0da30f;
    /* color: white; */
    position: fixed;
    bottom: 1.2%;
    left: 1.5%;
    z-index: 1111000;

}

#whats:hover {
    /* transform: rotate(360deg);
  transition-duration: 1s; */
    color: #38C93B;
    /* color: white; */
}

/* Bouncing Effect of the Whatsapp Icon */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }
}

.bounce-effect {
    animation: bounce 3s ease-in-out infinite;
    animation-delay: 5s;
}


.details {
    height: 200vh;
    width: 100%;
    background-color: chocolate;
}




/* services */


  :root {
            --brand-color: #F28001;
            --brand-hover: #d16d00;
            --text-dark: #2c3e50;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding-bottom: 50px;
            overflow-x: hidden;
        }

        /* --- SECTION HEADER STYLING --- */
        .carousel-section {
            padding: 50px 0;
            position: relative;
        }

        /* Alternating background for visual separation */
        .carousel-section:nth-child(even) {
            background-color: white;
        }

        .section-header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
            padding: 0 15px;
        }

        .section-title {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            color: var(--text-dark);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--brand-color);
            border-radius: 2px;
        }

        .section-desc {
            color: #777;
            font-size: 1rem;
            margin-top: 10px;
            margin-bottom: 15px;
            max-width: 600px;
        }

        .view-all-btn {
            color: var(--brand-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.3s;
            margin-top: 5px;
        }

        .view-all-btn:hover {
            color: var(--brand-hover);
            text-decoration: underline;
        }

        /* --- CAROUSEL NAVIGATION --- */
        .carousel-control-prev, .carousel-control-next {
            width: 40px;
            height: 40px;
            background: var(--brand-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            z-index: 5;
        }
        
        .carousel-control-prev { left: 0; }
        .carousel-control-next { right: 0; }

        @media (min-width: 992px) {
            .carousel-control-prev { left: -50px; }
            .carousel-control-next { right: -50px; }
        }

        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            background: var(--brand-hover);
        }

        .carousel-inner {
            padding: 15px 0;
            overflow: hidden;
        }

        /* --- 1. VISA SECTION STYLES --- */
        .visa-section-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .visa-section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .visa-section-flag-wrapper {
            height: 140px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .visa-section-flag {
            font-size: 4.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 6px;
        }
        .visa-section-card-body { padding: 20px; text-align: center; }
        .visa-section-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .visa-section-card-subtitle { color: #888; font-size: 0.85rem; margin-bottom: 15px; display: block; }
        .visa-section-price { color: var(--brand-color); font-weight: 700; font-size: 1.15rem; }
        .visa-section-btn {
            background-color: var(--text-dark); color: white; border: none; padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; width: 100%; margin-top: 15px; transition: 0.3s; text-decoration: none; display: inline-block;
        }
        .visa-section-btn:hover { background-color: var(--brand-color); color: white; }


        /* --- 2. PACKAGE SECTION STYLES --- */
        .pack-section-card {
            border: none; border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%;
        }
        .pack-section-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .pack-section-card-img { height: 200px; width: 100%; object-fit: cover; }
        .pack-section-card-body { padding: 20px; }
        .pack-section-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .pack-section-card-subtitle { color: #888; font-size: 0.85rem; margin-bottom: 15px; display: block; }
        .pack-section-price { color: var(--brand-color); font-weight: 700; font-size: 1.15rem; }
        .pack-section-price span { font-size: 0.75rem; color: #999; font-weight: 400; }
        .pack-section-btn {
            background-color: var(--text-dark); color: white; border: none; padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; width: 100%; margin-top: 15px; transition: 0.3s; text-decoration: none; display: inline-block; text-align: center;
        }
        .pack-section-btn:hover { background-color: var(--brand-color); color: white; }


        /* --- 3. HOTEL SECTION STYLES --- */
        .hotel-section-card {
            border: none; border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%;
        }
        .hotel-section-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .hotel-section-card-img { height: 200px; width: 100%; object-fit: cover; }
        .hotel-section-card-body { padding: 20px; }
        .hotel-section-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .hotel-section-card-subtitle { color: #888; font-size: 0.85rem; margin-bottom: 15px; display: block; }
        .hotel-section-price { color: var(--brand-color); font-weight: 700; font-size: 1.15rem; }
        .hotel-section-price span { font-size: 0.75rem; color: #999; font-weight: 400; }
        .hotel-section-btn {
            background-color: var(--text-dark); color: white; border: none; padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; width: 100%; margin-top: 15px; transition: 0.3s; text-decoration: none; display: inline-block; text-align: center;
        }
        .hotel-section-btn:hover { background-color: var(--brand-color); color: white; }


        /* --- 4. VEHICLE SECTION STYLES --- */
        .vehicle-section-card {
            border: none; border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%;
        }
        .vehicle-section-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .vehicle-section-card-img { height: 200px; width: 100%; object-fit: cover; }
        .vehicle-section-card-body { padding: 20px; }
        .vehicle-section-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .vehicle-section-card-subtitle { color: #888; font-size: 0.85rem; margin-bottom: 15px; display: block; }
        .vehicle-section-price { color: var(--brand-color); font-weight: 700; font-size: 1.15rem; }
        .vehicle-section-price span { font-size: 0.75rem; color: #999; font-weight: 400; }
        .vehicle-section-btn {
            background-color: var(--text-dark); color: white; border: none; padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; width: 100%; margin-top: 15px; transition: 0.3s; text-decoration: none; display: inline-block; text-align: center;
        }
        .vehicle-section-btn:hover { background-color: var(--brand-color); color: white; }

        .topics {
    font-size: 50px;
    text-align: center;
    /* margin-top: 80px;
    margin-bottom: 15px; */
    margin: 0%;
    color: rgb(118, 107, 107);
    /* text-shadow: 0 2px 2px rgba(8, 11, 209, 0.491); */

}