
* {
  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(50%) contrast(120%);
}


.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 700px;
  padding: 3px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inria Serif", serif;
}

.hero p {
  font-size: 1.3rem;
  color: #b3b3b3;
  line-height: 1.3;
  margin-top: 10px;
}
.hero h1 span {
  color:  #69A3FF;
  text-decoration: none;
}


@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}











.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: #1a73e8;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 600px;
  color: #cfcfcf;
}


@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%;
  }
}









.why-choose {
  text-align: center;
  padding: 60px 20px;
}

.why-choose h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  margin-bottom: 50px;
  font-family: 'Inter', sans-serif;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}


.card {
  background-color: #000;
  border: 1px solid #262626;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 71, 255, 0.3);
}


.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(29%) sepia(96%) 
          saturate(7487%) hue-rotate(228deg) brightness(102%) contrast(101%);
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.card p {
  font-size: 0.95rem;
  color: #a2a2a2;
  line-height: 1.5;
}



@media (min-width: 1200px) {
  .why-choose h1 {
    font-size: 6rem;
  }
}


@media (max-width: 991px) {
  .why-choose h1 {
    font-size: 4rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    padding: 25px;
  }
}


@media (max-width: 600px) {
  .why-choose {
    padding: 40px 15px;
  }

  .why-choose h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card {
    padding: 20px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .card h2 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}







.building-futures {
  text-align: center;
  padding: 60px 20px;
  background: #000;
}

.building-futures h1 {
  font-size: 7rem; 
  font-weight: 800;
  color: #262626;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  padding-left: 50px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 350px; 
}


.box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}


.text-box {
  background: #e5e5e5;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 400px;
}

.text-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.text-content p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}


.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}


@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr; 
    grid-auto-rows: auto; 
  }

  .text-box, .image-box {
    height: auto; 
  }

  .building-futures h1 {
    font-size: 3rem;
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .building-futures h1 {
    font-size: 2.5rem;
    padding-left: 10px;
  }

  .text-box {
    padding: 20px;
  }
}








.container {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  gap: 50px;
  padding-top: 100px;
}

.left-section {
  flex: 1;
  max-width: 600px;
}

.left-section h1 {
  font-size: 7rem; 
  font-weight: 800;
  color: #262626;
 
  font-family: 'Inter', sans-serif;
  position: relative;
}

.left-section h2 {
  font-size: 24px;
  margin: 20px 0 10px;
  font-weight: normal;
  color: #fff;
}

.highlight {
  color: #3a82f7;
}

.left-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #aaa;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.impact-box {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #ccc;
  border: 1px solid #222;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-section img {
  max-width: 100%;
  
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 40px 30px;
  }

  .left-section h1 {
    font-size: 4.5rem;
  }

  .left-section h2 {
    font-size: 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .right-section {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  .left-section h1 {
    font-size: 3.5rem;
  }

  .left-section h2 {
    font-size: 18px;
  }

  .left-section p {
    font-size: 14px;
  }

  .impact-box {
    font-size: 13px;
    padding: 16px;
  }

  .right-section img {
    width: 100%;
    height: auto;
  }
}









.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;
  }
}
