/* Base Styles */
:root {
    --primary-color: #40E0D0;
    --secondary-color: #f2f1f3;
    --accent-color: #40E0D0;
    --text-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: #4e0cb2;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}
.logo:hover{
	color: var(--text-color);
}

/* Navigation Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: 0.3s;
	
}
.nav-links a:hover{
	color: #ffffff;
	
}
.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #FFFFFF;
    cursor: pointer;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide menu on small screens */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #4e0cb2;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links.active {
        display: flex; /* Show menu when toggled */
    }
}


/* Hero Section */
.hero {
    padding: 120px 8%;
    background: linear-gradient(135deg, #E6E6FA, #F3F4F8); /* Subtle gradient for a modern, refined look */
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Softer, more professional shadow */
    text-align: left;
    position: relative;
    overflow: hidden;
	
}

.hero-content {
    max-width: 500px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color:#4e0cb2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
	color:#000000;
}

/* Container for buttons */
.button-container {
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-start; /* Align buttons to the left */
    gap: 20px; /* Add some space between the buttons */
    flex-wrap: nowrap; /* Prevent buttons from wrapping to the next line */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any padding */
    width: 100%; /* Ensure the container takes full width */
}

/* Base button styling */
.cta-button, .services-button {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: 0.3s;
    padding: 20px;
    display: inline-block;
    min-width: 150px; /* Prevents buttons from becoming too small */
    text-align: center; /* Center the text inside */
}

/* Styling for the CTA button */
.cta-button {
    background: #4e0cb2;
	color:#FFFFFF;
}

.cta-button:hover {
    background-color: var(--primary-color);
	color:#FFFFFF;
}

/* Styling for the Services button */
.services-button {
    background: var(--primary-color);
	color:#FFFFFF;
}

.services-button:hover {
    background-color: #4e0cb2;
	color:#FFFFFF;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-button, .services-button {
        width: 45%; /* Make each button take up 45% of the container */
        padding: 15px; /* Slightly smaller padding for mobile */
        font-size: 1rem; /* Slightly smaller font size for mobile */
    }
}

@media (max-width: 480px) {
    .cta-button, .services-button {
        width: 45%; /* Keep the buttons at 45% width for very small screens */
        font-size: 0.9rem; /* Further reduce font size */
        padding: 12px; /* Smaller padding for very small screens */
    }
}

/* About Me Section */
#about {
    padding: 120px 8%;
    background: linear-gradient(135deg, #E6E6FA, #F3F4F8); /* Subtle gradient for a modern, refined look */
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Softer, more professional shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* About Content Layout */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Profile Image Styling */
.about-photo {
    flex: 0 0 300px; /* Set fixed size */
    position: relative;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Rounded corners for a softer, modern look */
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Hover Effect for Profile Image */
.about-photo img:hover {
    transform: scale(1.1) rotate(3deg); /* Slight rotation for added style */
    box-shadow: 0 20px 60px rgba(106, 13, 173, 0.25); /* Subtle shadow effect */
}

/* Description Styling */
.about-description {
    max-width: 750px;
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s ease;
}

/* Hover Effect for Text */
.about-description p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.about-description p:hover {
    color: #4e0cb2; /* Soft hover effect for paragraph */
}

/* Consultation Button Styling */
.btn-consultation {
    background: #40E0D0;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.2);
}

/* Button Hover Effect */
.btn-consultation:hover {
    background: #4e0cb2;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(106, 13, 173, 0.3);
	color: #ffffff;
}
/* Small Purple Read More Button */
.btn-read-more {
    background-color: #4e0cb2; /* Purple color */
    color: #ffffff;
    padding: 8px 16px; /* Smaller padding */
    text-decoration: none;
    border-radius: 25px; /* Rounded corners for a soft look */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 6px 12px rgba(106, 13, 173, 0.15);
    cursor: pointer;
    border: none; /* Remove the border */
}

/* Hover Effect for Read More Button */
.btn-read-more:hover {
    background-color: #40E0D0; /* Turquoise color on hover */
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.2); /* Subtle turquoise shadow */
    transform: translateY(-2px); /* Slight lift on hover */
}



/* Smooth Scroll Animation */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #about {
        padding: 80px 5%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-photo img {
        width: 220px;
        height: 220px;
    }

    .about-description {
        font-size: 1rem;
    }

    .btn-consultation {
        width: fit-content;
        margin: 30px auto;
    }
}



/* Sections Common Styles */
section {
    padding: 100px 10%;
    min-height: 100vh;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #4e0cb2 ;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Services Grid */
#services {
    padding: 100px 10%;
    background: #f2f1f3; /* Subtle light background */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 30px;
    justify-content: center;
    align-items: stretch; /* Ensures all items stretch to the same height */
}

/* Service Card Styling */
.service-card {
    background: linear-gradient(135deg, #40E0D0, #4e0cb2); /* Smooth gradient between turquoise and purple */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 350px; /* Consistent card height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Decorative Overlay */
.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.4);
}

/* Service Card Title */
.service-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 15px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

/* Service Card Description */
.service-card p {
    font-size: 1.1rem;
    color: #eeeeee;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
}

/* Service Card Icons */
.service-card i {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}

/* Rotate the icon on hover */
.service-card:hover i {
    transform: scale(1.2) rotate(360deg); /* Icon scales up and rotates */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column layout on smaller screens */
    }
    
    .service-card {
        height: auto; /* Allows height to adjust for mobile */
        padding: 30px;
    }
}


/* 🎨 Portfolio Section */
#portfolio {
    padding: 100px 10%;
    background: #f2f1f3; /* Subtle light background for a clean, modern look */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Soft shadow for a professional look */
    color: #333;
    text-align: center;
}

/* 🔥 Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
    gap: 40px;
    padding-top: 30px;
    justify-content: center;
    align-items: stretch; /* Ensures all items stretch to the same height */
}

/* 🏆 Portfolio Card */
.portfolio-item {
    background: linear-gradient(135deg, #40E0D0, #4e0cb2); /* Turquoise and purple gradient */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow for a floating effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, filter 0.3s ease;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 350px; /* Ensures all portfolio items have equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle white border for a professional touch */
    backdrop-filter: blur(10px); /* Glass-like frosted effect */
}

/* Decorative Overlay */
.portfolio-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.1); /* Light overlay for depth */
    transform: skewX(-20deg); /* Dynamic skew for a unique effect */
    transition: 0.5s;
    filter: blur(5px); /* Glass-like blur effect */
}

/* Hover animation for the overlay */
.portfolio-item:hover::before {
    left: 100%;
    filter: blur(0); /* Clear the blur on hover for the glass effect */
}

/* Unique Hover Effect */
.portfolio-item:hover {
    transform: scale(1.05); /* Slightly scaled up for the hover effect */
    box-shadow: 0px 20px 40px rgba(106, 13, 173, 0.3); /* Larger shadow for hover effect */
    background: linear-gradient(135deg, #4e0cb2, #40E0D0); /* Purple and turquoise gradient on hover */
    border: 2px solid rgba(255, 255, 255, 0.4); /* Lighter border on hover */
    filter: brightness(1.1); /* Slight brightness increase for clarity */
}

/* Portfolio Title */
.portfolio-item h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 15px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    z-index: 2; /* Ensures the title stays above other elements */
}

/* Portfolio Description */
.portfolio-item p {
    font-size: 1.1rem;
    color: #eeeeee;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.9;
    z-index: 2; /* Ensures the description stays above other elements */
}

/* Portfolio Icons */
.portfolio-icon {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.6s ease-in-out, color 0.3s ease;
}

/* Unique Icon Hover Animation */
.portfolio-item:hover .portfolio-icon {
    transform: rotate(-360deg) scale(1.2); /* Icon rotates and scales up on hover */
    color: #ffffff; /* Changes icon color on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
    }
    
    .portfolio-item {
        height: auto; /* Allows height to adjust for mobile */
        padding: 30px;
    }
}


/* Numbers Section */
/* Background for the numbers area */
#numbers {
    padding: 120px 8%;
    background: linear-gradient(135deg, #d8d8f1, #e4e5f1);
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Softer, more professional shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
}
.numbers-background {
    background: #4e0cb2; /* Semi-transparent background */
    backdrop-filter: blur(12px); /* Glass effect */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 50px 10%;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    margin: 50px 0;
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between; /* Even spacing between the cards */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between number cards */
}

/* Number card styles */
.number-card {
    background: #6a34d1; /* Slightly more visible glass effect */
    padding: 10px;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    border: 2px solid rgba(100, 255, 218, 0.2); /* Subtle neon border */
    text-align: center;
    flex: 1; /* Cards take equal width */
    min-width: 180px; /* Ensuring good fit */
    position: relative;
    box-shadow: 0px 5px 20px rgba(106, 13, 173, 0.1); /* Soft shadow for depth */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    color: #fff;
}

/* 🟣 Elegant Hover Effect */
.number-card:hover {
    transform: scale(1.05);
}

/* 🔥 Animated Glow Effect */
.number-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.3) 10%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.number-card:hover::before {
    opacity: 1;
}

/* 💎 Modern Typography */
.numbers-grid .number-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #40E0D0; /* Bright turquoise for contrast */
    text-shadow: 0px 0px 10px rgba(64, 224, 208, 0.6); /* Soft neon glow */
}

/* Plus Sign Styling */
.numbers-grid .number-card span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #40E0D0; /* Royal purple */
    margin-left: 5px;
    text-shadow: 0px 0px 10px rgba(106, 13, 173, 0.6);
}


/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .numbers-grid {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px; /* Space between the cards */
    }

    .number-card {
        min-width: unset; /* Remove minimum width to allow the cards to be smaller */
        width: 100%; /* Full width of the container */
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem; /* Smaller font size for numbers */
    }

    .numbers-grid .number-card span {
        font-size: 2rem; /* Smaller font size for plus sign */
    }
}


/* Mentorship Section */
#mentorship {
    padding: 120px 8%;
    background: linear-gradient(135deg, #E6E6FA, #F3F4F8); /* Subtle gradient for a modern, refined look */
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Softer, more professional shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mentorship-container {
    max-width: 1200px;
    margin: auto;
}

.mentorship-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Mentorship Content Layout */
.mentorship-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Mentorship Image Styling */
.mentorship-image {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.mentorship-image img {
    width: 100%;
    max-height: 250px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.mentorship-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

/* Mission & Impact */
.mentorship-info {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(106, 13, 173, 0.2);
    text-align: center;
    transition: 0.3s ease-in-out;
}

.mentorship-info h3 {
    font-size: 2rem;
    color: #40E0D0; /* Turquoise accent */
    margin-bottom: 10px;
}

.mentorship-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.mentorship-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #4e0cb2;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.mentorship-btn:hover {
    background: #40E0D0;
    transform: scale(1.05);
    color: #FFFFFF;
}

/* Remove underline from all links */
a {
    text-decoration: none;
    color: #4e0cb2; /* Purple theme for links */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Change link color on hover */
a:hover {
    color: #9b66e0; /* Lighter purple when hovered */
}

/* Highlight the founder's name with a distinct color */
.founder-name {
    font-weight: bold;
    color: #4e0cb2; /* Purple color for the founder's name */
}

/* Mentorship Cards Section */
.mentorship-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

/* Title for the cards section */
.mentorship-cards-title {
    font-size: 2rem; /* Adjust the font size */
    font-weight: 700; /* Bold weight for a prominent title */
    color: #4e0cb2; /* Purple color for the title */
    padding-top: 20px; /* Adds top padding to give it space */
    margin-bottom: 20px; /* Space between title and content */
    position: relative; /* Required for the pseudo element */
}

.mentorship-cards-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}


/* Styling for the individual mentorship cards */
.mentorship-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.15); /* Soft shadow */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

/* Ensure all cards have the same height */
.mentorship-cards .mentorship-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mentorship-card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 12px 35px rgba(106, 13, 173, 0.2);
}

.card-title {
    font-size: 1.6rem;
    color: #4e0cb2;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Mentorship card paragraph styling */
.mentorship-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Icon Styling */
.card-icon {
    font-size: 3rem;
    color: #40E0D0;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for icon */
.mentorship-card:hover .card-icon {
    transform: scale(1.2);
    color: #4e0cb2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #mentorship {
        padding: 80px 5%;
    }

    .mentorship-info h3 {
        font-size: 1.8rem;
    }

    .mentorship-subtitle {
        font-size: 1rem;
    }

    .mentorship-card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .mentorship-card p {
        font-size: 0.95rem;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .mentorship-content {
        flex-direction: column;
        align-items: center;
    }

    .mentorship-info, .mentorship-image {
        max-width: 100%;
    }
}


/* 🌟 Awards Section */
#awards {
    padding: 120px 8%;
    background: linear-gradient(135deg, #E6E6FA, #F3F4F8); /* Subtle gradient for a modern, refined look */
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Softer, more professional shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 🎖️ Awards Grid */
.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

/* 🏅 Award Card */
.award-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    text-decoration: none; /* Remove link underline */
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden; /* Prevents content overflow */
}

/* 🏆 Hover Effect */
.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(106, 13, 173, 0.2);
}

/* 🖼️ Award Image */
.award-card img {
    width: 100%;
    max-height: 250px; /* Allows dynamic height */
    object-fit: contain; /* Ensures image maintains its original aspect ratio */
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 🏅 Award Info */
.award-info {
    text-align: center;
    padding: 15px;
}

/* 🏅 Award Title */
.award-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4e0cb2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* 🔗 Award Description */
.award-info p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* ✨ Hover Effect for Award Description */
.award-card:hover .award-info p {
    color: #4e0cb2; /* Change text color on hover */
    font-weight: 600;
    transform: scale(1.05);
}

/* 🛑 Remove Underline for All Links */
.award-card,
.award-card:hover {
    text-decoration: none;
}

/* 📱 Responsive Design */
@media screen and (max-width: 768px) {
    #awards {
        padding: 80px 5%;
    }

    .award-card {
        padding: 20px;
    }

    .award-card img {
        max-height: 200px; /* Adjust image height for mobile */
    }

    .award-info h3 {
        font-size: 1.3rem;
    }

    .award-info p {
        font-size: 0.95rem;
    }
}




/* Testimonials Section */
#testimonials {
    padding: 120px 8%;
    background: linear-gradient(135deg, #E6E6FA, #F3F4F8); /* Soft gradient background for a modern feel */
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1); /* Soft shadow for professional depth */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95); /* Slight transparency for elegance */
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.15); /* Subtle shadow for a lifted effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px); /* Slight lift on hover */
    box-shadow: 0 12px 35px rgba(106, 13, 173, 0.2); /* Stronger shadow on hover */
    background-color: #f9f9f9; /* Slightly darkens background on hover */
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
    text-align: center;
    line-height: 1.7;
    position: relative;
    margin-bottom: 20px;
    padding: 0 15px;
}

.testimonial-quote i {
    color: #4e0cb2;
    font-size: 1.5rem;
    margin: 0 5px;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4e0cb2;
    margin-top: 15px;
}

.stars {
    margin-top: 10px;
    color: #FFD700;
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    #testimonials {
        padding: 80px 5%;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

    .stars {
        font-size: 1.2rem;
    }
}



/* Contact Section Styles */
/* Contact Section */
#contact {
    padding: 80px 10%;
    background-color: #4e0cb2;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: var(--text-color);
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background:#b8a1e7;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Input & Textarea Styling */
.contact-form .input-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #000000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: #ffffff;
    outline: none;
}

/* Placeholder Text */
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #717171;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px;
    background:  #4e0cb2;
    color: #ffffff;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.submit-button:hover {
    background: #2a0267 ;
    transform: translateY(-5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 5%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}

/* Footer Styles */
/* Footer Styling */
#footer {
    background: #4e0cb2; /* Semi-transparent background */
    backdrop-filter: blur(12px); /* Glass effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    padding: 40px 10%;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
	
	
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section (Address, Hours, Phone, Email) */
.footer-left {
    flex: 1;
    padding-right: 20px;
    margin-bottom: 20px;
}

.footer-left p {
    margin: 5px 0;
}

/* Middle Section (Menu) */
.footer-menu {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color: #FFFFFF;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the sections on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust Menu Section */
    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul li {
        margin: 5px 0;
    }

    /* Adjust Social Icons */
    .footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background:#7a5cd9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.chat-btn:hover{
	
	    background: #2a0267;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}