:root {
    --orange: #ffc107;
	/*  --orange: #F5A623; */
    --blue: #1E3A8A;
    --light-purple: #E6E6FA;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #D3D3D3;
    --magenta: #C71585;
   /* --yellow: #FFD700; */
	--yellow:#ffc107;
    --button-blue: #007BFF;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
}

nav.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav.desktop-nav.scrolled {
    background: var(--blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px 0;
}

nav.desktop-nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav.desktop-nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
}

nav.desktop-nav.scrolled ul li a {
    color: var(--white);
}

nav.desktop-nav ul li a.active {
    color: var(--orange);
}



.flashlight-icon img {
    height: 30px; 
    transition: all 0.3s ease; /* Smooth transition for icon change */
}

.flashlight-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-size: 15px;
    font-weight: bold;
    margin-top: 1px;
    color: var(--black);
    font-family: 'Poppins', sans-serif; 	
	text-transform: uppercase;
}

.content-section,
.services-section {
    min-height: 100vh; /* Added to balance section heights */
}

.content-section {
    padding: 50px 0;
    background: var(--light-purple);
}

.content-section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-visual {
    width: 100%;
    margin-bottom: 0px;
    position: relative;
}

.main-visual img {
    width: 100%;
    height: auto;
}

.career-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.career-buttons.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes burstOut {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }
    100% {
        top: var(--final-top);
        left: var(--final-left);
        transform: translate(0, 0);
        opacity: 1;
    }
}

.career-button {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue);
    font-weight: bold;
    font-size: 8px;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: burstOut 1s ease forwards;
    animation-delay: calc(0.05s * var(--order));
}

.career-button:hover {
    box-shadow: 0 0 10px var(--orange);
    background: var(--orange);
    color: var(--white);
}

.career-button.mobile-hidden {
    display: block;
}

.content-description {
    text-align: center;
    max-width: 800px;
	
}

.content-description h1 {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 20px;
	
		
        
}

.content-description p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 30px;
}

a.cta-button {
    text-decoration: none;
    background: var(--orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
}

nav.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    padding: 20px;
}

nav.mobile-nav.scrolled {
    background: var(--blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px 20px;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -80%; /* Start off-screen to the right */
    width: 80%; /* Reduced to 80% screen width */
    height: 100vh;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 200;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-menu-container ul {
    list-style: none;
    padding: 0;
}

.mobile-menu-container ul li {
    margin: 20px 0;
}

.mobile-menu-container ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
}

.mobile-menu-container ul li a.active {
    color: var(--orange);
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}
/*--------------------------------------- Start Services Section-------------------------------------- */
.services-section {
    padding: 100px 0 30px 0; /* 120px top padding to account for nav bar + border spacing */
    background: var(--light-purple);
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative; /* For the pseudo-element */
}
.services-section:before {
    content: '';
    position: absolute;
    top: 70px; /* 90px (nav bar height) + 20px (gap below nav) */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray);
}
.services-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Handles smaller screens better */
}

.services-badge {
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, var(--blue), var(--button-blue));
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.services-badge:hover {
    transform: scale(1.05);
}

.services-subtitle {
    font-size: 18px;
    color: var(--black);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    width: 48%;
    position: relative;
    min-height: 200px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.badge {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: bold;
    display: inline;
    margin-bottom: 12px;
    font-size: 14px;
    position: relative;
}

.badge.magenta {
    background: var(--blue);
    color: white;
}

.badge.yellow {
    background: var(--yellow);
    color: black;
    min-width: 100px;
    margin-left: -16px;
}

.services-cards .icon {
    position: absolute;
    width: 30%;
    height: 60%;
}

.education-torch .icon.graduation-cap {
    top: 20px;
    right: 20px;
}

.job-torch .icon.person-briefcase {
    top: 20px;
    right: 20px;
}

.explore-section {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 25px;
}

.explore-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    position: relative;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}



.explore-button::before {

    content: '➤'; /* heavier and more elegant arrow */

    color: white;

    font-size: 24px; /* slightly larger for emphasis */

    font-weight: 900; /* extra bold */

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%) rotate(-45deg); /* diagonal */

}





.explore-text {

    color: var(--black);

    font-size: 16px;

    font-weight: 500;

}
/*--------------------------------------- End Services Section-------------------------------------- */

/*---------------------------------------Start Feedback Section-------------------------------------- */
.feedback-section {
    padding: 100px 0 30px 0; /* 120px top padding to account for nav bar + border spacing */
    background: var(--light-purple);
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative; /* For the pseudo-element */
}

.feedback-section:before {
    content: '';
    position: absolute;
    top: 70px; /* 90px (nav bar height) + 20px (gap below nav) */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Handles smaller screens better */
}
.feedback-badge {
    background: linear-gradient(45deg, var(--blue), var(--button-blue));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.feedback-badge:hover {
    transform: scale(1.05);
}

.feedback-subtitle {
    font-size: 18px;
    color: var(--black);
}

.feedback-content {
    position: relative;
    padding-right: 40px; /* Add padding to prevent overflow */
}

.feedback-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
	transition: transform 0.5s ease; /* Smooth sliding transition */
}



.feedback-card {
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 30px;
    padding: 20px;
    width: 30%;
    min-width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}



.feedback-card:hover {
    transform: translateY(-5px);
}

.feedback-user-info {
    display: flex;
    align-items: center;
    gap: 30px; /* Wider gap to avoid overlap */
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.user-text {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent text from shrinking */
    flex: 1;
}

.feedback-card .icon.user-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.feedback-card h3 {
    font-size: 18px;
    color: var(--black);
    margin: 0;
    word-break: break-word;
}

.feedback-card .feedback-label {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    word-break: break-word;
}

.feedback-divider {
    border: none;
    border-top: 1px solid var(--gray);
    margin: 10px 0;
}

.feedback-card .feedback-text {
    font-size: 16px;
    color: var(--black);
    text-align: left;
}

.feedback-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: var(--blue);
}

.next-button {
    position: absolute;
    right: 10px; /* Positioned inside padding area */
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.next-button:hover {
    background: var(--blue);
	
}







/* ---------------------------------End of Feedback Section------------ */

/* ---------------------------------Start of About Us and Contact Wrapper ------------ */
.about-us-container {
    background: var(--light-purple); /* Apply light-purple background to entire section */
}

/* ---------------------------------Start of About Us Section------------ */
.about-section {
    padding: 100px 0 10px 0; /* Keep minimal bottom padding */
    min-height: auto; /* Fit content */
    overflow-x: hidden;
    position: relative;
    color: var(--white); /* Keep as provided */
}

.about-section:before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about-badge {
    background: linear-gradient(45deg, var(--blue), var(--button-blue));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-subtitle {
    font-size: 18px;
    color: var(--black);
}

.about-content {
    display: flex;
    background: #666666;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    align-items: center;
}

.about-text {
    flex: 1;
    animation: fadeIn 1s ease forwards;
}

.about-text h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

.about-image {
    flex: 0 0 auto;
    animation: fadeIn 1s ease 0.2s forwards;
}

.about-image .team-icon {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

/* ---------------------------------End of About Us Section------------ */

/* ---------------------------------Start of Contact Section------------ */
.contact-section {
    background: var(--white); /* Match about-content for consistency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 20px 20px 0; /* Minimal gap, match wrapper padding */
}

.contact-section:hover {
    transform: translateY(-5px);
}

.contact-section h2 {
    font-size: 24px;
    color: var(--yellow);
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--black); /* Match about-text for consistency */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}


/* ---------------------------------End of Contact Section------------ */

/* ---------------------------------Start of Social Media Section------------ */
.social-cta {
    font-size: 18px;
    color: var(--black); /* Match about-text for consistency */
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    animation: fadeIn 1s ease;
}

.social-media {
    display: flex;
    animation: pulse 2s infinite ease-in-out;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.2);
    filter: invert(89%) sepia(49%) saturate(644%) brightness(104%) contrast(96%); /* Yellow #FFD700 */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ---------------------------------End of Social Media Section------------ */

/* ---------------------------------End of About Us Section------------ */

/* ---------------------------------start of Footer Section------------ */



.site-footer {
    background: var(--light-purple);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: var(--black);
    border-top: 1px solid var(--gray);
}




/* ---------------------------------End of of Footer Section------------ */




/* Responsive */

@media (max-width: 800px) {

    nav.desktop-nav {

        display: none;

    }

    nav.mobile-nav {

        display: flex;

        justify-content: space-between;

        align-items: center;

    }


    .content-section {

        padding: 50px 0;

    }

    .content-description h1 {

        font-size: 36px;
		
		/*if we want to wrap around our text*/
		
		max-width: 300px; 
		margin: 0 auto;
        text-align: center; 
		

    }


    .content-description p {

        font-size: 14px;

    }

    .cta-button {

        font-size: 16px;

        padding: 10px 20px;

    }

    .career-button {

        width: 20px;

        height: 20px;

        font-size: 6px;

        line-height: 20px;

    }
	
	
	
/*---------------------------------------Media Start Services Section-------------------------------------- */
 .services-cards {

        flex-direction: column;
        align-items: center;
    }
    .service-card {

        width: 100%;
        margin-bottom: 20px;
    }

.services-cards .icon {

        width: 30%;
        height: 60%;

    }
	
	
/*---------------------------------------Media End Services Section-------------------------------------- */
	
/*---------------------------------------Media Start Feedback Section-------------------------------------- */
  .carousel-container {
        position: relative;
    }

    .feedback-cards {
        flex-direction: row; /* Keep row for sliding */
        width: 300%; /* 3 cards, each taking full width */
        transform: translateX(0); /* Start at first card */
    }

    .feedback-card {
        width: 100%; /* Each card takes full width */
        min-width: auto;
        margin-bottom: 0; /* Remove vertical spacing */
        flex: 0 0 33.33%; /* Each card is 1/3 of container width */
        display: none; /* Hide all cards by default */
    }

    .feedback-card.active {
        display: block; /* Show only active card */
    }

    .feedback-card .icon.user-icon {
        width: 40px;
        height: 40px;
    }

    .next-button {
        margin-top: 20px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .feedback-dots {
        margin-top: 10px;
        text-align: center;
    }


/*---------------------------------------Media End Feedback Section-------------------------------------- */


/*---------------------------------------Media start of About Us Section-------------------------------------- */
/*
 .about-section {
        padding: 50px 0 10px 0;
    }
*/
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image .team-icon {
        width: 200px;
        height: 200px;
    }

    .contact-section {
        margin: 10px 10px 0; /* Smaller gap on mobile */
        padding: 20px;
    }

    .social-cta {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto 10px;
    }

    .social-media img {
        width: 32px;
        height: 32px;
		
	}	



/*---------------------------------------Media End of About Us Section-------------------------------------- */








}