﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, rgb(221 236 225) 0%, rgb(255 255 255) 100%);
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    color: #ffffff;
    border-radius: 50%;
}

    .back-to-top i {
        font-size: 28px;
        color: #ffffff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #243b6b, #4768b7);
        transform: rotate(-45deg);
    }

    .back-to-top i:hover {
        color: white;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    /* Dark Blue to Light Purple */
    width: 100%;
    margin: 0px auto 0;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        top: 0;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border: 0;
    }

    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
        /* White logo text */
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #d1ffd3;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: inline-block;
        padding: 12px 20px;
        font-size: 18px;
        font-weight: 500;
        color: #f8f9fa;
        white-space: nowrap;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #ffffff;
            text-decoration: none;
        }

    .navbar li:before {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background-color: #ff57b2;
        bottom: 7px;
        left: 15px;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.4s ease;
    }

    .navbar li:hover:before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: #28a745;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background: linear-gradient(135deg, #2b3a59, #28468b);
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
    }

    .navbar-mobile ul.list-border li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
        margin: 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #85d8e9;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 0px;
        background: #000000;
        color: white;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* General Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 100vh;
}

.hero-content {
    max-width: 50%;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: white;
    }

.brand-name {
    font-weight: bold;
    color: #ff57b2;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn-primary {
    background: #fff;
    color: #000000;
}

    .hero-btn-primary:hover {
        background: #ff57b2;
        color: #ffffff;
    }

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

    .hero-btn-secondary:hover {
        background: #fff;
        color: #000000;
    }

.hero-image {
    position: relative;
    max-width: 40%;
}

    .hero-image img {
        width: 100%;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px;
        justify-content: center;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .hero-btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Highlights Section
--------------------------------------------------------------*/
.highlights-section {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    color: #ffffff;
}

    .highlights-section .section-title {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 0px;
        color: #ff57b2;
    }

    .highlights-section .section-subtitle {
        font-size: 1.3rem;
        color: #d4d0d0;
        margin-bottom: 30px;
    }

.highlight {
    background: #ffffff14;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .highlight:hover {
        transform: translateY(-10px);
        box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
    }

/* Icon Styling */
.icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    background-color: #4c66a4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f98ac6;
    font-size: 2.5rem;
    position: relative;
    border: 2px solid white;
}

    .icon-wrapper::after {
        content: '';
        position: absolute;
        width: 110%;
        height: 110%;
        border-radius: 50%;
        box-shadow: 0 0 15px #c5d3f2;
        animation: pulse 2s infinite;
    }

/* Animation for Icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.highlight h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 24px;
}

.highlight p {
    font-size: 1.0rem;
    color: #ffffff;
    line-height: 1.7;
}


/* Responsive Styles */
@media (max-width: 1324px) and (min-width: 824px) {
    .highlights-section .col-lg-3 {
        flex: 1 1 48%;
    }
}


@media (max-width: 992px) {

    .highlight {
        padding: 30px 20px;
    }

    .highlights-section .section-title {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .highlights-section .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0px;
    }

    .icon-wrapper {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .highlight h3 {
        font-size: 1.2rem;
    }

    .highlight p {
        font-size: 1rem;
    }
}


@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .highlight h3 {
        font-size: 1.1rem;
    }
}

.highlight p {
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1324px) and (min-width: 824px) {
    .highlights-section .col-lg-3 {
        flex: 1 1 48%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
    padding: 60px 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(43, 58, 89, 0.8), rgba(76, 102, 164, 0.8)), url('../img/about/about-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 400px;
    text-align: left;
}

    .about-us .section-title {
        font-size: 32px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .about-us .section-description {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .about-us .about-paragraph {
        font-size: 17px;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.8;
    }

.about-cta-btn {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
}

    .about-cta-btn:hover {
        background-color: #ff57b2;
        color: #ffffff;
        border: 2px solid #0000001f;
    }

/* About Image */
.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 20px;
    }

        .about-us .section-title {
            font-size: 28px;
        }

        .about-us .section-description {
            font-size: 14px;
        }

    .about-cta-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/*--------------------------------------------------------------
# Service Offerings Section
--------------------------------------------------------------*/
.service-offerings {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    padding: 70px 20px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.service-main-title {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff57b2;
}

.icon-container i {
    font-size: 40px;
    color: #ff57b2;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-offerings .image-container img {
    border-radius: 15px;
}

.service-item {
    margin: 20px 0px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.icon-box {
    font-size: 2.5rem;
    color: #ff57b2;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover .icon-box {
    color: #ff57b2;
}

.service-item h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.9rem;
    color: #f0f0f0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-offerings {
        padding: 50px 15px;
    }

    .service-main-title {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-item {
        padding: 10px;
    }

    .icon-box {
        font-size: 2rem;
    }

    .service-item h5 {
        font-size: 1rem;
    }

    .service-item p {
        font-size: 0.85rem;
    }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

    .why-choose-us::before,
    .why-choose-us::after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .why-choose-us::before {
        top: -50px;
        left: -100px;
        width: 200px;
        height: 200px;
        animation: pulse 2s infinite;
    }

    .why-choose-us::after {
        bottom: -50px;
        right: -100px;
        width: 300px;
        height: 300px;
        animation: pulse 2s infinite;
    }

.container {
    position: relative;
    z-index: 2;
}

.why-choose-us-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff57b2;
}

.why-choose-us-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: white;
}

.why-choose-us-image img {
    max-width: 100%;
    border-radius: 15px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    font-size: 32px;
    color: #ff57b2;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: #fff;
}

.feature-item h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

@media (max-width: 628px) {
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-choose-us-title {
        font-size: 28px;
        text-align: center;
    }

    .why-choose-us-description {
        font-size: 16px;
        text-align: center;
    }

    .why-choose-us-image {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
#pricing {
    padding: 50px 20px;
    background-color: #2b3a59;
    font-family: 'Poppins', sans-serif;
}

.pricing .section-title {
    margin-bottom: 40px;
}

    .pricing .section-title h4 {
        font-size: 40px;
        text-transform: uppercase;
        position: relative;
        color: #ff57b2;
        font-weight: 500;
        font-family: 'Caladea', serif;
    }

    .pricing .section-title h2 {
        font-size: 32px;
        position: relative;
        color: #ffffff;
        font-weight: 500;
        font-family: "Playfair Display", serif;
    }

    .pricing .section-title h4::after {
        content: "";
        width: 100px;
        height: 1px;
        background: #ffffff;
        display: inline-block;
    }

    .pricing .section-title h4::after {
        margin: 0 0 8px 15px;
    }

.image-wrapper {
    position: relative;
}

.pricing-img {
    max-width: 100%;
    border-radius: 10px;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: space-between;
}

.pricing-card {
    background-color: #02888608;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 48%);
    text-align: center;
    padding: 25px;
    margin: auto;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #ff57b2;
    width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-header {
    position: relative;
    margin-bottom: 20px;
}

.pricing-icon {
    background-color: #ff57b2;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#pricing h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .pricing-features li {
        color: #f5f5f5;
        font-size: 1rem;
        padding: 8px 0;
    }

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

    .pricing-card:hover .pricing-card-header .pricing-icon {
        background-color: #a41c65;
    }

/* Responsive Adjustments */
@media (max-width: 1324px) {
    #pricing .col-lg-6 {
        width: 100%;
    }

    .pricing-card {
        width: 45%;
    }
}

@media (max-width: 1024px) {
    .pricing-features li {
        font-size: 1.1rem;
    }

    #pricing h3 {
        font-size: 1.5rem;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .pricing-card-wrapper {
        display: flex;
        margin-top: 40px;
    }

    .pricing .section-title h4 {
        font-size: 25px;
    }

    .pricing .section-title h2 {
        font-size: 20px;
    }
}

@media (max-width: 1034px) {
    #pricing h5 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 782px) {
    #pricing h5 {
        font-size: 1.2rem;
    }

    .pricing-card {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .cta h3 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: #ff57b2;
    }

    .cta p {
        font-size: 16px;
        font-weight: 500;
        color: #f5f5f5;
        margin-bottom: 30px;
    }

.cta-button {
    background-color: #0f856e;
    color: white;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

    .cta-button:hover {
        background-color: #20ae9e;
        color: #ffffff;
        transform: translateY(-5px);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    }

    .cta-button i {
        margin-right: 10px;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .cta h3 {
        font-size: 26px;
    }

    .cta p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    padding: 60px 15px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ff57b2;
    margin-bottom: 20px;
}

.faq-description {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 40px;
    line-height: 1.7;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}


.faq-item {
    background-color: #2b3a59;
    border-radius: 8px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.3);
    }

.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #1d2a44;
    padding: 15px;
    border-radius: 4px;
    position: relative;
}

    .faq-question i {
        margin-right: 12px;
        font-size: 1.4rem;
        color: #ff57b2;
    }

.faq-answer {
    display: none;
    font-size: 1rem;
    color: #ffffff;
    margin-top: 15px;
    padding: 10px;
    border-left: 4px solid #4c66a4;
    border-radius: 8px;
    background-color: rgba(76, 102, 164, 0.8);
}

    .faq-answer p {
        font-size: 1.2rem;
    }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    right: 10px;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question::after {
    content: '-';
    transform: rotate(45deg);
}

.faq-item:hover .faq-question {
    color: #ffffff;
}

.faq-item.open:hover .faq-question {
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.0rem;
    }

    .faq-item {
        margin-bottom: 15px;
        padding: 15px;
    }

    .faq-description {
        font-size: 1rem;
    }

    .faq-question h4 {
        font-size: 14px;
        margin-right: 13px;
    }
}

/*--------------------------------------------------------------
# Testimonials section
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    padding: 80px 0;
}

    .testimonials .section-title {
        margin-bottom: 50px;
    }

        .testimonials .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #ff57b2;
            margin-bottom: 15px;
        }

        .testimonials .section-title p {
            font-size: 18px;
            color: #f1f1f1;
        }

.testimonial-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonials .col-md-6 {
    padding: 10px;
}

.testimonial-box:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding: 15px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
    line-height: 1.6;
    font-style: italic;
}

    .testimonial-text:before {
        content: "“";
        font-size: 36px;
        color: #ff57b2;
        position: absolute;
        top: -10px;
        left: 10px;
    }

    .testimonial-text:after {
        content: "”";
        font-size: 36px;
        color: #ff57b2;
        position: absolute;
        bottom: -10px;
        right: 10px;
    }

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.client-position {
    font-size: 14px;
    font-weight: 400;
    color: #f1f1f1;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
}

.testimonial-box {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1324px) {
    .testimonial-row .col-lg-3 {
        flex: 1 1 48%;
    }
}

@media (max-width: 868px) {
    .testimonials .section-title h2 {
        font-size: 28px;
    }

    .testimonials .section-title p {
        font-size: 16px;
    }

    .testimonial-box {
        padding: 20px;
    }

    .testimonial-row {
        gap: 20px;
    }

        .testimonial-row .col-lg-3 {
            flex: 1 1 100%;
        }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    padding: 60px 0;
}

    .contact h4 {
        font-size: 36px;
        font-weight: bold;
        color: #ff57b2;
        margin-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
        font-family: "Playfair Display", serif;
    }

    .contact p {
        font-size: 17px;
        color: #fff;
        text-align: center;
        margin-bottom: 60px;
    }

/* Updated Contact Form */
.contact-form {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px 40px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .contact-form:hover {
        transform: translateY(-5px);
    }

    .contact-form h5 {
        font-size: 28px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-form .form-row {
        display: flex;
        gap: 20px;
    }

    .contact-form .form-group {
        flex: 1;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 20px;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 16px;
        color: #fff;
        transition: border-color 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #fff;
            outline: none;
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
        }

    .contact-form button {
        width: 100%;
        background-color: #ff57b2;
        color: white;
        border: 2px solid transparent;
        font-size: 18px;
        padding: 10px 30px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    }

        .contact-form button:hover {
            background-color: #88155300;
            color: #ff57b2;
            border: 2px solid #ff57b2;
            transform: translateY(-5px);
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
        }

.button-area span {
    font-size: 17px;
    display: none;
    margin: 20px 0 0;
    text-align: center;
}

/* Image Section */
.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-height: 500px;
    margin: auto;
}

    .contact-image img {
        max-width: 100%;
        height: auto;
        transition: transform 0.3s ease-in-out;
    }

        .contact-image img:hover {
            transform: scale(1);
        }

@media (max-width: 968px) {
    .contact .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {

    .contact {
        padding: 60px 0px 60px 0px;
    }

    .contact-form .form-row {
        gap: 0px;
    }

    .contact .col-lg-6 {
        width: 100%;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: linear-gradient(135deg, #2b3a59, #4c66a4);
    color: white;
    padding: 40px 0;
}

    .footer h5,
    .footer p {
        color: white;
        font-weight: 600;
        font-size: 1.0rem;
        margin-bottom: 15px;
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #16a085;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

    .social-icon:hover {
        background: #acffff00;
        transform: scale(1.15) rotate(15deg);
        border: 2px solid #b4f4ff;
    }

.social-links {
    display: flex;
    justify-content: left;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #ff57b2;
    font-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

    .social-icon:hover {
        background: #acffff00;
        transform: scale(1.15) rotate(15deg);
        border: 2px solid #b4f4ff;
    }


.footer .footer-logo-section img {
    width: 200px;
    margin-bottom: 20px;
}

.footer .footer-logo-section .footer-tagline {
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

    .footer ul li {
        margin-bottom: 10px;
        font-size: 16px;
    }

        .footer ul li i {
            margin-right: 10px;
            color: #ffffff;
        }

.footer .container {
    max-width: 1200px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .footer .row {
        display: flex;
        justify-content: space-around;
        margin: 10px;
    }

    .footer .footer-logo-section .footer-tagline {
        text-align: left;
    }
}

@media (max-width: 668px) {
    .footer .row {
        flex-direction: column;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# PAGES
--------------------------------------------------------------*/
/* Modernized Page Header */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, rgb(50 68 105), rgb(62 86 134));
    color: #fff;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .page-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 15px;
    }

    .page-header .tagline {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 400;
        opacity: 0.85;
        margin: auto;
        margin-bottom: 20px;
        max-width: 65%;
    }

.page-breadcrumb {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .page-breadcrumb a {
        color: #f0f9ff;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .page-breadcrumb a:hover {
            color: #ff57ac;
            text-decoration: none;
        }

    .page-breadcrumb span {
        color: #ff57b2;
        font-weight: 400;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0;
    }

        .page-header h1 {
            font-size: 25px;
        }

        .page-header .tagline {
            font-size: 18px;
            max-width: 90%;
        }

    .page-breadcrumb {
        font-size: 16px;
    }
}
