
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: #000;
  font-family: "Inria Serif", serif;
  overflow-y: scroll; 
}
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}


.nav-links a.active {
  color:  #69A3FF;
  position: relative;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; 
  padding: 15px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  
}

.logo img {
  height: 50px;
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color:  #69A3FF;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 240px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  color: #fff;
  font-weight: 500;
  display: block;
}

.dropdown-menu a:hover {
  color:  #69A3FF;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}


.contact-btn {
  background-color:  #69A3FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #3E85FF;
}


.menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.bar {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}


.bar:nth-child(1) {
  transform: translate(-50%, -8px);
}
.bar:nth-child(2) {
  transform: translate(-50%, 0);
}
.bar:nth-child(3) {
  transform: translate(-50%, 8px);
}


.menu-toggle.active .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}


@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.95); 
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 25px 0;
    gap: 25px;
    display: none;
    border-top: 1px solid #111;
  }

  .nav-links.active {
    display: flex;
  }

  
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    background-color: transparent;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 5px;
  }

  .dropdown-menu li {
    padding: 0;
  }


  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  
  .contact-btn {
    background-color: #001aff;
    text-align: center;
    padding: 12px 25px;
  }
}


.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4%;
  overflow: hidden;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(45%) contrast(110%);
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 100px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inria Serif", serif;
}

.hero h1 span {
  color:  #69A3FF;
  text-decoration: none;
}

.hero p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 30px;
}


.hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}


@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}



.about-title h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  margin-left: 60px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.about {
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}


.about-image img {
  width: 100%;
  max-width: 600px;
 
  object-fit: cover;
}
.about-image {
  flex: 1.2;  
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.highlight {
  color:  #69A3FF;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 600px;
  color: #cfcfcf;
}


.btn {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #0059c1;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .about-title h1 {
    font-size: 3rem;
    text-align: center;
    margin-left: 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .about-image img {
    max-width: 100%;
  }
}






.reasons-title {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 50px;
}

.reasons-title h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  text-align: right;
  font-family: 'Inter', sans-serif;
  padding-right: 40px;
  margin-bottom: 0%;
}

.reasons-title p {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e1e1e1;
  color: #262626;
  text-align: right;
  font-family: 'Inter', sans-serif;
  padding-right: 40px;
}


.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  width: 100%;
}

.reason-card {
  min-height: 300px;
  display: flex;
  justify-content: center;

  
}

.text-card {
  background: #0a0e24;
  flex-direction: column;
  text-align: left;
  
}

.text-card h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
   padding: 0 40px;
   
}

.text-card p {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.7;
   padding: 0 40px;
}


.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .reasons-title h1 {
    font-size: 3rem;
    padding-right: 20px;
    text-align: right;
  }

  .reasons-title p {
    font-size: 1.2rem;
    padding-right: 20px;
    text-align: right;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reason-card {
    padding: 20px;
  }

  .text-card h2 {
    font-size: 1.4rem;
  }

  .text-card p {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {
  .reasons-title h1 {
    font-size: 2.5rem;
    padding-right: 0;
    text-align: center;
  }

  .reasons-title p {
    font-size: 1rem;
    padding-right: 0;
    text-align: center;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .reason-card {
    padding: 15px;
    text-align: center;
  }

  .text-card h2 {
    font-size: 1.3rem;
  }

  .text-card p {
    font-size: 0.9rem;
  }
}



.container {
      max-width: 1400px;
      margin: auto;
      padding: 80px 20px;
      text-align: center;
      margin-top: 20px;
    }

    h1 {
      font-size: 7rem;
      color: #262626;
      font-family: 'Inter', sans-serif;
      margin-bottom: 50px;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      padding: 0 40px;
    }

    .card {
      background-color: #0a0a33;
      padding: 30px 20px;
      width: calc(20% - 16px);
      border-radius: 10px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    }

    .card h2 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: white;
    }

    .card h2 span {
      color: #9999ff;
      margin-right: 10px;
      font-weight: bold;
    }

    .card p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #ccc;
    }

   
    @media (max-width: 1200px) {
      .card {
        width: calc(33.333% - 16px);
      }
    }

    @media (max-width: 768px) {
      .card {
        width: calc(50% - 16px);
      }

      h1 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .card {
        width: 100%;
      }
    }






    
    .section-header {
      text-align: left;
      font-size: 7rem;
      font-weight: 800;
      color: #262626;
      font-family: 'Inter', sans-serif;
      padding: 60px 40px 30px;
    }

    .highlight-section {
      display: flex;
      height: 450px;
      width: 100%;
      background-color: #0a0a33;
      flex-wrap: wrap;
    }

    .highlight-text {
      background-color: #0a0a33;
      flex: 1 1 40%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .highlight-text h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .highlight-text h2 span {
      color:  #69A3FF;
    }

    .highlight-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 25px;
    }

    .highlight-text a {
      display: inline-block;
      background-color: #3366ff;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
      width: fit-content;
    }

    .highlight-text a:hover {
      background-color: #0059c1;
    }

    .highlight-image {
      flex: 1 1 50%;
      overflow: hidden;
    }

    .highlight-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    
    @media (max-width: 992px) {
      .highlight-section {
        flex-direction: column;
        height: auto;
      }

      .highlight-text,
      .highlight-image {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
      }

      .highlight-image {
        height: 300px;
      }

      .section-header {
        font-size: 2rem;
      }
    }




    

.growth-section {
  display: flex;
  align-items: center;
  justify-content: center;
   min-height: 100vh;
  
  background-color: #000000;
  margin-top: 40px;

}

.growth-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  max-width: 1200px;
  min-height: 90vh;
  width: 100%;
    margin: 0 !important;
  background: url('Image/man-portrait-with-blue-lights-visual-effects.jpg') no-repeat right center/cover;
  border-radius: 10px;
}



.text-area {
  padding: 60px 40px;
}

.text-area h2 {
  font-size: 3.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  
}

.text-area p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.btn-primary {
  background-color: #f5f5f5;
  color: #000;
}

.btn-primary:hover {
  background-color: #dcdcdc;
}

.btn-outline {
  border: 1px solid #555;
  color: #fff;
}

.btn-outline:hover {
  background-color: #222;
}


@media (max-width: 900px) {
  .growth-content {
    grid-template-columns: 1fr;
    background: url("your-image.jpg") center/cover no-repeat;
  }

  .text-area {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px 25px;
    border-radius: 10px;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
  }
}










.footer {
  background-color: #000000;
  padding: 60px 5%;
  color: #d8d8d8;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 450px;
}

.footer-col {
  width: 200px;
  margin-left: 40px;
}


.footer-col h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}


.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%; 
  height: 2px;
  background-color: #424242;
  border-radius: 2px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li i {
  color: #707070;
  font-size: 1rem;
  min-width: 18px;
  text-align: center;
}

.footer-col ul li a {
  color: #bfc4cf;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #b5b5b5;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    margin-left: 0;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col {
    margin: 0 auto;
    width: auto;
  }

  .footer-col h3 {
    margin-top: 20px;
  }


  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li {
    justify-content: center;
  }

  .footer-about {
    max-width: 100%;
    margin: 0 auto;
  }
}
