* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark-blue: #0A192F;
    --primary-medium-blue: #172A45;
    --accent-lime-green: #64FFDA;
    --accent-electric-blue: #00FFFF;
    --neutral-light-gray: #F0F2F5;
    --neutral-dark-gray: #6B7280;
    --text-white: #FFFFFF;
    --text-dark: #2D3748;
    --navbar-bg: rgba(0, 0, 0, 0.6);
    --navbar-link-hover: linear-gradient(to right, var(--accent-electric-blue), var(--accent-lime-green));
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--neutral-light-gray); 
    color: var(--text-dark); 
    scroll-behavior: smooth;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: relative;
}

.navbar img {
    height: 55px;
    margin-right: auto;
    cursor: pointer;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ccc; 
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.dropdown {
    position: relative; 
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #111; 
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 100001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); 
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #222;
    color: #00f2fe;
}

/* Contact Button */
.contact-btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent; 
    border-radius: 999px;
    color: var(--text-white);
    background: #000; 
    background-clip: padding-box;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1; 
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(to right, #00f2fe, #9b5de5);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
    transition: all 0.3s ease;
    border: none; 
}

.contact-btn:hover {
    background: linear-gradient(to right, #00f2fe, #4931C1);
    border: none;
    box-shadow: 0 0 5px 5px #0693BB, 0 0 5px 5px #4931C1;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--text-white); 
    cursor: pointer;
    margin-left: 1rem;
}

#menu-toggle {
    display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 10;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .hamburger {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: #111;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.content-container {
  width: 100%;
  padding: 10rem 4rem;
  background-image: url('../assets/Images/about-html.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  box-sizing: border-box;
}
.main-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 50%;
  color: white;
}
.main-heading .highlight {
  background: linear-gradient(90deg, #007CF0, #00DFD8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  max-width: 50%;
  color: #d1d5db;
  font-size: 1.5rem;
}
@media (max-width: 1800px) {
  .content-container {
    padding: 4rem 4rem;
    height: 100vh;
  }
  .main-heading {
    font-size: 2.7rem;
  }
}
@media (max-width: 1024px) {
  .content-container {
    padding: 3rem 2rem;
    height: auto;
  }
  .main-heading,
  .description {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .content-container {
    padding: 2rem 1rem;
    height: auto;
  }
  .main-heading,
  .description {
    max-width: 100%;
    font-size: 2rem;
  }
  .main-heading {
    font-size: 2rem;
  }
  .description {
    font-size: 1rem;
  }
}

.stats-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #0a0a0a;
    padding: 20px;
    color: white;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    min-width: 200px;
    padding: 10px;
    text-align: center;
}

.stat-box img {
    width: 80px;
    height: 80px;
}
.stat-box p {
  font-size: 1.2rem;
}

.rating {
    color: gold;
    font-size: 24px;
    line-height: 1.2;
}

.divider {
    width: 1px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Tablet */
@media (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        padding: 15px;
    }
    .stat-box img {
      width: 50px;
      height: 50px;
    }
    .stat-box p {
    font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .stat-box {
        flex-direction: column;
        gap: 8px;
        width: auto;
        min-width: 80px;
    }
    .stat-box img {
      width: 40px;
      height: 40px;
    }
    .stat-box p {
      font-size: 0.9rem;
    }
}

.brand-section {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}
.brand-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.brand-section p {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .brand-section h1 {
    font-size: 2.5rem;
  }
  .brand-section p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .brand-section {
    padding: 40px 10px;
  }
  .brand-section h1 {
    font-size: 1.5rem;
  }
  .brand-section p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.choose-section {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 60px 200px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.choose-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.choose-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #ddd;
}
.choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 20px;
  background-color: #121212;
  justify-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .choose-section {
    padding: 50px 20px;
  }
  .choose-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 10px;
  }
}
@media (max-width: 900px) {
  .choose-section {
    padding: 40px 10px;
  }
  .choose-cards {
    grid-template-columns: 1fr;
    padding: 25px 5px;
  }
}
@media (max-width: 600px) {
  .choose-section {
    padding: 25px 6vw;
  }
  .choose-section h2 {
    font-size: 1.3rem;
  }
  .choose-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .choose-cards {
    gap: 14px;
    padding: 12px 0;
  }
}

.card {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4; /* Keeps height proportional */
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-5px);
}

.card:hover img {
  transform: scale(1.05);
}

.mission-vision {
  width: 100%;
  background-color: #000;
}
.mission-section {
  background-color: #000;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 70px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.mission-section > * {
  flex: 1 1 0;
}

.mission-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-left img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.mission-left h2 {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

.mission-content {
  line-height: 1.6;
  font-size: 20px;
  color: #ddd;
}

@media (max-width: 1200px) {
  .mission-section {
    padding: 40px 20px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 10px;
  }

  .mission-left {
    width: 100%;
  }
  .mission-left h2 {
    font-size: 28px;
  }
  .mission-content {
    max-width: 100%;
    font-size: 13px;
    color: #ddd;
  }
}

.vision-section {
  display: flex;
  background-color: #000;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.vision-section > * {
  flex: 1 1 0;
}

.vision-content {
  line-height: 1.6;
  font-size: 20px;
  color: #ddd;
}

.vision-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.vision-right img {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
}

.vision-right h2 {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .vision-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }

  .vision-right {
    width: 100%;
    order: -1; /* Move image above the text */
  }
  .vision-right h2 {
    font-size: 28px;
  }
  .vision-content {
    max-width: 100%;
    font-size: 13px;
    color: #ddd;
  }
}

.remarkable-section {
  text-align: center;
  background-color: #121212;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.remarkable-section h2 {
  font-size: 30px;
  background: linear-gradient(90deg, #2f7eff, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.remarkable-section p {
  font-size: 19px;
  color: #ddd;
  margin-bottom: 15px;
}

.remarkable-section button {
  background: linear-gradient(to bottom, #444444, #0e0e0e);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.remarkable-section button:hover {
  background: linear-gradient(to bottom, #0e0e0e, #444444);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .remarkable-section h2 {
    font-size: 24px;
  }
  .remarkable-section p {
    font-size: 17px;
  }
  .remarkable-section button {
    font-size: 16px;
    padding: 9px 18px;
  }
}

@media (max-width: 768px) {
  .remarkable-section {
    padding: 18px 6px;
  }
  .remarkable-section h2 {
    font-size: 20px;
  }
  .remarkable-section p {
    font-size: 15px;
  }
  .remarkable-section button {
    font-size: 15px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .remarkable-section {
    padding: 12px 2px;
  }
  .remarkable-section h2 {
    font-size: 17px;
  }
  .remarkable-section p {
    font-size: 13px;
  }
  .remarkable-section button {
    font-size: 14px;
    padding: 7px 10px;
  }
}

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

.footer-col {
    padding: 0 15px; /* Gutter space between columns */
}

/* --- Column 1: About Section --- */
.footer-col.about {
    flex: 2; /* Takes up more space */
    min-width: 250px;
}

.footer-col .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col .logo svg {
    width: 40px;
    height: auto;
    margin-right: 12px;
}

.footer-col .logo-text {
    font-size: 28px;
    font-weight: 600;
}

.footer-col .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* --- Column 2 & 3: Links and Connect --- */
.footer-col.links,
.footer-col.connect {
    flex: 1; /* Each takes up 1 part of the available space */
    min-width: 200px; /* Increased min-width to better fit the new icons */
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a0a0a0;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* --- Social Icons --- */
.social-links a {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    margin-right: 15px; 
    transition: color 0.3s ease;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    color: #a0a0a0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-col:last-child {
        margin-bottom: 0;
    }
      .footer-col.connect {
        min-width: unset;
    }
}