/* modal.css - Fully Updated with All Changes */
:root {
    --primary-color: #1b2587;
    --secondary-color: #fd7e14;
    /* --white: #ffffff; */
    --white: #eef3f6;
    --dark-bg: #1a1a1a;
    --light-bg: #eef3f6;
    --text-dark: #333;
    --text-light: #666;
}

* {
    box-sizing: border-box;
}

.bodytag {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eef3f6;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loaded .hero-slider .slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
}

button:hover {
    transform: translateY(-3px);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    color: var(--text-light);
    font-size: 14px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    font-weight: 600;
    color: black;
    text-decoration: none;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu-new {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 230px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-new li {
    width: 100%;
}

.dropdown-menu-new li a {
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu-new li a:after {
    display: none;
}

.dropdown-menu-new li a:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.dropdown-menu-new li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu-new li:last-child a {
    border-radius: 0 0 8px 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1px;
}


.arrow-btn img:hover {
    width: 55px;
    height: 55px;
    transform: translateY(-3px);

}

.arrow-btn img {
    width: 50px;
    height: 50px;
    /* padding: 11px 11px; */
    margin-left: 10px;
    margin-top: 10px;
}

.logo img {
    height: 65px;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo-text span {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    /* background-color: #e6f0ff !important; */
    border-radius: 50%;
    padding: 2px 7px;
    height: 36%;
}

.phone {
    font-weight: 600;
    color: var(--text-dark);
}

.get-touch-btn {
    background: #1b2587 !important;
    color: #fff !important;
    padding: 8px 8px 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.partners .get-touch-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 8px 8px 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: -90px;
}

.partners .get-touch-btn:hover {
    background: #000 !important;
}

.get-touch-btn:hover {
    background: #16206d !important;
}

.arrow-circle {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.get-touch-btn:hover .arrow-circle {
    transform: translate(4px, -4px);
}

/* Hero Section */
.hero {
    position: relative;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-55%);
    text-align: left;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: transparent;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

.slide-label {
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 20px 2px 20px;
    font-size: 13px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-btn {
    background-color: var(--white);
    color: #000;
    border-radius: 50px;
    font-size: 16px;
    padding: 5px 6px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.contact-btn i {
    font-size: 18px;
}

/* Vertical dots on right border */
.slider-dots-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 8px;
    border-radius: 25px 0 0 25px;
    backdrop-filter: blur(5px);
}

.slider-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(253, 126, 20, 0.5);
}

.slider-dots .dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Features */
.features {
    background-color: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */

.feature-icon {
    height: 50px;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.line-with-dot {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.line-with-dot .line {
    flex: 1;
    height: 1px;
    background-color: #c0cbd5;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background-color: #c0cbd5;
    border-radius: 50%;
    margin-left: -8px;
}


.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.arrow-btn {
    background-color: #eaf2f9;
    color: var(--white);
    width: 65px;
    height: 66px;
    border-radius: 50% 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* .feature-card:hover .arrow-btn {
    background-color: var(--secondary-color);
    width: 55px;
    height: 55px;
} */

/* Who We Are Section - Premium Restyle */
.who-we-are {
    padding: 120px 60px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.who-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.who-image-column {
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 37, 135, 0.3);
    z-index: 2;
}

.experience-badge .years {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.decor-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(27, 37, 135, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.who-content-column h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 20px 0 30px;
}

.who-content-column .highlight {
    color: var(--secondary-color);
}

.who-description p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.tabs-new {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #eef3f6;
    margin-bottom: 30px;
}

.tab-item {
    padding: 15px 0;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: var(--primary-color);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 20px;
}

.who-stats {
    display: flex;
    gap: 40px;
    background: #f8faff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 5px 0 0;
    font-weight: 600;
    text-transform: uppercase;
}

.who-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-primary-new {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 15px 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-new:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: #fff;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-small {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card-small .icon-wrap {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eef3f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card-small .details span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.contact-card-small .details strong {
    font-size: 16px;
    color: var(--text-dark);
}

/* Updated Services Section */
/* Services Revamp - Premium Design */
.services {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 80px;
    border-radius: 20px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.services-header-revamp {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services-header-revamp .header-text {
    flex: 1;
}

.services-header-revamp h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header-revamp .highlight {
    color: var(--secondary-color);
}

.services-header-revamp p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
}

.explore-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 10px 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
}

.explore-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.explore-btn .btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid-revamp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item-revamp {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(40px);
}

.service-item-revamp.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-item-revamp:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.item-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item-revamp:hover .item-visual img {
    transform: scale(1.1);
}

.item-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.item-content {
    padding: 30px;
    color: var(--text-dark);
}

.item-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.item-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.item-link {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-link:hover {
    color: var(--secondary-color);
    gap: 15px;
}



/* Updated How We Work Section */
.how-we-work {
    padding: 80px 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eef3f6;
}

.how-we-work h2 {
    font-size: 36px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: black;
    text-align: center;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step {
    position: relative;
    padding: 40px 30px 30px;
    background-color: #eef3f6;
    border-radius: 20px;
    transition: all 0.3s ease;
}


.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-divider {
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #ccc, transparent);
}

.step:last-child .step-divider {
    display: none;
}


.step-number-container {
    position: relative;
    height: 90px;
    margin-bottom: 10px;
}


.step-number {
    position: relative;
    display: inline-block;
}

.step-label {
    position: relative;
    z-index: 2;
    background-color: #eef3f6;
    padding: 1px 7px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1b2587;
    display: inline-block;
    margin-top: 22px;
}


.number {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 95px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: rgba(21, 20, 28, 0.15);
    line-height: 1;
    z-index: 1;
}


.step:hover .number {
    opacity: 0.3;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 26px 0 10px;
    color: #15141c;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* Updated FAQ Section */
.faq {
    display: flex;
    gap: 18px;
    padding: 80px 40px;
    background-color: transparent !important;
    color: var(--white);
}

.faq-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.video-play-button {
    position: absolute;
    bottom: 0;
    right: 90px;

    background-color: #eef3f6;
    border-radius: 24px 24px 0 0;
    padding: 21px 28px 13px 84px;

    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #15141c;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    z-index: 2;
}

.video-play-button::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 64px;
    height: 64px;
    /* background: #eef3f6; */
    border-radius: 50%;
    z-index: -1;
}

.play-icon {
    position: absolute;
    left: 27px;
    width: 39px;
    height: 38px;

    background-color: #eef3f6;
    color: #1b2587;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    font-size: 22px;
}


.faq-image:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #001f3f;
    border-radius: 50%;
    padding: 25px;
    font-size: 24px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.faq-content {
    display: flex;
    flex-direction: row;
    background-color: #000;
    padding: 40px;
    border-radius: 30px;
    gap: 10px;
    align-items: center;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header .latest-blog-badge {
    display: inline-block;
    background-color: #000;
    color: #fd7e14;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    border: 1px solid #f7ac5f5e;
}

.faq-content p {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    ;
}

/* .faq-subtitle {
    opacity: 0.8;
    font-size: 16px;
} */

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 14px;
    margin: 0;
    color: var(--white);
    flex: 1;
}

.faq-icon {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    opacity: 0.8;
    font-size: 12px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Testimonials */
.testimonials {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--light-bg);
}

.testimonials .latest-blog-badge {
    display: inline-block;
    /* background-color: rgba(27, 37, 135, 0.1); */
    background-color: #f0f8ff;
    color: #1b2587;
    border: 1px solid #5a4949c9;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: -50PX;
    text-transform: uppercase;

}

.testimonials h2+p {
    color: black;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
}

.testimonial-cards {
    display: grid;
    grid-auto-flow: column;
    /* Horizontal flow */
    grid-auto-columns: 500px;
    /* Card width */
    gap: 40px;
    scroll-behavior: smooth;
    overflow-x: auto;
    /* Enable horizontal scroll */
    overflow-y: hidden;
    padding: 60px 20px 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    /* Smooth snapping */
    -webkit-overflow-scrolling: touch;
    /* iOS smooth scroll */
}

/* Chrome, Safari, Edge */
.testimonial-cards::-webkit-scrollbar {
    height: 8px;
}

.testimonial-cards::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-cards::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

/* Show scrollbar ONLY when user interacts */
.testimonial-cards:not(:hover)::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.testimonial-cards::-webkit-scrollbar {
    height: 8px;
}

.testimonial-cards::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.testimonial-card {
    scroll-snap-align: start;
    /* Snap each card */
    width: 100%;
    flex-shrink: 0;
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid var(--light-bg);
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    position: absolute;
    top: -30px;
    left: 30px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-card>p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
    margin-top: 30px;
    /* Space for photo */
}

.person-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.author {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.author span {
    display: block;
    font-weight: normal;
    font-style: italic;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .testimonial-cards {
        grid-auto-columns: 85%;
        padding-left: 10px;
    }

    .testimonial-card {
        width: 100%;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testimonials h2+p {
        font-size: 28px;
    }
}

/* Partners */
.partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background-color: var(--light-bg);
    flex-wrap: wrap;
}

.partners-details {
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 20px;
}

.partners-details p {
    font-size: 20px;
    font-weight: 700;
}

.partners-details i {
    color: #1b2587;
}

.partners-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: transparent !important;
    flex-wrap: wrap;
}

.partners img {
    height: 80px;
    border-radius: 5px;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.partners img:hover {
    /* filter: grayscale(0); */
    /* opacity: 1; */
    transform: scale(1.1);
}

.arrow-circle img {
    height: 40px;
    border: none;
    transform: none;
    opacity: 1;
}

/* Gallery */
.gallery {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--light-bg);
}

.inner-part {
    padding: 50px;
    background-color: white;
    border-radius: 20px;
}

.gallery h2 {
    color: black;
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 700;
}

.gallery>p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 350px;
    transition: all 0.3s ease;
}

.gallery-caption img {
    height: 40px;
    width: 40px;
    margin-bottom: -20px;
    margin-left: 240px;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-caption h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
    border-bottom: 1px solid #bbb;
    padding-bottom: 15px;
}

.gallery-caption p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.inner-part .latest-blog-badge {
    display: inline-block;
    /* background-color: rgba(27, 37, 135, 0.1); */
    /* background-color: #f0f8ff; */
    color: #1b2587;
    border: 1px solid #5a4949c9;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 18px 3px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: -50PX;
    text-transform: uppercase;
}

/* Articles Section - New Design */
.articles {
    padding: 40px 150px 0px;
    background-color: #eef3f6;
    /* position: relative; */
    overflow: hidden;
}

.articles .latest-blog-badge {
    display: inline-block;
    /* background-color: rgba(27, 37, 135, 0.1); */
    /* background-color: #f0f8ff; */
    color: #1b2587;
    border: 1px solid #5a4949c9;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 20px 2px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: -50PX;
    text-transform: uppercase;
}

.articles::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.articles-top {
    margin-bottom: 60px;
    position: relative;
}

.how-we-work .latest-blog-badge {
    display: inline-block;
    /* background-color: rgba(27, 37, 135, 0.1); */
    background-color: #f0f8ff;
    color: #1b2587;
    border: 1px solid #5a4949c9;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px 3px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: -50PX;
}

.articles-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-header {
    color: var(--primary-color);
    font-weight: 700px;
}

.articles-header-new h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 700px;
    margin: 0;
    line-height: 1.2;
}

.read-more-btn {
    color: black;
    border: 1px solid black;
    background-color: #eef3f6;
    padding: 4px 3px 4px 9px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.read-more-btn:hover {
    /* background-color: #0f1a6e; */
    transform: translateY(-3px);
}

.read-more-btn i {
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 18px;
    color: white;
    padding: 6px 10px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.article-card-new {
    background: white;
    border-radius: 31px;
    /* overflow: hidden; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    display: flex;
    z-index: 1;
}

/* .article-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.article-img {
    width: 200px;
    height: 200px;
    /* flex: 0 0 30%; */
    overflow: hidden;
    margin: 10px 10px 10px 10px;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

/* .article-card-new:hover .article-img img {
    transform: scale(1.08);
} */

.article-info {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary-color);
    font-size: 16px;
}

.article-info h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    flex: 1;
}

.article-arrow {
    align-self: flex-end;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.article-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    /* transform: translateY(-5px); */
}

/* Responsive */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .articles-header-new h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .articles {
        padding: 80px 20px;
    }

    .articles-header-new {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-card-new {
        flex-direction: column;
    }

    .article-img {
        flex: 0 0 250px;
    }
}

.bg-img-town {
    background: #eef3f6;
    margin-top: -220px;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: #b0b0b0;
    padding: 60px 40px;
    font-size: 14px;
    margin: 0 20px;
    border-radius: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
}

.footer-logo-section .logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-logo-section .logo-text span {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    flex: 2;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-col h3 {
    color: #fd7e14;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.contact-info-list i {
    color: #fd7e14;
    font-size: 16px;
    margin-top: 4px;
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.newsletter-text {
    flex: 1;
    min-width: 180px;
}

.newsletter-text p {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.newsletter-divider {
    width: 1px;
    height: 60px;
    background-color: #444;
    opacity: 0.6;
}

.newsletter-form-wrapper {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 420px;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 10px;
    background: #fff;
    justify-content: space-between;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    border: none;
}

.newsletter-form input:focus {
    outline: none;
    border: none;
}

.newsletter-form button {
    background-color: #1b2587;
    color: #fff;
    padding: 0 32px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #16206d;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}


/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE APP FEEL
   ========================================================================== */

/* Show/Hide utilities */
.mobile-only-contact {
    display: none;
}

.desktop-only-contact {
    display: flex;
}

.mobile-menu-toggle {
    display: none;
}

/* TABLET VIEW (max-width: 1024px) */
@media (max-width: 1024px) {

    .features,
    .service-cards,
    .steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .who-we-are,
    .faq {
        flex-direction: column;
        padding: 40px 20px;
    }

    .who-content,
    .faq-content {
        padding: 0;
    }

    .footer {
        padding: 40px;
    }

    .articles {
        padding: 40px 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .article-card-new {
        height: auto;
    }
}

/* MOBILE VIEW (max-width: 768px) */
@media (max-width: 768px) {

    /* Header & Navigation */
    .header {
        padding: 10px 15px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--light-bg);
        border-radius: 10px;
        font-size: 24px;
        color: var(--primary-color);
        z-index: 1002;
    }

    .nav {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 25px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
    }

    .desktop-only-contact {
        display: none;
    }

    .mobile-only-contact {
        display: block;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        display: none;
        z-index: 1000;
        opacity: 0;
        transition: 0.3s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .logo img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 6px;
    }

    /* Hero Section - App Feel */
    .hero {
        margin: 10px;
        height: 500px;
        border-radius: 15px;
    }

    .slide-content {
        left: 5%;
        top: 30%;
        width: 85%;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .slider-nav {
        display: none;
        /* Hide arrows on small screens */
    }

    .slider-dots-container {
        padding: 10px 5px;
    }

    /* Column Stacking */
    .features,
    .service-cards,
    .steps,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .feature-card,
    .service-card,
    .step,
    .article-card-new {
        transform: none !important;
        /* Avoid hover transforms on mobile */
    }

    /* Section Labels */
    .section-label {
        width: auto;
        padding: 5px 15px;
        margin: 0 auto 20px;
    }

    /* Who We Are */
    .who-we-are {
        padding: 40px 15px;
    }

    .who-image {
        height: 300px;
    }

    .who-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        white-space: nowrap;
    }

    .check-list-container {
        flex-direction: column;
        gap: 20px;
    }

    .check-list-image {
        flex: none;
        width: 100%;
    }

    .who-buttons {
        flex-direction: column;
        width: 100%;
    }

    .know-more-btn,
    .call-btn {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .services {
        padding: 40px 15px;
        margin: 10px;
    }

    .services-header {
        flex-direction: column;
        text-align: center;
    }

    .services h2 {
        font-size: 24px;
    }

    .service-card .arrow-btn {
        bottom: 140px;
    }

    /* How We Work */
    .how-we-work {
        padding: 40px 15px;
    }

    .how-we-work h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .step-divider {
        display: none;
    }

    .step {
        padding: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .number {
        font-size: 48px;
    }

    /* FAQ */
    .faq {
        padding: 40px 15px;
        gap: 20px;
    }

    .faq-content {
        flex-direction: column;
        padding: 25px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-content p {
        font-size: 24px;
    }

    /* Gallery */
    .gallery {
        padding: 20px;
    }

    .inner-part {
        padding: 20px;
    }

    .gallery-item {
        height: 250px;
        margin-bottom: 15px;
    }

    .gallery-caption {
        position: static;
        width: 100%;
        max-width: none;
        border-radius: 0 0 20px 20px;
        transform: none !important;
        margin-top: -10px;
    }

    /* Articles */
    .articles-header-new h2 {
        font-size: 24px;
    }

    .article-card-new {
        flex-direction: column;
    }

    .article-img {
        width: 100%;
        height: 200px;
        margin: 0;
    }

    .article-img img {
        border-radius: 20px 20px 0 0;
    }

    .article-info {
        padding: 20px;
    }

    .article-arrow {
        right: 15px;
        bottom: 15px;
        margin: 0;
    }

    /* Footer */
    .footer {
        padding: 30px 20px;
        margin: 10px;
    }

    .footer-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin-top: 30px;
    }

    .footer-col {
        width: 100%;
    }

    .contact-info-list li {
        justify-content: center;
    }

    .footer-newsletter {
        flex-direction: column;
        padding: 20px;
    }

    .newsletter-divider {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        border-radius: 50px;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        gap: 12px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .contact-info-list i {
        color: #fd7e14;
        font-size: 16px;
        margin-top: 4px;
    }

    .footer-newsletter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px;
        border: 1px solid #333;
        border-radius: 20px;
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 30px;
        position: relative;
    }

    .newsletter-text {
        flex: 1;
        min-width: 300px;
    }

    .newsletter-text p {
        margin: 0;
        font-size: 26px;
        font-weight: bold;
        color: #fff;
        font-weight: 500;
        line-height: 1.4;
    }

    .newsletter-divider {
        width: 1px;
        height: 60px;
        background-color: #444;
        /* Light gray for visibility on dark bg */
        opacity: 0.6;
    }

    .newsletter-form-wrapper {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: flex-end;
    }

    .newsletter-form {
        display: flex;
        gap: 12px;
        max-width: 420px;
        width: 100%;
        border: none;
        border-radius: 50px;
        padding: 10px;
        background: #fff;
        justify-content: space-between;
    }

    .newsletter-form input {
        flex: 1;
        padding: 10px;
        border-radius: 50px;
        font-size: 15px;
        outline: none;
        border: none;
    }

    .newsletter-form input:focus {
        outline: none;
        border: none;
    }

    .newsletter-form button {
        background-color: #1b2587;
        color: #fff;
        padding: 0 32px;
        border-radius: 50px;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color 0.3s ease;
    }

    .newsletter-form button:hover {
        background-color: #16206d;
    }
}

/* Responsive: Stack vertically on smaller screens */
@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .newsletter-divider {
        width: 80px;
        height: 1px;
        background-color: #444;
        margin: 10px auto;
    }

    .newsletter-text p {
        font-size: 18px;
    }

    .newsletter-form-wrapper {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-top: 20px; */
    /* border-top: 1px solid #333; */
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-logo-section {
        margin-bottom: 30px;
    }

    .footer-columns {
        justify-content: flex-start;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {

    .features,
    .service-cards,
    .steps,
    .testimonial-cards,
    .articles-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }

    .who-content h2,
    .services h2,
    .how-we-work h2,
    .faq-content h2,
    .testimonials h2,
    .gallery h2 {
        font-size: 32px;
    }

    .check-list-container {
        flex-direction: column;
    }

    .check-list-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 992px) {

    .who-we-are,
    .faq {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .slider-dots-container {
        padding: 10px 6px;
        border-radius: 20px 0 0 20px;
    }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-divider {
        display: none;
    }
}

@media (max-width: 768px) {

    .features,
    .service-cards,
    .steps,
    .testimonial-cards,
    .articles-container {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 400px;
        margin: 10px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .who-content h2,
    .services h2,
    .how-we-work h2,
    .faq-content h2,
    .testimonials h2,
    .gallery h2 {
        font-size: 28px;
    }

    .services {
        margin: 10px;
        padding: 40px 20px;
    }

    .how-we-work,
    .testimonials,
    .gallery,
    .articles {
        padding: 40px 20px;
    }

    .features {
        padding: 0 20px;
    }

    .who-we-are,
    .faq {
        padding: 40px 20px;
    }

    .header {
        padding: 10px 20px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-caption {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: -60px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .articles-header h2 {
        font-size: 28px;
    }

    .number {
        font-size: 60px;
    }

    .slider-dots-container {
        padding: 8px 5px;
        border-radius: 15px 0 0 15px;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .check-list-image {
        max-width: 250px;
    }

    .check-list-image img {
        height: 150px;
    }

    .article-image {
        flex: 0 0 180px;
        height: 180px;
    }

    .who-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .call-btn {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
        margin: 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-dots-container {
        padding: 6px 4px;
    }

    .slider-dots {
        gap: 6px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .check-list-image {
        max-width: 200px;
    }

    .check-list-image img {
        height: 120px;
    }

    .arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .feature-card:hover .arrow-btn,
    .service-card:hover .arrow-btn {
        width: 50px;
        height: 50px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        flex: 0 0 150px;
        height: 150px;
        width: 100%;
    }

    .article-content {
        padding: 15px;
    }

    .article-title {
        font-size: 14px;
    }

    .article-link {
        font-size: 13px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CONTACT PAGE REVAMP
   ========================================================================== */
.contact-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 20px;
    border-radius: 30px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(27, 37, 135, 0.4));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: -60px 80px 80px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef3f6;
    border-radius: 50%;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-card strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 0 80px 100px;
}

.contact-form-container {
    background: #eef3f6;
    padding: 60px;
    border-radius: 30px;
}

.contact-form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form-container p {
    color: #666;
    margin-bottom: 40px;
}

.form-group-new {
    margin-bottom: 25px;
}

.form-control-new {
    width: 100%;
    padding: 15px 25px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-new:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(27, 37, 135, 0.05);
}

.submit-btn-new {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-new:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        margin: 40px 20px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
    }

    .contact-form-container {
        padding: 40px 20px;
    }
}