/* Global Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
 }
 
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }
 
 body {
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.6;
    padding-top: 80px; 
 }
 
 .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
 }
 
 section {
    padding: 80px 0;
 }
 
 h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
 }
 
 h1 {
    font-size: 3rem;
 }
 
 h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
 }
 
 h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
 }
 
 h3 {
    font-size: 1.8rem;
 }
 
 p {
    margin-bottom: 1.5rem;
    color: var(--gray);
 }
 
 a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
 }
 
 a:hover {
    color: #ffffff;
 }
 
 .btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
 }
 
 .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(82, 161, 213, 0.1);
 }
 
 .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
 }
 
 .btn-outline:hover {
    background: var(--primary);
    color: white;
 }
 
 .text-center {
    text-align: center;
 }
 
 .text-primary {
    color: var(--primary);
 }
 
 .bg-light {
    background-color: var(--light);
 }
 
 .bg-dark {
    background-color: var(--dark);
    color: white;
 }
 
 .bg-dark p {
    color: #cbd5e1;
 }

 

 /* Header Styles */
header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background: white;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

header.scrolled {
   padding: 10px 0;
}

.header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
}

.logo {
   display: flex;
   align-items: center;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary);
}

.logo img {
   height: 30px;
   margin-right: 10px;
}

.nav-links {
   display: flex;
   list-style: none;
}

.nav-links li {
   margin-left: 30px;
}

.nav-links a {
   color: var(--dark);
   font-weight: 600;
}

.nav-links a:hover {
   color: var(--primary);
}

.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: var(--dark);
}

/* Hero Section */
.hero {
   height: 400px;
   display: flex;
   align-items: center;
   background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
               url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
   text-align: center;
}

.hero-content {
   max-width: 800px;
   margin: 0 auto;
}

.hero h1 {
   font-size: 4rem;
   margin-bottom: 1.5rem;
   line-height: 1.1;
}

.hero p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}

.hero-btns {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 2rem;
}

.hero-btns .btn {
   padding: 12px 24px;
   background: var(--secondary);
   color: white;
   border-radius: 4px;
}

.hero-btns .btn-outline {
   background: transparent;
   border: 2px solid var(--secondary);
   color: var(--secondary);
}

@media (max-width: 992px) {
   .hero h1 {
       font-size: 3rem;
   }
   
   h2 {
       font-size: 2rem;
   }

   .about-content,
   .contact-container {
       grid-template-columns: 1fr;
   }

   .about-img {
       order: -1;
   }
}

@media (max-width: 768px) {
   .nav-links {
       position: fixed;
       top: 80px;
       left: -100%;
       width: 100%;
       height: calc(100vh - 80px);
       background: white;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       transition: all 0.5s ease;
   }
   
   .nav-links.active {
       left: 0;
   }
   
   .nav-links li {
       margin: 15px 0;
   }
   
   .mobile-menu-btn {
       display: block;
   }
   
   .hero h1 {
       font-size: 3rem;
   }
   
   .hero-btns {
       flex-direction: column;
       align-items: center;
   }
}


/* About Section */
.about-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
}

.about-img {
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
   width: 100%;
   height: auto;
   display: block;
}

/* Services Section */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   margin-top: 50px;
}

.service-card {
   background: white;
   border-radius: 8px;
   padding: 30px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.service-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
   font-size: 2.5rem;
   color: var(--primary);
   margin-bottom: 20px;
}

.service-card h3 {
   margin-bottom: 15px;
}

/* Courses Section */
.courses-tabs {
   display: flex;
   justify-content: center;
   margin-bottom: 40px;
   flex-wrap: wrap;
}

.tab-btn {
   padding: 10px 20px;
   background: none;
   border: none;
   border-bottom: 3px solid transparent;
   font-weight: 600;
   color: var(--gray);
   cursor: pointer;
   transition: all 0.3s ease;
}

.tab-btn.active {
   color: var(--primary);
   border-bottom: 3px solid var(--primary);
}

.tab-content {
   display: none;
}

.tab-content.active {
   display: block;
}

.course-list {
   columns: 2;
   column-gap: 30px;
}

.course-list li {
   margin-bottom: 15px;
   break-inside: avoid;
}

/* Why Choose Us Section */
.features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}

.feature-card {
   background: white;
   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   text-align: center;
}

.feature-icon {
   font-size: 2.5rem;
   color: var(--primary);
   margin-bottom: 20px;
}

/* Team Section */
.team-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.team-card {
   background: white;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img {
   width: 100%;
   height: 250px;
   object-fit: cover;
}

.team-info {
   padding: 20px;
}

.team-skills {
   margin-top: 15px;
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
}

.skill-tag {
   background-color: #e0e7ff;
   color: var(--primary-dark);
   padding: 4px 10px;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 600;
}

/* Contact Section */
.contact-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
}

.contact-info h3 {
   margin-bottom: 20px;
}

.contact-details {
   margin-bottom: 30px;
}

.contact-item {
   display: flex;
   align-items: center;
   margin-bottom: 15px;
}

.contact-icon {
   margin-right: 15px;
   color: var(--primary);
   font-size: 1.2rem;
}

.social-links {
   display: flex;
   gap: 15px;
}

.social-link {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   background: var(--primary);
   color: white;
   border-radius: 50%;
   transition: all 0.3s ease;
}

.social-link:hover {
   background: var(--primary-dark);
   transform: translateY(-3px);
}

.contact-form .form-group {
   margin-bottom: 20px;
}

.contact-form label {
   display: block;
   margin-bottom: 5px;
   font-weight: 600;
}

.contact-form input,
.contact-form textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid #ddd;
   border-radius: 4px;
   font-size: 1rem;
}

.contact-form textarea {
   height: 150px;
   resize: vertical;
}

/* Footer */
footer {
   background: var(--dark);
   color: white;
   padding: 50px 0 20px;
}

.footer-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   margin-bottom: 40px;
}

.footer-col h3 {
   color: white;
   margin-bottom: 20px;
   font-size: 1.2rem;
}

.footer-links {
   list-style: none;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
   color: #cbd5e1;
}

.footer-links a:hover {
   color: white;
}

.copyright {
   text-align: center;
   padding-top: 20px;
   border-top: 1px solid #334155;
   color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 992px) {
   h1 {
       font-size: 2.5rem;
   }
   
   h2 {
       font-size: 2rem;
   }
   
   .about-content,
   .contact-container {
       grid-template-columns: 1fr;
   }
   
   .about-img {
       order: -1;
   }
}

@media (max-width: 768px) {
   .nav-links {
       position: fixed;
       top: 80px;
       left: -100%;
       width: 100%;
       height: calc(100vh - 80px);
       background: white;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       transition: all 0.5s ease;
   }
   
   .nav-links.active {
       left: 0;
   }
   
   .nav-links li {
       margin: 15px 0;
   }
   
   .mobile-menu-btn {
       display: block;
   }
   
   .hero h1 {
       font-size: 3rem;
   }
   
   .hero-btns {
       flex-direction: column;
       align-items: center;
   }
   
   .course-list {
       columns: 1;
   }
}

@media (max-width: 576px) {
   section {
       padding: 60px 0;
   }
   
   .hero h1 {
       font-size: 2.5rem;
   }
   
   .hero p {
       font-size: 1rem;
   }
}
:root {
    --primary: #00796b; /* Deep teal */
    --primary-dark: #004d40; /* Darker teal for hover */
    --secondary: #ff7043; /* Coral for accents */
    --secondary-light: #ffccbc; /* Light coral for soft hover effects */
    --background: #f4f4f4; /* Light gray background */
    --text-color: #333; /* Dark gray text for contrast */
    --text-light: #fff; /* White text for readability */
    --highlight: #ffb74d; /* Light amber for hover highlights */
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 121, 107, 0.9), rgba(0, 77, 64, 0.9));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
   
}

header.scrolled {
    padding: 10px 0;
    background: var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    
}

.logo img {
    height: 120px;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 120px;
    position: relative;
    
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 4px 2px;
    border-radius: 10px;
}

.nav-links a:hover {
    color: var(--highlight);
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-links li:hover::after {
    background-color: var(--highlight);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--highlight);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(1,#E07B62)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    text-align: center;
    padding: 0 20px;
}

/* .hero-content {
    max-width: 800px;
    color: var(--text-light);
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
} */

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-light);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.hero-btns .btn {
    padding: 12px 28px;
    font-size: 1.2rem;
    border-radius: 25px;
    background: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btns .btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.hero-btns .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.hero-btns .btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 20px 20px;
    }

    .logo img {
        height: 60px;
    }

    .nav-links li {
        margin-left: 2px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
    position: fixed;
    top: 124px; /* Below header */
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0d1b2a; /* Dark navy or your header bg */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
}

    .nav-links.active {
    left: 0;
}

.nav-links li {
    margin: 15px 0;
}

.mobile-menu-btn {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
}

:root {
  --primary: #1f2f46;
  --secondary: #fdf8f3;
  --accent: #ff6b35;
  --text: #1e1e1e;
  --white: #ffffff;
}

/* Header */
header {
  background: var(--primary);
  color: var(--white);

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  padding: 1px 1px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: var(--accent);
  color: var(--white);
}

.nav-links li a {
    padding: 10px 16px; /* Reduce top and bottom padding */
    line-height: 1;      /* Optional: keeps the height tight */
}

.header {
    padding: 6px 0;     /* Reduce top and bottom padding */
    height: auto;       /* Ensure it adapts naturally */
}
.nav-links {
    margin: 0;
}
.nav-links li {
    margin: 0;
}




/* Hero Section */
.hero {
  background-color: var(--secondary);
  padding-top: 120px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 12px 28px;
  font-size: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hero .btn:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* Section Backgrounds */
section {
    padding: 60px 0;
}

section.bg-light {
    background-color: #f9f9f9;
}

/* Card Styling */
.service-card, .feature-card, .team-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: #1f2f46;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #1f2f46;
    transform: scale(1.05);
}

/* Skill Tag Styling */
.skill-tag {
    display: inline-block;
    background-color: #1f2f46;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
}

/* Tab Buttons */
.tab-btn {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #ffffff;
    border: 2px solid #1f2f46;
    color: #000000;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #1f2f46;
    color: white;
}

/* Course List Items */
.course-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.bg-light {
        background-color: #f8f9fa;
        padding: 60px 0;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    .service-card {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .service-card ul {
        padding-left: 18px;
        font-size: 14px;
    }
    .service-card ul li {
        margin-bottom: 6px;
    }
    
   .skill-tagg{
    font-family: 8px;
    display: inline-block;
    background-color: #1f2f46;
    color: #ffffff;
    padding: 1px 12px;
    border-radius: 20px;
    margin: 5px;
    font-weight: 500;
   } 
    .btnn{
        color: rgb(255, 255, 255);
        background-color: rgb(120, 122, 122);
        border-color:  transparent;
 
 border-width: 15px;
 position: absolute;
 border-radius: 8px;
    }


    .card {
    background: linear-gradient(135deg, #1f2937, #111827); /* Dynamic dark gradient */
    color: #fff;
    border-radius: 30px; /* More pronounced oval effect */
    padding: 40px 30px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); /* Stronger depth */
    backdrop-filter: blur(10px); /* Adds modern frosted glass feel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02); /* Slight zoom on hover for interactivity */
}  
.spann{


    color: #F7941D;
}

#heee{
    font-size: 28px;
}
#heeee{
    font-size: 24px;
}

#peee{
    font-size: 18px;
}


.spp{

color: #00A6A6;

}
#looo {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 64px;
    width: 197px;
}



@media (max-width: 600px) {
    #looo {
        max-width: 160px;
    }
}


/* Extra-Large Screens (4K and large monitors) */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 14px 32px;
    }
}

/* Medium Phones and Below (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn, .btn-outline {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 15px;
}

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
    .card {
        padding: 20px;
        margin: 0 15px;
    }
    .hero-content {
        padding: 10px;
    }
    }

    .team-grid, .features-grid, .services-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.nav-links a.active {
  color: var(--highlight); /* or whatever color you want */
  border-bottom: 2px solid var(--highlight); /* optional underline */
}
@media (min-width: 769px) {
  .nav-links {
    position: static;
    height: auto;
    flex-direction: row;
    background: transparent;
    justify-content: flex-end;
    align-items: center;
    left: auto;
  }

  .nav-links li {
    margin: 0 15px;
  }

  .mobile-menu-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}






