.contact {
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C);
    padding: 80px 0;
    margin-top: 20px;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.contact-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #B8B8B8;
}

.read-more {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: white;
    color: #1d3c6b;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #1d3c6b;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1d3c6b;
}

.submit-btn {
    background-color: #FF4B4B;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #FF6B6B;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 30px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        max-width: 100%;
        font-size: 40px;
    }

    .hero-text h2 {
        font-size: 30px;
    }

    .overview-container {
        flex-direction: column;
        padding: 20px;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .description {
        margin-left: 0;
        max-width: 100%;
    }


    .goals {
        margin-left: 0;
        margin-top: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-text, .contact-form {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .section-title {
        margin-left: 0;
        text-align: center;
    }

    .goals h1 {
        font-size: 14px;
    }

    .motive-text h1 {
        font-size: 24px;
    }

    .contact-text h2 {
        font-size: 24px;
    }
}
.nav-link a:hover {
    color: #f0a500;
}

.home-link   {
    margin-left: 10%;
}

.about-link {
    margin-left: auto;
}

.Services-link {
    margin-left: auto;
}
.Contact-link {
    margin-left: auto;
}
/* MENU ICON */
.menu-icon{
    display: none;
    font-size: 24px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-image: url('d1e01598-2ad8-4a92-a1aa-7f56740e9d84.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 600px;
}

.hero-text h1 {
    max-width: 50%;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 60px;
}

.hero-text h2 {
    color: #FF8C00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-text p {
    color: #B8B8B8;
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-text button {
    background-color: #FF8C00;
    color: #1A1A1A;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-text button:hover {
    background-color: #FFA533;
}

.hero-image {
    display: none; /* Hide the original image */
}


.Overview {
    padding-top: 100px; 
    margin-top: -80px; 
    display: flex;
    align-items: flex-start;
    background: #1A1A1A;
}

.sidebar{
    width: 150px;
    
}


.section-title{
    margin-left: 180px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #FF8C00;
}

.h1{
    font-size: 2rem;
    font-weight: 800;
    
}
.highlight{
    color: #FF8C00;
}
.description{
    margin-left: 200px;
    max-width: 800px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 80px;
    color: #B8B8B8;
}

.overview-container {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    
  }

    .solar-image{
        width: 10px;
        flex: 1;
        background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQj3HxP-FvO5Md4ovNSSzI86E5CoYtZgbH98Q&s);
        background-size: cover;
        background-position: center;
    }
    html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #eee;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

    .swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 100px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 10%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
  
    .features {
        display: flex;
        justify-content: space-around;
        padding: 60px 20px;
        background-color: #1A1A1A;
        text-align: center;
      }
      
      .feature {
        flex: 1;
        max-width: 250px;
        margin: 0 15px;
      }
      
      .feature i {
        font-size: 40px;
        color: #FF8C00;
        margin-bottom: 15px;
        display: block;
      }
      
      .feature h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
        color: #B8B8B8;
      }
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    position: relative;
}

.nav-links li a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.nav-links li.active a::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #FF8C00;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: #FF8C00;
    font-weight: 600;
}

.nav-links li.active a::after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FF8C00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}
/* Motive Section */
.motive {
  padding: 80px 0;
  background: #1A1A1A;
}
.motive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.motive-text {
  text-align: left;
}
.motive-text h1 {
  font-size: 32px;
  color: #FF8C00;
  margin-bottom: 20px;
  font-weight: 800;
}
.motive-text p {
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 800;
  color: #ffffff;
}
.motive-txt{
  font-size: 14px;
  color: #B8B8B8;
}
.fade{
  opacity: 0; 
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.fade.visible{
  opacity: 1; 
  transform: translateY(0); 
}

/* team section */
.team {
    padding: 80px 0;
    background: #1A1A1A;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    font-size: 32px;
    color: #FF8C00;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    background: #2C2C2C;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    color: #FF8C00;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #B8B8B8;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 200px;
        height: 200px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .team-member p {
        font-size: 14px;
    }
}
.nav-link a:hover {
    color: #f0a500;
}

.home-link   {
    margin-left: 10%;
}

.about-link {
    margin-left: auto;
}

.Services-link {
    margin-left: auto;
}
.Contact-link {
    margin-left: auto;
}
/* MENU ICON */
.menu-icon{
    display: none;
    font-size: 24px;
}



.Overview {
    padding-top: 100px; 
    margin-top: -80px; 
    display: flex;
    align-items: flex-start;
    background: #1A1A1A;
}

.sidebar{
    width: 150px;
    
}


.section-title{
    margin-left: 180px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #FF8C00;
}

.h1{
    font-size: 2rem;
    font-weight: 800;
    
}
.highlight{
    color: #FF8C00;
}
.description{
    margin-left: 200px;
    max-width: 800px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 80px;
    color: #B8B8B8;
}

.overview-container {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    
  }

  .goals{
    margin-top: 10%;
    margin-left: 20%;
  }
    .solar-image{
        width: 10px;
        flex: 1;
        background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQj3HxP-FvO5Md4ovNSSzI86E5CoYtZgbH98Q&s);
        background-size: cover;
        background-position: center;
    }
    html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #eee;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

    .swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
  
    .features {
        display: flex;
        justify-content: space-around;
        padding: 60px 20px;
        background-color: #1A1A1A;
        text-align: center;
      }
      
      .feature {
        flex: 1;
        max-width: 250px;
        margin: 0 15px;
      }
      
      .feature i {
        font-size: 40px;
        color: #FF8C00;
        margin-bottom: 15px;
        display: block;
      }
      
      .feature h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
        color: #B8B8B8;
      }
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    position: relative;
}

.nav-links li a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.nav-links li.active a::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #FF8C00;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: #FF8C00;
    font-weight: 600;
}

.nav-links li.active a::after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FF8C00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}
    .image-left{
      width: 50%;
      height: auto;
    }

/* Motive Section */
.motive {
  padding: 80px 0;
  background: #1A1A1A;
}
.motive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.motive-text {
  text-align: left;
}
.motive-text h1 {
  font-size: 32px;
  color: #FF8C00;
  margin-bottom: 20px;
  font-weight: 800;
}
.motive-text p {
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 800;
  color: #ffffff;
}
.motive-txt{
  font-size: 14px;
  color: #B8B8B8;
}
.fade{
  opacity: 0; 
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.fade.visible{
  opacity: 1; 
  transform: translateY(0); 
}

/* team section */
.team {
    padding: 80px 0;
    background: #1A1A1A;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    font-size: 32px;
    color: #FF8C00;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    background: #2C2C2C;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    color: #FF8C00;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #B8B8B8;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 200px;
        height: 200px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .team-member p {
        font-size: 14px;
    }
}
.nav-link a:hover {
    color: #f0a500;
}

.home-link   {
    margin-left: 10%;
}

.about-link {
    margin-left: auto;
}

.Services-link {
    margin-left: auto;
}
.Contact-link {
    margin-left: auto;
}
/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-image: url('d1e01598-2ad8-4a92-a1aa-7f56740e9d84.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.Overview {
    padding-top: 100px; 
    margin-top: -80px; 
    display: flex;
    align-items: flex-start;
    background: #1A1A1A;
}

.sidebar{
    width: 150px;
    
}


.section-title{
    margin-left: 180px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #1A1A1A;
}

.h1{
    font-size: 2rem;
    font-weight: 800;
    
}
.highlight{
    color: #FF4B4B;
}
.description{
    margin-left: 200px;
    max-width: 800px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 80px;
    color: #B8B8B8;
}

.overview-container {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    
  }

  .goals{
    margin-top: 10%;
    margin-left: 20%;
  }
    .solar-image{
        width: 10px;
        flex: 1;
        background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQj3HxP-FvO5Md4ovNSSzI86E5CoYtZgbH98Q&s);
        background-size: cover;
        background-position: center;
    }
    html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #333333;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

    .swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    background: #1A1A1A;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2C2C2C;
    border: 2px solid #333333;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #FF8C00;
}

.swiper-pagination-bullet {
    background: #FF8C00 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #FF8C00 !important;
    opacity: 1;
}
  
    .features {
        display: flex;
        justify-content: space-around;
        padding: 60px 20px;
        background-color: #1A1A1A;
        text-align: center;
      }
      
      .feature {
        flex: 1;
        max-width: 250px;
        margin: 0 15px;
      }
      
      .feature i {
        font-size: 40px;
        color: #FF8C00;
        margin-bottom: 15px;
        display: block;
      }
      
      .feature h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
        color: #B8B8B8;
      }

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1d3c6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #333333;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}
    .image-left{
      width: 50%;
      height: auto;
    }


/* Motive Section */
.motive {
  padding: 80px 0;
  background: #1A1A1A;
}
.motive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.motive-text {
  text-align: left;
}
.motive-text h1 {
  font-size: 32px;
  color: #FF8C00;
  margin-bottom: 20px;
  font-weight: 800;
}
.motive-text p {
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 800;
  color: #ffffff;
}
.motive-txt{
  font-size: 14px;
  color: #B8B8B8;
}
.fade{
  opacity: 0; 
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.fade.visible{
  opacity: 1; 
  transform: translateY(0); 
}

/* team section */
.team {
    padding: 80px 0;
    background: #1A1A1A;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    font-size: 32px;
    color: #1A1A1A;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    background: #2C2C2C;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 200px;
        height: 200px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .team-member p {
        font-size: 14px;
    }
}
.nav-link a:hover {
    color: #f0a500;
}

.home-link   {
    margin-left: 10%;
}

.about-link {
    margin-left: auto;
}

.Services-link {
    margin-left: auto;
}
.Contact-link {
    margin-left: auto;
}
/* MENU ICON */
.menu-icon{
    display: none;
    font-size: 24px;
}



.Overview {
    padding-top: 100px; 
    margin-top: -80px; 
    display: flex;
    align-items: flex-start;
    background: #1A1A1A;
}

.sidebar{
    width: 150px;
    
}


.section-title{
    margin-left: 180px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #FF8C00;
}

.h1{
    font-size: 2rem;
    font-weight: 800;
    
}
.highlight{
    color: #FF8C00;
}
.description{
    margin-left: 200px;
    max-width: 800px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 80px;
    color: #B8B8B8;
}

.overview-container {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    
  }

  .goals{
    margin-top: 10%;
    margin-left: 20%;
  }


  
    .features {
        display: flex;
        justify-content: space-around;
        padding: 60px 20px;
        background-color: #1A1A1A;
        text-align: center;
      }
      
      .feature {
        flex: 1;
        max-width: 250px;
        margin: 0 15px;
      }
      
      .feature i {
        font-size: 40px;
        color: #FF8C00;
        margin-bottom: 15px;
        display: block;
      }
      
      .feature h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
        color: #B8B8B8;
      }
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1A1A1A;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF8C00;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    position: relative;
}

.nav-links li a {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8C00;
    transition: width 0.3s ease;
}

.nav-links li.active a::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #FF8C00;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: #FF8C00;
    font-weight: 600;
}

.nav-links li.active a::after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FF8C00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}
    /* Goals Section */
    .goals-container{
      display: flex;
      margin: 0 auto;
      background-color: #2C2C2C;
      
    }
  .goals{
    flex: 1;
    padding-right: 50px;
  }
  .goals h1{
    font-size: 20px;
    color: #eee;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.1px;
  }
  .goals p{
    font-size: 15px;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
.image-left {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.goals-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #2C2C2C;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
}

.goals-container img {
    width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
    object-fit: cover;
}

.goals {
    flex: 1;
    min-width: 0;
}

.goals h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.goals-txt {
    font-size: 1em;
    line-height: 1.5;
    display: inline-block;
}

@media (max-width: 768px) {
    .goals-container {
        flex-direction: column;
    }
    
    .goals-container img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

.sumber-highlight{
  color: #FF8C00;
}



/* Motive Section */
.motive {
  padding: 80px 0;
  background: #1A1A1A;
}
.motive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.motive-text {
  text-align: left;
}
.motive-text h1 {
  font-size: 32px;
  color: #FF8C00;
  margin-bottom: 20px;
  font-weight: 800;
}
.motive-text p {
  font-size: 24px;
  letter-spacing: 0.3px;
  font-weight: 800;
  color: #ffffff;
}
.motive-txt{
  font-size: 14px;
  color: #B8B8B8;
}
.fade{
  opacity: 0; 
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.fade.visible{
  opacity: 1; 
  transform: translateY(0); 
}

/* team section */
.team {
    padding: 80px 0;
    background: #1A1A1A;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-title {
    text-align: center;
    font-size: 32px;
    color: #FF8C00;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    transition: transform 0.3s ease;
    background: #2C2C2C;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    color: #FF8C00;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #B8B8B8;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        width: 200px;
        height: 200px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .team-member p {
        font-size: 14px;
    }
}
.nav-link a:hover {
    color: #f0a500;
}

.home-link   {
    margin-left: 10%;
}

.about-link {
    margin-left: auto;
}

.Services-link {
    margin-left: auto;
}
.Contact-link {
    margin-left: auto;
}
/* MENU ICON */
.menu-icon{
    display: none;
    font-size: 24px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background-image: url('d1e01598-2ad8-4a92-a1aa-7f56740e9d84.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}




.Overview {
    padding-top: 100px; 
    margin-top: -80px; 
    display: flex;
    align-items: flex-start;
    background: #1A1A1A;
}

.sidebar{
    width: 150px;
    
}


.section-title{
    margin-left: 180px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: #FF8C00;
}

.h1{
    font-size: 2rem;
    font-weight: 800;
    
}
.highlight{
    color: #FF8C00;
}
.description{
    margin-left: 200px;
    max-width: 800px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 80px;
    color: #B8B8B8;
}

.overview-container {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    
  }

  .goals{
    margin-top: 10%;
    margin-left: 20%;
  }


  
    .features {
        display: flex;
        justify-content: space-around;
        padding: 60px 20px;
        background-color: #1A1A1A;
        text-align: center;
      }
      
      .feature {
        flex: 1;
        max-width: 250px;
        margin: 0 15px;
      }
      
      .feature i {
        font-size: 40px;
        color: #FF8C00;
        margin-bottom: 15px;
        display: block;
      }
      
      .feature h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: bold;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
        color: #B8B8B8;
      }
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3333;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    position: relative;
}

.nav-links li a {
    color: #eee;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}


.rating {
    margin: 20px 0;
}

.rating p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 25px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
    color: #ffd700;
}

.stars input:checked ~ label {
    color: #ffd700;
}

.video-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.video-container iframe,
.video-container video {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.goals-highlight{
  color: #FF8C00;
}

.arrow-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
  
  .arrow-down {
    width: 40px;
    height: 40px;
    border-right: 4px solid #FF8C00;
    border-bottom: 4px solid #FF8C00;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) rotate(45deg);
    }
    40% {
      transform: translateY(-30px) rotate(45deg);
    }
    60% {
      transform: translateY(-15px) rotate(45deg);
    }
  }
  .arrow-text{
    font-size: 15px;
    color: #FF8C00;
    margin-top: 15px;
    text-align: center;
  }