/* Global Styles */
:root {
    --primary: #003135; /* Dark teal - main theme color */
    --secondary: #024950;
    --accent: #964734;
    --interactive: #0FAAAF;
    --background: #AFDDE5;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--interactive);
    border-radius: 2px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--accent);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--interactive);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navbar Styles */
.navbar {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    background-color: #0FAAAF; /* Fixed teal color for navigation buttons */
    color: var(--white);
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px 15px;
    border-radius: 20px 0 0 20px;
    border: none;
    outline: none;
}

.search-bar button {
    background-color: #0FAAAF; /* Fixed teal color for search button */
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}
.search-container {
  position: relative;
  width: 300px;
}

.search-results {
  position: absolute;
  top: 100%; /* right below search bar */
  left: 0;
  width: 100%;
  background-color: #003f43;
  padding: 5px 0;
  border-radius: 0 0 10px 10px;
  z-index: 10;
  display: none; /* hidden by default */
}

.search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results li {
  padding: 5px 10px;
}

.search-results a {
  text-decoration: none;
  color: white;
}

/* Login Button Styles */
.login-button {
    margin-left: 15px;
}

.login-button .btn {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
    background-color: var(--accent);
    color: var(--white);
    transition: var(--transition);
}

.login-button .btn:hover {
    background-color: var(--interactive);
    transform: translateY(-2px);
}

/* Media query for responsive design */
@media (max-width: 992px) {
    .login-button {
        margin-right: 50px; /* Give space for hamburger menu */
    }
}

@media (max-width: 768px) {
    .login-button {
        display: none; /* Hide on mobile, will be part of mobile menu */
    }
}
.search-results a:hover {
  background-color: #088d90;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 49, 53, 0.5), rgba(0, 49, 53, 0.5)), url('../bg.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--background);
}

/* Stream Cards Section */
.streams {
    padding: 5rem 0;
}

.stream-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stream-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stream-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btech {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.mtech {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.diploma {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.pharmacy, .mba, .bsc {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.card-content {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.explore {
    font-weight: 600;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.stream-card:hover .explore {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--interactive);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.pill-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.pill {
    background-color: var(--interactive);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.testimonial-carousel {
    position: relative;
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.student-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid var(--background);
}

.student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 49, 53, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--background);
    padding: 4rem 0 2rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--interactive);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--background);
    transition: var(--transition);
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--interactive);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--interactive);
    transform: translateY(-3px);
}

.social-icons svg,
.social-icons i {
    color: var(--background);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--background);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stream-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Branch Pages Styles */
.branch-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.branch-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 20px;
    width: 300px;
    min-height: 180px;
    display: inline-block;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.branch-card-header {
    padding: 18px;
    text-align: center;
}

.branch-card-body {
    padding: 20px;
    text-align: center;
}

.branch-card-body p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1.05rem;
}

/* Job Role Page Styles */
.job-role-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.job-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.job-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--interactive);
}

.job-description {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.subjects-list, .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.subject-pill {
    background-color: var(--interactive);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.skill-pill {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.career-path {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.career-step {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.career-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.salary-range {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 1rem;
}

/* About, Contact, Privacy, Terms Pages */
.page-header {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--interactive);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--interactive);
    margin-right: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--interactive);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 170, 175, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--interactive);
}

@media (max-width: 768px) {
    .career-path {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .career-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: auto;
    }
    
    .career-step {
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
    }
}

.google-btn {
    margin-right: 10px;
    color: #DB4437;
}

/* Login Page Logo */
.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo img {
    max-width: 200px; /* Increased max-width for a larger logo */
    height: auto;
}

/* Navbar Styles */
.navbar {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    background-color: #0FAAAF; /* Fixed teal color for navigation buttons */
    color: var(--white);
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px 15px;
    border-radius: 20px 0 0 20px;
    border: none;
    outline: none;
}

.search-bar button {
    background-color: #0FAAAF; /* Fixed teal color for search button */
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}
.search-container {
  position: relative;
  width: 300px;
}

.search-results {
  position: absolute;
  top: 100%; /* right below search bar */
  left: 0;
  width: 100%;
  background-color: #003f43;
  padding: 5px 0;
  border-radius: 0 0 10px 10px;
  z-index: 10;
  display: none; /* hidden by default */
}

.search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results li {
  padding: 5px 10px;
}

.search-results a {
  text-decoration: none;
  color: white;
}

/* Login Button Styles */
.login-button {
    margin-left: 15px;
}

.login-button .btn {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
    background-color: var(--accent);
    color: var(--white);
    transition: var(--transition);
}

.login-button .btn:hover {
    background-color: var(--interactive);
    transform: translateY(-2px);
}

/* Media query for responsive design */
@media (max-width: 992px) {
    .login-button {
        margin-right: 50px; /* Give space for hamburger menu */
    }
}

@media (max-width: 768px) {
    .login-button {
        display: none; /* Hide on mobile, will be part of mobile menu */
    }
}
.search-results a:hover {
  background-color: #088d90;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 49, 53, 0.5), rgba(0, 49, 53, 0.5)), url('../bg.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--background);
}

/* Stream Cards Section */
.streams {
    padding: 5rem 0;
}

.stream-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stream-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stream-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btech {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.mtech {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.diploma {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.pharmacy, .mba, .bsc {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
}

.card-content {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.explore {
    font-weight: 600;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.stream-card:hover .explore {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--interactive);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.pill-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.pill {
    background-color: var(--interactive);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.testimonial-carousel {
    position: relative;
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

.student-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid var(--background);
}

.student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 49, 53, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

/* Footer */
footer {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--background);
    padding: 4rem 0 2rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--interactive);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--background);
    transition: var(--transition);
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--interactive);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--interactive);
    transform: translateY(-3px);
}

.social-icons svg,
.social-icons i {
    color: var(--background);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--background);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stream-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Branch Pages Styles */
.branch-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.branch-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 20px;
    width: 300px;
    min-height: 180px;
    display: inline-block;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.branch-card-header {
    padding: 18px;
    text-align: center;
}

.branch-card-body {
    padding: 20px;
    text-align: center;
}

.branch-card-body p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1.05rem;
}

/* Job Role Page Styles */
.job-role-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.job-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.job-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--interactive);
}

.job-description {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.subjects-list, .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.subject-pill {
    background-color: var(--interactive);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.skill-pill {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.career-path {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.career-step {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.career-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

.salary-range {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 1rem;
}

/* About, Contact, Privacy, Terms Pages */
.page-header {
    background-color: #003135; /* Fixed dark teal color for consistency */
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--interactive);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--interactive);
    margin-right: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--interactive);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 170, 175, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--interactive);
}

@media (max-width: 768px) {
    .career-path {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .career-step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: auto;
    }
    
    .career-step {
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
    }
}