     /* Anchor tags default to white */
     a {
        color: white;
        text-decoration: none; /* Optional: Remove underline */
    }
    
    /* Anchor tags when clicked (visited) */
    a:visited {
        color: inherit; /* Keeps the color unchanged */
    }
    
    /* Optional: Add a hover effect */
    a:hover {
        color: #ccc; /* Change to desired hover color */
    }
    
    /* Optional: Add active state styling */
    a:active {
        color: #ff5e62; /* Change to desired active color */
    }
    
    /* Hero Section */
    .hero {
        width: 100vw; /* Ensure the hero section spans the full viewport width */
        margin-left: calc(50% - 50vw) !important; /* Center align by adjusting margin */
        height: 100vh; /* Full viewport height */
        position: relative;
        overflow: hidden;
        color: white;
        text-align: center;
        background: url('https://blog.ahuraai.com/wp-content/react-app/HomepageHeroImage-1500.webp') no-repeat center center;
        background-size: cover;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-text {
        position: relative;
        z-index: 2; /* Ensure the text appears above the overlay */
    }

    .hero h1 {
        color: white; /* Set text color to white */
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add a shadow to the text */
        font-weight: bold; /* Optional: make the text bold */
        font-size: 2.5rem; /* Optional: adjust the font size */
        text-align: center; /* Center-align the text */
    }
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
    
    .hero .content {
        position: relative;
        z-index: 1;
    }
    
    /* Trusted By, Tailored Needs Section(s) */
    #trusted-by-and-tailored-needs {
        background: url('https://blog.ahuraai.com/wp-content/uploads/2024/08/left_side_light_bg.png') no-repeat left top, 
                    url('https://blog.ahuraai.com/wp-content/uploads/2024/08/right_side_light_bg.png') no-repeat right top;
        background-size: cover, cover;
    }
    
    #contact-and-experts-section {
        background: url('images/backgrounds/mid_bg.png') no-repeat center center; 
        background-size: cover, cover;
    }
    
    #innovative-approach-andleadership-skills-sections {
        background: url('https://blog.ahuraai.com/wp-content/uploads/2024/08/left_side_light_bg.png') no-repeat left top, 
                    url('https://blog.ahuraai.com/wp-content/uploads/2024/08/right_side_light_bg.png') no-repeat right top;
        background-size: cover, cover;
    }
    
    #footer {
        background: url('https://blog.ahuraai.com/wp-content/uploads/2024/08/bottom_bg.png') no-repeat center center; 
        background-size: cover, cover;
    }
    
    .gradient-border-tailored {
        border-radius: 15px; /* To round the corners */
        position: relative;
        padding: 5px; /* Space for the border */
        /* background: linear-gradient(to bottom right, #FF5E62, #FF9966, #FFD194);
    } */
    
    .gradient-border-tailored .card {
        background: white;
        border-radius: 15px; /* To round the corners */
        padding: 1rem;
        --bs-card-border-color: pink;
    }
    
    .gradient-border-experts {
        position: relative;
        display: inline-block;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .gradient-border-experts::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        /* background: linear-gradient(to bottom right, #FF5E62, #FF9966, #FFD194) !important; */
        /* --bs-card-border-color: pink; */
        z-index: -1;
    }
    
    .gradient-border-experts img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 50%;
    }
    
    .fixed-img-size {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    /* Expert area */
    @media (max-width: 768px) {
        .bryan-text {
            margin-left: 3%;
        }
    }
    
    @media (max-width: 768px) {
        .bryan-text {
            margin-left: 3%;
        }
    }
    
    @media (min-width: 375px) {
        .bryan-text {
            margin-left: 5%;
        }
    }
    
    @media (max-width: 400px) {
        .move-right-mobile {
            margin-left: 2%;
        }
    }
    
    @media (min-width: 400px) {
        .move-right-mobile {
            margin-left: 2%;
        }
    }
    
    /* form area */
    @media (min-width: 992px) {
        .section-padding {
            padding-right: 7%; /* Adjust the padding as needed */
            padding-left: 7%;
        }
    }
    
    @media (min-width: 400px) {
        .section-padding {
            padding-right: 3%; /* Adjust the padding as needed */
            padding-left: 3%;
        }
    }
    
    /* Adjust padding for different screen sizes */
    #trusted-by, #tailored-needs, #contact-and-experts-section {
        padding: 0 100px;
    }
    
    @media (max-width: 1200px) {
        #trusted-by, #tailored-needs {
            padding: 0 50px;
        }
    }
    
    @media (max-width: 768px) {
        #trusted-by, #tailored-needs {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 576px) {
        #trusted-by, #tailored-needs {
            padding: 0 10px;
        }
    }
    
    /* Innovative approach title needs more gap */
    #innovative-approach h2 {
        margin-bottom: 2rem;
    }
    
    /* Assess needs closer to the number */
    #innovative-approach .col-md-5.text-center p {
        margin-top: 0;
    }
    
    /* Leadership skills section adjustments */
    #leadership-skills {
        padding: 0 100px;
    }
    
    #leadership-skills ul li {
        margin-bottom: 1rem;
        padding-left: 1rem;
    }
    
    /* CTA button should be wider, taller, bolder contrast color */
    .btn-primary {
        padding: 1rem 2rem;
        font-weight: bold;
        background-color: #ff5e62;
        border: none;
        border-radius: 50px;
    }
    }
    
      /* Mobile-specific styles: targeting smaller screens */
      @media (max-width: 800px) {
        #trusted-by {
            padding: 0 50px !important;
        }
        #tailored-needs {
            padding: 0 50px !important;
        }
        #contact {
            padding: 0 10px !important;
        }
        #innovative-approach-image {
            padding-top: 4%;
            padding-bottom: 4%;
            padding-top: 10%;
        }
    }
    
    @media (min-width: 300px) and (max-width: 700px) {
        #innovative-approach-image {
            display: none;
        }
    
        #design-curriculum {
            padding-top: 50px;
        }
    
        #bryan-talebi-expert-text {
            width: 60%; 
            padding: 0 20px !important;
        }
    
        #dekai-expert-text {
            width: 60%;
            padding: 0 20px !important;
        }
    
        #leadership-skills-list {
            width: 100%;
            padding: 0 1px !important;
        }
    }
    
    
        /* @media (min-width: 820px ) {
            #innovative-approach-image {
                padding-top: 2%;
            }
        } */
    /* Add padding to the trusted-by section */
    #trusted-by {
        padding: 0 50px;
    }
    
    /* Center content in the leadership-skills section */
    #leadership-skills .text-center,
    #leadership-skills-list,
    #leadership-skills p {
        margin: 0 auto;
        max-width: 800px;
    }
    
    /* Reduce padding for smaller screens */
    @media (max-width: 1200px) {
        #trusted-by {
            padding: 0 30px;
        }
        #leadership-skills,
        #success-stories {
            padding: 0 30px;
        }
    }
    
    @media (max-width: 768px) {
        #trusted-by {
            padding: 0 20px;
        }
        #leadership-skills,
        #success-stories {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 576px) {
        #trusted-by {
            padding: 0 10px;
        }
        #leadership-skills,
        #success-stories {
            padding: 0 10px;
        }
    }
    
    /* Base styles for the cards */
    .card {
        transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
        border-radius: 10px;
    }
    
    /* Hover effect for the cards with gradient shadow */
    .card:hover {
        box-shadow: 
            0 4px 8px rgba(255, 94, 98, 0.3),
            0 6px 12px rgba(255, 153, 102, 0.3),
            0 8px 16px rgba(255, 209, 148, 0.3); /* Add gradient shadow on hover */
    }
        
    p {
        font-weight: normal; /* Set text to non-bold */
    }

    li { font-weight: normal; }

    /* Add margin to each form field to create space between them */
    #contact-form .form-control {
        margin-bottom: 15px;
    }
    
    /* Adjust button styling if needed */
    #contact-form button {
        margin-top: 10px;
    }


    .hero .content {
        z-index: 2;
        color: white;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
    }

    .hero-title .highlight {
        color: #ff3e64; /* match with the pink/red tone from the screenshot */
    }

    .hero-button {
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 1.2rem;
    }

    @media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 10px 20px;
        }
    }

    .small-heading {
        font-size: 1.8rem;
        font-weight: 400;
        color: #333;
    }

    .main-heading {
        font-size: 8vw;
        line-height: 8vw;
        font-weight: 600;
        color: #111;
        margin-top: 20px;
    }

    .main-heading strong {
        font-weight: 800;
    }

    .lead-text {
        font-size: 1.2rem;
        color: #333;
        line-height: 1.8;
        margin-bottom: 50px;
    }

    .cta-button {
        padding: 12px 30px;
        background-color: transparent;
        border: 2px solid #333;
        border-radius: 60px;
        text-decoration: none;
        font-size: 1.2rem;
        color: #333;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #333;
        color: #fff;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .main-heading {
            font-size: 2.5rem;
            line-height: 3rem;
        }
        .lead-text {
            font-size: 1rem;
        }
        .cta-button {
            font-size: 1rem;
            padding: 10px 20px;
            margin-top: 10px;
        }
    }

    .features-section {
        padding: 50px 0;
    }
    
    .features-section .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .features-section .col-lg-6 {
        padding: 15px;
    }

    .features-section img,
    .features-section video {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .features-section p {
        margin-top: 15px;
        font-size: 1rem;
        color: #333;
        line-height: 1.6;
    }
    
    .features-section strong {
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* Ensures video and image stack vertically on the right side */
    .right-side {
        display: flex;
        flex-direction: column;
    }

    /* For mobile responsiveness */
    @media (max-width: 768px) {
        .features-section .row {
            flex-direction: column;
        }
    }