/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #131313;
}

/* Header and Navbar Styles */
header {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    position: relative;
    margin-top: -50px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Common styles for white containers */
.navbar,
.contact-button,
.circle-button {
    background: white;
    border-radius: 100px!important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    background: white;
    border-radius: 100px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    display: inline-flex;
    margin-left: 20px;
}

.container-fluid {
    padding: 0 15px;
    width: auto;
}

.navbar-nav {
    gap: 10px;
}

/* Navigation links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Update hover and active states */
.nav-link:hover,
.contact-button:hover,
.circle-button:hover {
    color: #A353C2 !important;
}

/* Keep active text black, only show purple underline */
.nav-link.active {
    color: #333 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #A353C2;
}

/* Service Arrow Styles */
.service-arrow {
    font-size: 12px;
    color: #A353C2;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-toggle::after {
    display: none;
}

/* Mega Menu Styles */
.dropdown-menu.mega-menu {
    display: none;
    transition: all 0.3s ease;
    padding: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    margin-top: 5px;
}

/* Add hover delay styles */
.nav-item.dropdown:hover .dropdown-menu.mega-menu {
    display: block;
}

.dropdown-menu.mega-menu:hover {
    display: block;
}

/* Add padding to create hover space */
.nav-item.dropdown {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

/* Add hover space between menu and items */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mega-menu-item:last-child {
    margin-bottom: 0;
}

.menu-number {
    color: #666;
    margin-right: 15px;
    font-size: 14px;
    min-width: 35px;
    text-align: right;
}

.mega-menu-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-item a:hover {
    color: #A353C2;
}

/* Logo Styles */
.logo-container {
    width: 120px;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.company-logo {
    max-width: 100%;
    height: auto;
    margin-top: 70px;
}

/* Contact Button Container */
.contact-button-container {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    gap: 0.75rem;
}

/* Contact Button */
.contact-button {
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    height: 48px;
    color: #333;
}

/* Circle Button */
.circle-button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icons */
.arrow-icon,
.menu-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.nav-item.dropdown:hover .service-arrow {
    transform: rotate(90deg);
}

.contact-button:hover .arrow-icon {
    transform: translate(2px, -2px);
}

.circle-button:hover .menu-icon {
    transform: scale(0.9);
}

/* Mobile Header Styles */
.mobile-header {
    padding: 15px;
    align-items: center;
    position: relative;
    z-index: 1002;
    background: transparent;
    margin-bottom: 60px;
}

.mobile-logo {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
}

.mobile-logo .company-logo {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.mobile-logo a {
    display: inline-block;
    text-decoration: none;
}

.mobile-logo img {
    height: auto;
    width: 100%;
}

.mobile-menu-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: white;
    border-radius: 100px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    cursor: pointer;
}

.mobile-menu-btn .menu-icon {
    width: 16px;
    height: 16px;
    stroke: #A353C2;
}

/* Mobile Contact Button */
.mobile-header .contact-button {
    padding: 8px 16px;
    font-size: 14px;
    align-self: center;
}

/* Update existing styles */
@media (max-width: 991.98px) {
    header {
        margin-top: 0;
        padding-top: 0;
    }
    
    .contact-button {
        height: 40px;
    }

    /* Hide hero elements on mobile */
    .social-circles,
    .hero-content-wrapper,
    .message-bubble,
    .bottom-left-content,
    .main-content {
        display: none !important;
    }
}

/* Hamburger Menu Button */
.hamburger-menu {
    width: 48px;
    height: 48px;
    border: none;
    background: white;
    border-radius: 100px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: 15px;
    cursor: pointer;
    padding: 0;
    margin-top: 0;
    align-self: center;
    position: relative;
    z-index: 1002;
}

.hamburger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #A353C2;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Enhanced hamburger to X animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: auto;
    background: white!important;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    margin-top: 100px; /* Increased margin-top */
    border-radius: 20px;
}

.mobile-nav .navbar-nav {
    gap: 15px;
}

.mobile-nav .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .menu-number {
    color: #666;
    font-size: 14px;
    margin-right: 20px;
}

.mobile-nav .nav-link {
    color: #333 !important; /* Changed to black */
    font-size: 16px;
    padding: 10px 0 !important;
    margin-left: auto;
}

/* Mobile Services Menu Item */
.mobile-nav .dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav .dropdown .nav-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #A353C2;
    border-bottom: 2px solid #A353C2;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.mobile-nav .dropdown .nav-link.show::after {
    transform: rotate(45deg);
}

/* Mobile Mega Menu */
.mobile-nav .dropdown-menu {
    position: absolute;
    left: 100%;
    top: -20px;
    margin-left: 30px;
    background: #A353C2;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 200px;
}

.mobile-nav .mega-menu-item {
    margin-bottom: 15px;
    justify-content: flex-end;
}

.mobile-nav .mega-menu-item:last-child {
    margin-bottom: 0;
}

.mobile-nav .mega-menu-item a {
    text-align: right;
    width: 100%;
    color: white !important; /* Keep dropdown items white */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-nav .mega-menu-item a:hover {
    opacity: 0.8;
    color: white;
}

/* Background blur */
body::before {
    display: none; /* Remove the blur overlay completely */
}

body.menu-open::before {
    display: none;
}

/* Rename menu-decrease to stats-icon */
.circle-button .menu-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Navigation - active state */
.mobile-nav .nav-link.active {
    color: #333 !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin-top: 10px;
}

/* Hero Content Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-cta .arrow-icon {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-header {
        background: transparent;
    }
    
    .mobile-nav {
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }
}

/* Social Media Circles */
.social-circles {
    position: absolute;
    left: 40px;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-circle i {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-2px);
    background: #150558;
}

.social-circle:hover i {
    color: white;
}

/* Mobile adjustments for social circles */
@media (max-width: 991.98px) {
    .social-circles {
        left: 20px;
        top: auto;
        bottom: 40px;
        transform: none;
        flex-direction: row;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 40px;
    z-index: 2;
}

/* Bottom Left Content - Update position */
.bottom-left-content {
    position: relative; /* Change from absolute to relative */
    margin-bottom: 40px; /* Add space between elements */
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand-text {
    color: white;
    font-size: 18px;
    max-width: 300px;
    line-height: 1.6;
}

.circle-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.circle-arrow i {
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.circle-arrow:hover {
    background: #150558;
    transform: translateY(2px);
}

.circle-arrow:hover i {
    color: white;
}

/* Main Content Area */
.main-content {
    position: relative;
}

/* Update existing title styles */
.main-title {
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
    
}

.sub-title {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .hero-content-wrapper {
        padding: 0 20px;
        padding-bottom: 60px;
    }

    .bottom-left-content {
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 48px;
    }
    
    .sub-title {
        font-size: 32px;
    }
}

/* Remove the previous .hero-section::after style */
.hero-section::after {
    display: none;
}

/* Update message bubble styles */
.message-bubble {
    position: absolute;
    bottom: 60px;
    right: 60px;
    max-width: 380px;
    background-color: white;
    padding: 30px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Special border radius to create the unique shape */
    border-radius: 24px 24px 0 24px;
}

.message-bubble p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding-right: 20px;
}

/* Add expand circle styles */
.expand-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expand-circle img {
    width: 16px;
    height: 16px;
}

.expand-circle:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .message-bubble {
        max-width: 300px;
        bottom: 40px;
        right: 20px;
        padding: 20px;
    }
    
    .message-bubble p {
        font-size: 14px;
    }
    
    .expand-circle {
        width: 36px;
        height: 36px;
        bottom: -18px;
        right: -18px;
    }
}

/* Update hero section styles for mobile */
@media (max-width: 991.98px) {
    .hero-section {
        background-image: url('../img/aa.jpeg');
        background-size: cover;
        background-position: center;
        background-origin: padding-box;
        margin: 10px;
        border-radius: 24px;
        min-height: 80vh;
        background-clip: padding-box;
    }

    /* Hide desktop hero elements */
    .social-circles,
    .hero-content-wrapper,
    .message-bubble,
    .bottom-left-content,
    .main-content {
        display: none !important;
    }
}

/* Update mobile brand text styles */
.mobile-brand-text {
    position: absolute;
    left: 0;
    top: 500px !important;
    background-color: black;
    color: white;
    font-size: 10px;
    padding: 12px 20px;
    border-radius: 0 24px 24px 0;
    max-width: 280px;
    line-height: 1.4;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.mobile-brand-text p {
    margin: 0;
}

/* Add mobile main content styles */
.mobile-main-content {
    margin-top: 8px;
}

.mobile-main-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.mobile-sub-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Keep existing mobile circle arrow styles */
.mobile-circle-arrow {
    width: 24px;
    height: 24px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-circle-arrow i {
    color: white;
    font-size: 10px;
}

/* Adjust for smaller screens */
@media (max-width: 576px) {
    .mobile-brand-text {
        left: 0;
        top: 70px;
    }
}

/* Update mobile message bubble styles */
.mobile-message-bubble {
    position: absolute;
    right: 0;
    top: 150px !important;
    max-width: 280px;
    background-color: white;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 24px 0 0 24px;
}

.mobile-message-bubble p {
    color: #333;
    font-size: 9px;
    line-height: 1.6;
    margin: 0;
    padding-right: 15px;
}

.mobile-expand-circle {
    position: absolute;
    bottom: -15px;
    right: -8px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-expand-circle img {
    width: 12px;
    height: 12px;
}

.mobile-expand-circle:hover {
    transform: scale(1.1);
}

/* Add mobile social circles styles */
.mobile-social-circles {
    position: absolute;
    right: 20px;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.mobile-social-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50% 50% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-social-circle i {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-social-circle:hover {
    transform: translateX(-2px);
    background: #150558;
}

.mobile-social-circle:hover i {
    color: white;
}

/* Adjust message bubble position to accommodate social circles */
.mobile-message-bubble {
    top: 350px !important; /* Adjusted to appear after social circles */
}

/* Update about section styles */
.about-section {
    padding: 80px 0;
}

/* Update section header styles */
.section-header {
    margin-bottom: 40px;
}

/* Update about headline styles */
.about-headline {
    color: white;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 920px;
}

/* Add about text styles */
.about-text {
    color: #979797;
    font-size: 16px;
    line-height: 1.6;
    max-width: 920px;
}

/* Update responsive styles */
@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-headline {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 14px;
    }

    .circle-arrow-up {
        margin-top: 30px;
    }
}

/* Section title styles */
.section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: 100px;
}

.section-title span {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.section-title .title-arrow {
    width: 16px;
    height: 16px;
}

/* Update circle arrow up styles */
.circle-arrow-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: 1px solid white;
    border-radius: 50%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px #8E4BB8;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.circle-arrow-up img {
    width: 20px;
    height: 20px;
}

.circle-arrow-up:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .circle-arrow-up {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .circle-arrow-up img {
        width: 16px;
        height: 16px;
    }
}

/* Add styles for the headline */
.about-headline .gradient-text {
    background: linear-gradient(90deg, #A353C2 71.47%, #EEC3FF 75.22%, #A353C2 79.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update right images container styles */
.right-images-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ellipse-1 {
    width: 110px;
    height: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.ellipse-2 {
    width: 80px;
    height: auto;
    margin-bottom: 30px;
}

/* Add mobile specific styles */
@media (max-width: 991px) {
    .about-section {
        position: relative;
        overflow: hidden; /* To contain the background images */
    }

    .right-images-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; /* Makes the images non-interactive */
        z-index: 0;
    }

    .ellipse-1 {
        position: absolute;
        top: 20px;
        right: -30px;
        width: 140px;
        opacity: 0.3; /* Make it more subtle */
    }

    .ellipse-2 {
        position: absolute;
        top: 180px;
        right: 20px;
        width: 100px;
        opacity: 0.3; /* Make it more subtle */
    }

    /* Ensure text stays above the background images */
    .about-section .col-md-8 {
        position: relative;
        z-index: 1;
    }

    .section-header,
    .about-headline,
    .about-text {
        position: relative;
        z-index: 2;
    }
}

/* Add Actions section styles */
.actions-section {
    padding: 60px 0;
}

/* Specific styles for actions section header */
.actions-section .section-header {
    margin-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .actions-section {
        padding: 60px 0;
        margin-top: 20px;
    }
    
    .actions-section .section-header {
        margin-bottom: 40px;
    }
}

/* Update action boxes styles */
.action-box {
    min-height: 300px;
    border-radius: 40px;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: rgb(233, 229, 229);
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* First box */
.action-box-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F6F5F3;
    pointer-events: none;
}

/* Second box */
.action-box-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(56deg, rgba(226, 228, 243, 0.00) 44.39%, #7A50A0 95.77%);
    pointer-events: none;
}

/* Third box */
.action-box-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(236deg, #8370A9 4.23%, rgba(226, 228, 243, 0.00) 55.61%);
    pointer-events: none;
}

/* Ensure content stays above gradient */
.action-box > * {
    position: relative;
    z-index: 1;
}

/* Remove the previous gap property from actions-boxes */
.actions-boxes {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .action-box {
        min-height: 300px;
        margin-bottom: 0; /* Remove bottom margin */
    }
}

/* Add styles for the action circle and mesh image */
.action-box-1 {
    position: relative;
}

.action-circle {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    background-color: #41434F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.action-circle .action-arrow {
    width: 20px;
    height: 20px;
}

.mesh-image {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    width: 90%;
    height: auto;
    max-height: 180px;
    z-index: 1;
}

.mesh-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Update the first box gradient to ensure proper layering */
.action-box-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F6F5F3;
    pointer-events: none;
    z-index: 0;
}

/* Update action row styles for buttons */
.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border: none;
    background: none;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Add active state for buttons */
.action-row.active {
    background: rgba(0, 0, 0, 0.05);
}

.action-row:hover .row-content {
    text-decoration: underline;
}

.row-number {
    color: #666;
    font-size: 14px;
    min-width: 40px;
    margin-right: 15px;
    order: 0;
}

.row-content {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    order: 1;
}

/* Keep existing container styles */
.action-rows {
    position: relative;
    z-index: 2;
    margin-top: 150px;
    padding: 0 30px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .action-rows {
        margin-top: 180px;
    }
    
    .action-row {
        padding: 12px 0;
    }
    
    .row-content {
        font-size: 14px;
    }
}

/* Add styles for the second action box content */
.action-box-2 {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.action-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.action-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.az1 img{
    width: 20%;
    height: 60px;
    object-fit: cover;
}

.action-content {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.action-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.action-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.action-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .action-box-2 {
        padding: 25px;
    }

    .action-title {
        font-size: 20px;
    }

    .action-description {
        font-size: 14px;
    }
}

/* Add styles for the third action box */
.action-box-3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}

.action-grid-row {
    position: relative;
    margin-top: 30px;
    z-index: 2;
}

.action-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.grid-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.grid-content {
    flex: 1;
}

.grid-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.grid-text {
    color: #666;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .action-box-3 {
        padding: 25px;
        gap: 20px;
    }

    .grid-image {
        width: 50px;
        height: 50px;
    }

    .grid-title {
        font-size: 16px;
    }

    .grid-text {
        font-size: 13px;
    }
}

/* Add Services section styles */
.services-section {
    padding: 80px 0;
    margin-top: 40px;
}

/* Services headline styles */
.services-headline {
    color: white;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Update section header for services */
.services-section .section-header {
    margin-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
        margin-top: 20px;
    }

    .services-headline {
        font-size: 32px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .services-section .section-header {
        margin-bottom: 40px;
    }
}

/* Add service box styles */
.service-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-text {
    color: #979797;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-box {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-text {
        font-size: 14px;
    }
}

/* Add Business section styles */
.business-section {
    padding: 80px 0;
    margin-top: 40px;
}

.business-headline {
    color: white;
    font-size: 33px;
    line-height: 1.2;
    max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .business-section {
        padding: 60px 0;
        margin-top: 20px;
    }

    .business-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    /* Stack elements on mobile */
    .business-section .row {
        flex-direction: column;
        gap: 20px;
    }

    .business-section .col-md-6:last-child {
        justify-content: flex-start !important;
    }
}

/* Update business section container styles */
.business-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Update benefit box container styles */
.business-section .row.g-4 {
    justify-content: center;
}

.business-section .col-md-6 {
    width: 50%;
    max-width: 480px;
    padding: 0 15px;
}

/* Update benefit box styles */
.benefit-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #DAD8EC;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    margin: 0 auto;
}

.benefit-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-text {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .business-section .container {
        padding: 0 20px;
    }

    .business-section .col-md-6 {
        width: 100%;
        max-width: 480px;
        padding: 0;
        margin-bottom: 20px;
    }

    .benefit-box {
        padding: 20px;
        gap: 16px;
    }
}

/* Add counter section styles */
.counter-section {
    padding: 20px 0;
}

/* Update container styles for counter section */
.counter-section .container {
    max-width: 1000px; /* Decrease container width */
}

/* Update column spacing */
.counter-section .col-md-3 {
    padding: 0 20px; /* Decrease padding between columns */
}

.counter-item {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.counter-number {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.counter-plus {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.counter-text {
    color: #979797;
    font-size: 16px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .counter-section .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .counter-section .col-md-3 {
        padding: 0 5px; /* Even smaller padding on mobile */
    }

    .counter-number,
    .counter-plus {
        font-size: 40px;
    }

    .counter-text {
        font-size: 16px;
    }
}

/* Add results section styles */
.results-section {
    padding: 120px 0;
    background-image: url('../img/result-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 60px;
}

/* Center content container */
.results-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}

/* Style section title specifically for results */
.results-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Results headline styles */
.results-headline {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Results text styles */
.results-text {
    color: #B8B8B8;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Style contact button specifically for results */
.results-cta {
    background: white;
    color: #333;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.results-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.results-cta .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.results-cta:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .results-section {
        padding: 80px 0;
        margin-top: 40px;
    }

    .results-content {
        padding: 0 20px;
        gap: 20px;
    }

    .results-headline {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .results-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .results-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Additional mobile adjustments */
@media (max-width: 576px) {
    .results-section {
        padding: 60px 0;
    }

    .results-headline {
        font-size: 28px;
    }

    .results-text {
        font-size: 15px;
    }
}

/* Add contact section styles */
.contact-section {
    padding: 80px 0;
    background-color: #2B2B2B;
    border-radius: 50px;
    margin: 40px 20px;
}

/* Center content container */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
}

/* Contact title styles */
.contact-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact headline styles */
.contact-headline {
    color: white;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Form styles */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: #A353C2;
    background: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
    min-height: 120px;
    border-radius: 24px;
    resize: vertical;
}

/* Submit button styles */
.contact-submit {
    align-self: center;
    margin-top: 20px;
    border: 0;
}

/* Success message styles */
.success-message {
    display: none;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
        margin: 20px 15px;
    }

    .contact-headline {
        font-size: 28px;
    }

    .form-control {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Update footer styles for desktop */
.footer-section {
    padding: 80px 0;
    margin-top: 60px;
}

/* Update footer container layout */
.footer-section .container {
    max-width: 1200px;
}

/* Update main row layout */
.footer-section .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Update left column styles */
.footer-left {
    width: 40%;
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-about {
    color: #979797;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

/* Update navigation styles */
.footer-nav {
    width: 40%;
}

.footer-menu-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-menu a{
    color: white;
    text-decoration: none;
}

.footer-dropdown a{
    color: black;
}

/* Add styles for bottom content */
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 0px;
}

.copyright {
    color: #979797;
    font-size: 16px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

/* Keep existing mobile styles */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-left, 
    .footer-nav {
        width: 100%;
    }

    /* Center logo */
    .footer-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 80px;
        width: auto;
    }

    /* Center about text */
    .footer-about {
        margin: 0 auto;
        font-size: 14px;
        max-width: 300px;
        text-align: center;
        margin-bottom: 30px;
    }

    /* Update navigation for mobile */
    .footer-nav {
        justify-content: center;
        width: 100%;
    }

    .footer-menu-container {
        width: 100%;
        align-items: center;
        gap: 30px;
    }

    /* Update menu items to be in one row */
    .footer-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 0 15px;
    }

    .footer-item {
        font-size: 13px;
    }

    /* Update dropdown for mobile */
    .footer-dropdown {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        background: white;
        border-radius: 16px;
        padding: 15px;
        margin-top: 10px;
    }

    .footer-dropdown .mega-menu-item {
        margin-bottom: 10px;
        font-size: 13px;
    }

    /* Update bottom content for mobile */
    .footer-bottom-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        padding: 30px 0 0;
    }

    /* Update social icons for mobile */
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-circle {
        width: 36px;
        height: 36px;
    }

    /* Update copyright for mobile */
    .copyright {
        font-size: 13px;
        text-align: center;
    }
}

/* Add styles for contact social section */
.contact-social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.contact-separator {
    width: 140px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-social {
    display: flex;
    gap: 15px;
}

/* Update social circle styles to match header/footer */
.contact-social .social-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-social .social-circle i {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-social .social-circle:hover {
    transform: translateY(-2px);
    background: #150558;
}

.contact-social .social-circle:hover i {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-social-wrapper {
        margin-top: 30px;
        gap: 20px;
    }

    .contact-separator {
        width: 40px;
    }
}

/* Update contact button styles globally */
.contact-button,
.results-cta,
.contact-submit {
    background: white;
    color: #333;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

/* Add hover and active states with gradient */
.contact-button:hover,
.results-cta:hover,
.contact-submit:hover,
.contact-button:active,
.results-cta:active,
.contact-submit:active {
    background: linear-gradient(90deg, #A353C2 0%, #EEC3FF 46%, #A353C2 100%);
    color: white !important;
}

/* Update arrow icon color on hover */
.contact-button:hover .arrow-icon,
.results-cta:hover .arrow-icon,
.contact-submit:hover .arrow-icon {
    filter: brightness(0) invert(1);
    transform: translate(2px, -2px);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .contact-button,
    .results-cta,
    .contact-submit {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Update social circle hover styles in all sections */
.social-circle:hover,
.mobile-social-circle:hover,
.contact-social .social-circle:hover {
    transform: translateY(-2px);
    background: #150558;
}

.social-circle:hover i,
.mobile-social-circle:hover i,
.contact-social .social-circle:hover i {
    color: white;
}

/* Update social circle styles */
.social-circle-wrapper {
    position: relative;
    height: 36px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0 12px;
}

.circle-icon {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.circle-link {
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

/* Hover states */
.social-circle:hover {
    width: 120px;
    background: #150558;
}

.social-circle:hover .circle-icon {
    opacity: 0;
    transform: translateX(-100%);
}

.social-circle:hover .circle-link {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* Click outside handler - add to your JavaScript */
.social-circle.expanded {
    width: 120px;
    background: #150558;
}

.social-circle.expanded .circle-icon {
    opacity: 0;
    transform: translateX(-100%);
}

.social-circle.expanded .circle-link {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .social-circle:hover,
    .social-circle.expanded {
        width: 110px;
    }

    .circle-link {
        font-size: 13px;
    }
}

/* Update social circles container styles */
.social-circles,
.mobile-social-circles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-circles {
    position: absolute;
    left: 40px;
    top: 40%;
    transform: translateY(-50%);
}

.mobile-social-circles {
    position: absolute;
    right: 20px;
    top: 120px;
}

/* Update social circle wrapper and circle styles */
.social-circle-wrapper {
    position: relative;
    height: 36px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0 12px;
}

.circle-icon {
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.circle-link {
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

/* Hover and expanded states */
.social-circle:hover,
.social-circle.expanded {
    width: 120px;
    background: #150558;
}

.social-circle:hover .circle-icon,
.social-circle.expanded .circle-icon {
    opacity: 0;
    transform: translateX(-100%);
}

.social-circle:hover .circle-link,
.social-circle.expanded .circle-link {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .social-circles {
        left: 20px;
        top: auto;
        bottom: 40px;
        transform: none;
        flex-direction: row;
    }

    .mobile-social-circles {
        right: 20px;
        top: 120px;
        flex-direction: column;
    }

    .social-circle:hover,
    .social-circle.expanded {
        width: 110px;
    }

    .circle-link {
        font-size: 13px;
    }
} 