
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Top bar */
.top-bar {
    background: linear-gradient(133deg, #0f769f, #27bca6);
    color: white;
    padding: 8px 20px;
    padding-left: 12%;
    font-weight: bold;
}

/* Sub-header */
.sub-header {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(133deg, #0f769f, #27bca6);
    padding: 0px 6%;
    font-size: 16px;
    align-items: center;
}

.sub-header span {
    font-weight: bold;
    color: #fff;
}

/* Navigation section */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6%;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-btn {
    background: linear-gradient(133deg, #0f769f, #27bca6);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.menu-highlight {
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: bold;
    margin-left: 1rem;
}

.menu-highlight a {
    color: white;
}

a {
    text-decoration: none;
}

.about {
    color: #fff;
    /* border-bottom: 2px solid #3d0c4a; */
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 2px;
}

.sub-header-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    left: 0;
    top: 100%;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #2c2c2c;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    font-size: 14px;
    margin-top: 0.5rem;
}

.dropdown-content a:first-child {
    margin-top: 0;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    text-decoration: none;
}

.dropdown i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

/* Mobile menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    top: 150px;
    transition: top 0.3s ease;
}

.mobile-menu.sticky-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
}

.mobile-menu.active {
    display: block;
}

.mobile-dropdown {
    margin-bottom: 15px;
}

.mobile-dropdown-title {
    font-weight: bold;
    color: #2c2c2c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 8px 0;
    color: #2c2c2c;
    margin-top: 0.5rem;
}

.mobile-dropdown-content a:first-child {
    margin-top: 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-nav-actions {
    display: none;
    margin-top: 20px;
    gap: 15px;
}

/* Responsive styles */
@media (max-width: 1024px) {

    .top-bar,
    .sub-header {
        padding-left: 5%;
        padding-right: 5%;
    }

    .main-header {
        padding: 8px 5%;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav-actions {
        display: flex;
        justify-content: center;
    }

    .sub-header span {
        font-size: 14px;
    }

    .menu-highlight,
    .about {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }

    .sub-header {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .sub-header-links {
        /* width: 100%;
        justify-content: space-between; */
        display: none;
    }
}


/* Carousel styles */
    .carousel-container {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    }

    .carousel-slide {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .carousel-slide img {
        min-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 15px;
        cursor: pointer;
        font-size: 20px;
        z-index: 10;
        transition: background 0.3s;
    }

    .nav-btn:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    #prevBtn {
        left: 10px;
        border-radius: 0 5px 5px 0;
    }

    #nextBtn {
        right: 10px;
        border-radius: 5px 0 0 5px;
    }

    .nav-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s;
    }

    .dot.active {
        background: white;
    }

    @media (max-width: 768px) {
        .carousel-container {
            height: 60vh;
        }
    }

    @media (max-width: 480px) {
        .carousel-container {
            height: 26vh;
        }
    }


.emp-main {
        margin: 0;
        padding: 50px;
        text-align: center;
    }

    .emp-title {
        font-size: 35px;
        margin-bottom: 50px;
    }

    .emp-carousel-wrapper {
        position: relative;
        max-width: 100%;
        margin: auto;
        overflow: hidden;
    }

    .emp-carousel-slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .emp-carousel-slide {
        flex: 0 0 calc(100% / 7);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .emp-carousel-slide img {
        max-height: 50px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .emp-carousel-slide img:hover {
        filter: grayscale(0%);
    }

    .emp-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        cursor: pointer;
        color: #444;
        user-select: none;
        z-index: 10;
        background: rgba(255, 255, 255, 0.7);
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: none;
    }

    .emp-carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .emp-carousel-arrow-left {
        left: 10px;
    }

    .emp-carousel-arrow-right {
        right: 10px;
    }

    .emp-carousel-indicators {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .emp-carousel-indicator {
        display: inline-block;
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .emp-carousel-indicator-active {
        background-color: #333;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .emp-carousel-slide {
            flex: 0 0 calc(100% / 5);
        }
    }

    @media (max-width: 768px) {
        .emp-title {
            font-size: 24px;
        }

        .emp-carousel-slide {
            flex: 0 0 calc(100% / 4);
        }

        .emp-carousel-slide img {
            max-height: 40px;
        }

        .emp-carousel-arrow {
            width: 30px;
            height: 30px;
            font-size: 20px;
        }
    }

    @media (max-width: 576px) {
        .emp-main {
            padding: 15px;
        }

        .emp-title {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .emp-carousel-slide {
            flex: 0 0 calc(100% / 3);
            padding: 0 5px;
        }

        .emp-carousel-slide img {
            max-height: 35px;
        }

        .emp-carousel-arrow {
            width: 28px;
            height: 28px;
            font-size: 18px;
        }

        .emp-carousel-indicator {
            height: 6px;
            width: 6px;
            margin: 0 3px;
        }
    }

    @media (max-width: 400px) {
        .emp-carousel-slide {
            flex: 0 0 calc(100% / 2);
        }
    }


    .container {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .left-section {
        background: linear-gradient(133deg, #0f769f, #27bca6);
        color: white;
        padding: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .left-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .highlight {
        font-weight: 700;
        color: #fff;
    }

    .features {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .feature-box {
        width: 100%;
    }

    .feature-box h3 {
        font-size: 18px;
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .feature-box p {
        font-size: 14px;
        line-height: 1.5;
        margin-left: 36px;
        /* Align with icon */
    }

    .icon {
        font-size: 24px;
    }

    .right-section {
        background: url('../assets/about.png') no-repeat center center;
        background-size: cover;
        width: 100%;
        height: 300px;
        /* Fixed height for mobile */
    }

    /* Medium devices and up (tablets, desktops) */
    @media (min-width: 768px) {
        .container {
            flex-direction: row;
            height: 90vh;
        }

        .left-section {
            width: 55%;
            padding: 30px;
        }

        .left-section h2 {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .features {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 40px;
        }

        .feature-box {
            width: 45%;
        }

        .feature-box h3 {
            font-size: 20px;
        }

        .feature-box p {
            font-size: 16px;
            margin-left: 0;
        }

        .right-section {
            width: 45%;
            height: auto;
        }
    }

    .section {
        display: flex;
        flex-wrap: wrap;
        padding: 2rem 1rem;
        align-items: center;
        justify-content: center;
    }

    .image-box {
        flex: 1 1 100%;
        min-width: 250px;
        max-width: 600px;
        padding: 1rem;
    }

    .image-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .content-box {
        flex: 1 1 100%;
        padding: 1rem;
        min-width: 250px;
    }

    .content-box h4 {
        color: #1382a0;
        font-weight: 700;
        margin: 0;
        font-size: 1rem;
    }

    .content-box h1 {
        font-size: 1.8rem;
        margin: 10px 0;
        line-height: 1.3;
    }

    .content-box p {
        color: #444;
        line-height: 1.6;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .stats-section {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 1rem;
        flex-wrap: wrap;
        background-color: #fff;
    }

    .stat-box {
        text-align: center;
        min-width: 170px;
        border: 1px solid #ddd;
        background: linear-gradient(133deg, #0f769f, #27bca6);
        border-radius: 20px;
        padding: 20px;
    }

    .stat-box i {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 5px;
    }

    .stat-box h2 {
        font-size: 1.8rem;
        margin: 5px 0;
        color: #fff;
    }

    .stat-box p {
        font-size: 0.9rem;
        color: #fff;
        margin: 0;
    }

    @media (min-width: 576px) {
        .section {
            padding: 3rem 1.5rem;
        }

        .content-box h1 {
            font-size: 2rem;
        }

        .stat-box {
            min-width: 150px;
        }

        .stat-box i {
            font-size: 3rem;
        }

        .stat-box h2 {
            font-size: 2.2rem;
        }
    }

    @media (min-width: 768px) {
        .section {
            padding: 4rem 2rem;
        }

        .image-box {
            flex: 1;
        }

        .content-box {
            flex: 1;
            padding: 1rem 2rem;
        }

        .content-box h1 {
            font-size: 2.5rem;
        }

        .stats-section {
            gap: 3rem;
            padding: 3rem 1rem;
        }

        .stat-box {
            min-width: 160px;
        }

        .stat-box i {
            font-size: 3.5rem;
        }

        .stat-box h2 {
            font-size: 2.8rem;
        }
    }

    @media (min-width: 992px) {
        .section {
            padding: 4rem 5rem;
        }

        .content-box h1 {
            font-size: 3rem;
        }

        .stats-section {
            gap: 3rem;
            padding: 4rem 2rem;
        }

        .stat-box {
            min-width: 300px;
            border: 1px solid #ddd;
            background: linear-gradient(133deg, #0f769f, #27bca6);
            border-radius: 20px;
            padding: 20px;
        }

        .stat-box i {
            font-size: 4rem;
            color: #fff;
        }

        .stat-box h2 {
            font-size: 3.5rem;
            color: #fff;
        }

        .stat-box p {
            font-size: 1rem;
            color: #fff;
        }
    }


    .xylophone-78 {
        margin: 0;
        padding: 0;
        background-color: #f0edf1;
        color: #231f20;
    }

    .quasar-42 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .nebula-15 {
        flex: 1;
        min-width: 300px;
    }

    .pixel-93 {
        display: flex;
        gap: 20px;
        flex: 1;
        min-width: 0;
    }

    .pixel-93 img {
        width: 60%;
        object-fit: cover;
        border-radius: 8px;
    }

    .vortex-27 {
        color: #3e1b4d;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .xylophone-78 h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .zenith-56 {
        width: 370px;
        max-width: 100%;
        height: 2px;
        background-color: #3e1b4d;
        margin-bottom: 40px;
    }

    .quantum-31 {
        display: flex;
        align-items: center;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .quantum-31 i {
        color: #3e1b4d;
        margin-right: 15px;
        font-size: 24px;
    }

    /* Medium devices (tablets, 768px and up) */
    @media (max-width: 900px) {
        .quasar-42 {
            flex-direction: column;
            padding: 2.5rem 1.5rem;
        }

        .pixel-93 {
            width: 100%;
            margin-top: 30px;
        }

        .pixel-93 img {
            width: 100%;
        }

        .nebula-15 {
            width: 100%;
        }
    }

    /* Small devices (phones, 576px and up) */
    @media (max-width: 576px) {
        .quasar-42 {
            padding: 2rem 1rem;
            gap: 20px;
        }

        .xylophone-78 h1 {
            font-size: 32px;
        }

        .vortex-27 {
            font-size: 14px;
        }

        .quantum-31 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .quantum-31 i {
            font-size: 20px;
            margin-right: 12px;
        }

        .zenith-56 {
            margin-bottom: 30px;
        }

        .pixel-93 {
            flex-direction: column;
            gap: 15px;
        }

        .pixel-93 img {
            width: 100%;
            height: auto;
        }
    }


    .mainn {
        background: #fff;
        margin: 0;
        padding: 20px;
    }

    h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    h2 span {
        color: #1484a0;
        font-weight: bold;
    }

    .subheading {
        color: #999;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .container-cat {
        text-align: center;
        max-width: 1300px;
        margin: auto;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .box {
        background: linear-gradient(133deg, #0f769f, #27bca6);
        box-shadow: 0 2px 5px rgb(0 0 0 / 31%);
        padding: 15px;
        font-size: 14px;
        border-radius: 10px;
        transition: transform 0.2s ease;
        color: #fff;
        font-weight: bold;
    }

    .box:hover {
        transform: translateY(-3px);
    }

    @media (max-width: 640px) {
        .mainn {
            padding: 15px;
        }

        h2 {
            font-size: 20px;
        }

        .subheading {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .box {
            padding: 12px;
            font-size: 14px;
        }
    }


    .blog {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .container-blog {
        max-width: 1100px;
        margin: 40px auto;
        padding: 20px;
    }

    .section-title {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .guide-box {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }

    .guide-image {
        position: relative;
        flex: 1;
        min-width: 300px;
    }

    .guide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    .date-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #fff;
        color: #000;
        text-align: center;
        padding: 10px 15px;
        font-weight: bold;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    }

    .date-badge .day {
        font-size: 24px;
        line-height: 1;
    }

    .date-badge .month {
        font-size: 14px;
        line-height: 1;
    }

    .guide-content {
        flex: 1;
        background-color: #fafafa;
        padding: 30px;
        border-radius: 4px;
        position: relative;
    }

    .category-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(133deg, #0f769f, #27bca6);
        color: #fff;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 4px;
        text-transform: uppercase;
    }

    .guide-title {
        font-size: 26px;
        font-weight: bold;
        margin: 30px 0 10px;
    }

    .guide-meta {
        font-size: 14px;
        color: #777;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 15px;
    }

    .guide-desc {
        font-size: 16px;
        color: #444;
        margin-bottom: 20px;
    }

    .read-more {
        font-weight: bold;
        color: #4b205c;
        text-decoration: none;
    }

    .read-more:hover {
        text-decoration: underline;
    }

    /* Responsive styles for small devices */
    @media (max-width: 768px) {
        .container-blog {
            margin: 20px auto;
            padding: 15px;
        }

        .section-title {
            font-size: 32px;
            margin-bottom: 30px;
        }

        .guide-box {
            flex-direction: column;
            gap: 20px;
        }

        .guide-image {
            min-width: 100%;
            max-height: 300px;
        }

        .guide-content {
            padding: 25px 20px;
        }

        .category-badge {
            top: -12px;
            font-size: 12px;
            padding: 4px 12px;
        }

        .guide-title {
            font-size: 22px;
            margin: 20px 0 8px;
        }

        .guide-meta {
            font-size: 13px;
        }

        .guide-desc {
            font-size: 15px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 28px;
            margin-bottom: 25px;
        }

        .date-badge {
            top: 15px;
            left: 15px;
            padding: 8px 12px;
        }

        .date-badge .day {
            font-size: 20px;
        }

        .date-badge .month {
            font-size: 12px;
        }

        .guide-content {
            padding: 20px 15px;
        }

        .guide-title {
            font-size: 20px;
            margin: 15px 0 5px;
        }

        .guide-meta {
            font-size: 12px;
        }

        .guide-desc {
            font-size: 14px;
        }
    }


    .body-test {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background: url('assets/test.jpg') no-repeat center center/cover;
        color: #333;
    }

    .testimonial-section {
        background-color: rgb(183 183 185 / 60%);
        padding: 40px 15px;
        text-align: center;
        color: white;
    }

    .testimonial-section h2 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.3;
        color: #fff;
    }

    .testimonial-section p.subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 10px;
    }

    .testimonial-card {
        background: #fff;
        color: #444;
        border-radius: 12px;
        padding: 25px 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        margin-bottom: 15px;
    }

    .stars {
        color: #f1c40f;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .testimonial-name {
        margin-top: 15px;
        font-weight: bold;
        font-size: 15px;
    }

    .quote-icon {
        font-size: 24px;
        color: #cfd8dc;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

    .dot-indicators {
        margin-top: 25px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .dot.active {
        background-color: #fff;
    }

    /* Media Queries for Small Devices */
    @media (max-width: 640px) {
        .testimonial-section {
            padding: 30px 10px;
        }

        .testimonial-section h2 {
            font-size: 24px;
        }

        .testimonial-section p.subtitle {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .testimonial-container {
            gap: 15px;
            padding: 0;
        }

        .testimonial-card {
            padding: 20px 15px;
            border-radius: 10px;
        }

        .stars {
            font-size: 16px;
        }

        .testimonial-card p {
            font-size: 13px;
        }

        .testimonial-name {
            font-size: 14px;
        }

        .quote-icon {
            font-size: 20px;
        }
    }

    @media (min-width: 641px) and (max-width: 768px) {
        .testimonial-card {
            max-width: 280px;
        }
    }

    .footer-main {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: #3b1840;
        color: #fff;
    }

    .footer {
        background: linear-gradient(133deg, #0f769f, #27bca6);
        padding: 40px 60px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 250px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 180px;
        margin-bottom: 20px;
    }

    .footer p {
        margin: 5px 0;
    }

    .footer h4 {
        color: #fff;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-size: 16px;
    }

    .footer a {
        color: #fff;
        display: block;
        margin-bottom: 8px;
        text-decoration: none;
    }

    .footer a:hover {
        color: #fff;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        padding: 15px;
        font-size: 15px;
        background-color: #000000;
        font-weight: bold;
    }

    .footer-bottom span {
        float: right;
    }

    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
        }

        .footer-bottom span {
            float: none;
            display: block;
            margin-top: 10px;
        }
    }


.img_logo{
    width: 110px;
}

.why{
    color: #1383a0!important;
    line-height: 1.6!important;
    font-size: 20px!important;
    margin-bottom: 5px!important;
}

.modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 10% auto;
        padding: 30px;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .close-modal {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        color: #5a00cc;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(to right, #5a00cc, #c867e6);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: linear-gradient(to right, #4a00b2, #b857d6);
    }


    

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgb(19 130 161 / 56%);
        z-index: 1;
    }

    .title {
        position: relative;
        z-index: 2;
        font-size: 3.5rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .card {
        position: relative;
        z-index: 2;
        background: white;
        color: black;
        padding: 20px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        text-align: center;
        border: 2px solid #5a00cc;
        min-width: 300px;
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .price {
        font-size: 2rem;
        font-weight: bold;
        color: #4b005c;
        margin: 10px 0;
    }

    .buy-btn {
        display: block;
        width: 100%;
        padding: 15px;
        margin: 15px 0;
        border: none;
        border-radius: 50px;
        background: linear-gradient(133deg, #0f769f, #27bca6);
        color: white;
        font-weight: bold;
        cursor: pointer;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .buy-btn:hover {
        background: linear-gradient(to right, #4a00b2, #b857d6);
        box-shadow: 0 5px 15px rgba(90, 0, 204, 0.4);
    }

    .tax-info {
        background: #f0f0f0;
        padding: 10px;
        border-radius: 5px;
        font-size: 0.95rem;
        color: #555;
    }

    /* Content Section Styles */
    .content-section {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
    }

    .section-title:after {
        content: '';
        display: block;
        width: 280px;
        height: 4px;
        background: linear-gradient(133deg, #0f769f, #27bca6);
        margin: 15px auto;
        border-radius: 2px;
    }

    .content-block {
        margin-bottom: 40px;
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .content-block h3 {
        color: #1382a0;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .content-block p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .benefits-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .benefit-item {
        background: #f9f9ff;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #1382a0;
    }

    .benefit-item h4 {
        color: #333;
        margin-bottom: 10px;
    }

    .benefit-item p {
        color: #666;
        font-size: 0.95rem;
    }

    .highlight-box {
        background: linear-gradient(135deg, #f9f0ff 0%, #e6e6ff 100%);
        border: 1px solid #e0d0ff;
        padding: 25px;
        border-radius: 10px;
        margin: 30px 0;
    }

    .highlight-box h3 {
        color: #4b005c;
        margin-top: 0;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 40px;
        background: linear-gradient(133deg, #0f769f, #27bca6);
        color: white;
        font-weight: bold;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgb(18 127 160 / 66%);
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(90, 0, 204, 0.4);
    }

    @media (max-width: 768px) {
        .hero-section {
            flex-direction: column;
            align-items: center;
            padding: 20px;
            text-align: center;
        }

        .title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .card {
            margin-top: 20px;
        }

        .benefits-list {
            grid-template-columns: 1fr;
        }
    }


.contact-header {
        background: url('../assets/top-management-profile.webp') no-repeat center center;
        background-size: cover;
        padding: 100px 20px;
        color: white;
        font-weight: bold;
        font-size: 36px;
        text-align: center;
        position: relative;
    }

    .contact-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .contact-header h1,
    .contact-header .breadcrumb {
        position: relative;
        z-index: 1;
    }

    .breadcrumb {
        font-size: 16px;
        color: white;
        margin-top: 15px;
        opacity: 0.9;
    }

    .breadcrumb a {
        color: white;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .contact-container {
        display: flex;
        justify-content: space-around;
        text-align: center;
        padding: 60px 10px;
        background-color: #f9f9f9;
        flex-wrap: wrap;
    }

    .contact-box {
        flex: 1;
        padding: 30px;
        min-width: 300px;
        margin: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .contact-box i {
        font-size: 48px;
        color: #41144e;
        margin-bottom: 20px;
    }

    .contact-box h2 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #333;
    }

    .contact-box p {
        font-size: 16px;
        color: #555;
        margin: 8px 0;
        line-height: 1.6;
    }

    .bold-text {
        font-weight: bold;
        color: #222;
    }

    .contact-cta {
        text-align: center;
        padding: 60px 20px;
        background-color: #fff;
    }

    .contact-cta h2 {
        font-size: 32px;
        color: #41144e;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .contact-cta p {
        font-size: 18px;
        color: #555;
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }

    .card2 {
        background: white;
        border-radius: 10px;
        padding: 30px;
        max-width: 400px;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .buy-btn {
        background-color: #41144e;
        color: white;
        border: none;
        padding: 15px 40px;
        font-size: 18px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%;
        max-width: 250px;
    }

    .buy-btn:hover {
        background-color: #5a1a6b;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(65, 20, 78, 0.3);
    }

    @media (max-width: 768px) {
        .contact-header {
            padding: 80px 20px;
            font-size: 28px;
        }

        .contact-box {
            min-width: 100%;
            margin: 10px 0;
        }

        .contact-cta h2 {
            font-size: 26px;
        }

        .contact-cta p {
            font-size: 16px;
        }
    }


    .hero-x7b3k {
        background: url('../assets/top-management-profile.webp') no-repeat center center/cover;
        height: 200px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .hero-x7b3k::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-x7b3k h1 {
        position: relative;
        z-index: 1;
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }

    .breadcrumb-9f2d1 {
        background-color: #f5f5f5;
        padding: 10px 40px;
        font-size: 14px;
        color: #555;
    }

    .breadcrumb-9f2d1 a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb-9f2d1 span {
        margin: 0 5px;
    }

    .container-e4k7a {
        max-width: 1300px;
        margin: 30px auto;
        padding: 0 40px;
    }

    .heading-3m8v5 {
        font-size: 22px;
        font-weight: bold;
        margin-top: 40px;
    }

    .paragraph-6j2q9 {
        font-size: 16px;
        color: #333;
        margin: 15px 0;
    }





@media only screen and (max-width: 600px) {
   .img_logo{
        width: 80px;
    }

    .main-header {
        padding: 2px 5%;
    }


    .footer {
        background: linear-gradient(133deg, #0f769f, #27bca6);
        padding: 40px 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }


}