/* 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 {
    position: relative;
    height: 100vh; /* 100% of the viewport height */
    overflow: hidden;
    color: white;
    text-align: center;
    background: url('images/backgrounds/top_bg.png') no-repeat center center;
    background-size: cover;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.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;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Trusted By, Tailored Needs Section(s) */
#trusted-by-and-tailored-needs {
    background: url('images/backgrounds/left_side_light_bg.png') no-repeat left top, 
                url('images/backgrounds/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('images/backgrounds/left_side_light_bg.png') no-repeat left top, 
                url('images/backgrounds/right_side_light_bg.png') no-repeat right top;
    background-size: cover, cover;
}

#footer {
    background: url('images/backgrounds/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 */
}
