@charset "utf-8";
/* CSS Document */
/*------------------------------------------
Project Name : VisaPro - Immigration and Visa Consulting HTML Template
Desgined By  : DesignsBridge
Developed By : Hassan Malik;
Date        :  06/December/2026;

/*------------------------------------------------------------------
        [Table of Contents]

        1. CSS Variables & Root
        2. Preloader 
        3. Custom Scrollbar
        4. Navbar 
        5. Hero Section
        6. Section Styles
        7. Services Section
        8. Countries Section
        9. Process Section
        10. About Section 
        11. Testimonials Section
        12. Pricing Section
        13. FAQ Section
        14. Contact Section
        15. CTA Section
        16. Footer 
        17. Back to Top
        18. Modal 
        19. Responsive 
        -------------------------------------------------------------------*/

/*------------------------------------------------------------------
        1. CSS Variables & Root
        -------------------------------------------------------------------*/
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #f43f5e;
    --accent: #8b5cf6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
    --gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.preloader-logo span {
    color: var(--primary);
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    /*            backdrop-filter: blur(10px);*/
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-brand i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid #fff;
    color: var(--white);
    font-size: 1.5rem;
}

.close-toggler {
    display: none;
}

.btn-nav {
    background: var(--gradient-1);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-3);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.form-select {
    appearance: auto;
}

.btn-primary-custom {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-main {
    border-radius: 20px;
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-slider .item img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-slider .owl-nav {
    position: absolute;
    right: 15%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 100 !important;
    bottom: 18%;
}

.hero-slider .owl-nav button {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(8px);
    border-radius: 50% !important;
    color: var(--white) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider .owl-nav button:hover {
    background: var(--primary) !important;
    transform: scale(1.1);
    color: var(--white) !important;
}

/* Ensure hero-slider nav is not affected by general media queries */


.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-card-1 {
    top: 55%;
    left: -30px;
    z-index: 99;
}

.hero-card-2 {
    bottom: 45%;
    right: -30px;
    animation-delay: 1s;
    z-index: 99;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-card h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.hero-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--light);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon.blue {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.2) 100%);
    color: var(--primary);
}

.service-icon.rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0.2) 100%);
    color: var(--secondary);
}

.service-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--accent);
}

.service-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    color: #22c55e;
}

.service-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.2) 100%);
    color: #f97316;
}

.service-icon.teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.2) 100%);
    color: #14b8a6;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-features li i {
    color: #22c55e;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* Countries Section */
.countries-section {
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.countries-section .section-subtitle::before,
.countries-section .section-subtitle::after {
    background: var(--white);
}

.country-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.country-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.country-flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.country-card:hover .country-flag {
    border-color: var(--primary);
    transform: scale(1.1);
}

.country-card h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.country-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.country-card .visa-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.visa-badge {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background: var(--white);
    position: relative;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--light);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(10deg);
}

.process-number::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.process-step h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    background: var(--light);
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 15px;
    border: 5px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.about-experience h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.about-experience p {
    margin: 0;
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

section {
    overflow: hidden;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    overflow: visible !important;
}

.testimonials-carousel .item {
    padding-top: 5px;

}

.testimonials-section .section-header {
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgb(33 153 235 / 32%);
    transition: all 0.3s ease;
}

/* Owl Carousel Custom Dots */
.owl-theme .owl-dots {
    text-align: center;
    margin-top: 3rem !important;
    line-height: 1;
}

.testimonials-section .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: rgba(14, 165, 233, 0.2) !important;
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary) !important;
    width: 30px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light);
}

.testimonial-author h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--gradient-3);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--white);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-card.featured h4 {
    color: var(--dark);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price {
    color: var(--primary);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-features li {
    border-color: var(--light);
    color: var(--gray);
}

.pricing-features li i {
    color: #22c55e;
}

.pricing-features li i.bi-x {
    color: var(--secondary);
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-pricing-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-pricing-filled {
    background: var(--gradient-1);
    border: none;
    color: var(--white);
}

.btn-pricing-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.accordion-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--dark);
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ea5e9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--gray);
    padding: 0 1.5rem 1.25rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--gradient-3);
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.form-control,
.form-select {
    background: var(--light);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-logo i {
    color: var(--secondary);
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-3);
    border: none;
    padding: 2rem;
}

.modal-title {
    color: var(--white);
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

/* Page Header */
.page-header {
    background: var(--gradient-3);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/world-globe.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}


/* Contact Page Styles */
.contact-page-section {
    background: var(--light);
    position: relative;
    z-index: 1;
    padding: 70px 0 80px 0;
}

.contact-card-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.contact-page-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.contact-page-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.contact-page-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-page-card p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Services Page Styles */
.service-page-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    transition: transform 0.5s ease;
}

.service-page-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
    position: relative;
}

.service-card-icon-floating {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    color: var(--primary);
}

.service-page-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    margin-top: 0.5rem;
}

.service-page-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}


/* Service Detail Page Styles */
.service-detailsWrp {
    overflow: visible;
}

.leftwidget {
    position: sticky;
    top: 80px;
}

.service-details-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-featured-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 400px;
}

.service-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h2 {
    color: var(--dark);
    font-size: 2rem;
}

.service-content h3 {
    color: var(--dark);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-list-check {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: var(--gray);
}

.service-list-check li::before {
    content: '\F26B';
    /* Bootstrap Icons check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

/* Sidebar Styling */
.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 0.8rem;
}

.service-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light);
    color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-menu a:hover,
.service-menu a.active {
    background: var(--primary);
    color: var(--white);
}

.service-menu a i {
    font-size: 1.2rem;
}

.sidebar-contact-box {
    background: var(--dark);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}


.sidebar-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
}

.sidebar-contact-box h4 {
    margin-bottom: 1rem;
}

.sidebar-contact-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}



/* Country Page Styles */
.country-page-card {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.country-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.country-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.country-page-card:hover .country-card-img {
    transform: scale(1.1);
}

.country-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 30px 10px 30px;
    transition: all 0.4s ease;
}

.country-page-card:hover .country-card-overlay {
    padding-bottom: 40px;
}

.country-card-content {
    transition: all 0.4s ease;
    /* Removed fixed transform to let flex-end positioning work with hidden children */
}

.country-name {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.country-page-card:hover .country-name {
    margin-bottom: 0.5rem;
}

.country-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 0.95rem;
}

.country-page-card:hover .country-desc {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 0.7rem;
    transform: translateY(0);
}

.btn-country-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.country-page-card:hover .btn-country-link {
    opacity: 1;
    max-height: 30px;
    /* Approximate height of button */
    transform: translateY(0);
}

.btn-country-link:hover {
    color: var(--primary);
}

/* Pagination Styles */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: var(--dark);
    background-color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    margin: 0 5px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.page-item.disabled .page-link {
    color: #ccc;
    background-color: #f8f9fa;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .nav-link:hover::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #0284c7 !important;
        color: #fff !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 0px;
        bottom: 0;
        left: 100%;
        width: 60%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.8);
        transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
        z-index: 10000;
    }

    .navbar-collapse.show {
        visibility: visible;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .close-toggler {
        background: none;
        color: #fff;
        padding: 5px;
        border: none;
        margin-top: 10px;
        font-size: 24px;
        display: flex;
        justify-content: end;
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .hero-card {
        display: none;
    }

    .about-image-secondary,
    .about-experience {
        display: none;
    }

    .navbar-collapse {
        background: var(--dark-light);
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .service-featured-img {
        height: auto;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .service-detailsWrp {
        overflow: hidden;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Pricing Page Specific Styles */
.pricing-page-section {
    background: var(--white);
}

.pricing-page-section .section-subtitle {
    color: var(--primary) !important;
}

.pricing-page-section .section-title {
    color: var(--dark) !important;
}

.pricing-page-section .section-description {
    color: var(--gray) !important;
}

.pricing-page-section .pricing-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Light border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-page-section .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-page-section .pricing-card h4 {
    color: var(--dark);
}

.pricing-page-section .pricing-card-desc {
    color: var(--gray);
}

.pricing-page-section .pricing-card p {
    color: var(--gray) !important;
}

.pricing-page-section .pricing-features li {
    color: var(--gray);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.pricing-page-section .pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}

.pricing-page-section .pricing-card.featured h4 {
    color: var(--dark);
}

.pricing-page-section .pricing-card .price {
    color: var(--primary);
}

.pricing-page-section .pricing-card .price span {
    color: var(--gray);
}

/* Legal Page Styles (Privacy & Terms) */
.legal-container {
    padding: 4rem 0 6rem;
    overflow: visible;
}

.legal-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3.5rem;
    height: 100%;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-side-widget {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-menu li {
    margin-bottom: 0.8rem;
}

.legal-menu li:last-child {
    margin-bottom: 0;
}

.legal-menu a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.6rem 0;
}

.legal-menu a:hover,
.legal-menu a.active {
    color: var(--primary);
    transform: translateX(5px);
}

.legal-menu a i {
    font-size: 1rem;
    opacity: 0.7;
}

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section h3 span {
    color: var(--primary);
    font-family: 'Bebas Neue', cursiv;
    font-size: 2.22rem;
    opacity: 0.2;
}

.legal-text {
    line-height: 1.8;
    color: var(--gray);
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 1rem;
    color: var(--gray);
    position: relative;
    list-style: none;
}

.legal-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: -1.5rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .hero-slider .owl-nav {
        right: 22%;

    }

    .hero-section {
        padding-bottom: 70px;
    }
}



@media (max-width: 991px) {
    .about-image-wrapper {
        text-align: center;
    }

    .hero-slider .owl-nav {
        right: 15%;
    }

    .hero-image {
        text-align: center;
        margin: 40px 0;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }

    .legal-card {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .legal-card {
        padding: 2rem 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.5rem;
    }

    .hero-slider .owl-nav {
        right: 25%;
    }
}



/* Owl Carousel Navigation Arrows */


.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white) !important;
    color: var(--primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
    pointer-events: auto;
    margin: 0 !important;
    padding: 0 !important;
}

.owl-theme .owl-nav .owl-prev {
    left: -40px;
}

.owl-theme .owl-nav .owl-next {
    right: -70px;
}



.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}



@media (max-width:480px) {

    .section-title,
    .contact-info-card h3,
    .cta-content h2,
    .about-content h2 {
        font-size: 1.5rem !important;
    }
}