* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #060d1f;
  color: #F0F4F8;
}

section {
  padding: 40px 40px;
  max-width: 1500px;
  margin: auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b1a33;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-div {
  display: flex;
  align-items: center;
}

.logo-pic {
  height: 100px;
  width: auto;
  margin-right: 10px;
}

.logo-link {
  text-decoration: none;  /* removes underline */
  color: inherit;         /* keeps your original text color */
  display: inline-block;  /* ensures div stays clickable */
}

.name {
  font-size: 30px;
  color: #00f7e7;
  font-family: 'Montserrat', sans-serif;
}

/* Nav */
.nav-bar {
  position: relative;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #00C9B1;
  cursor: pointer;
  margin-left: auto;
  margin-top: 10px;
  z-index: 1001;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  padding: 10px;          /* ensures a bigger square area */
  border-radius: 8px;     /* rounded square */
}

.nav-toggle:hover {
  transform: scale(1.1);
  background-color: rgba(0, 201, 177, 0.2); /* glowing square hover */
  color: #00fff7;                          /* brighter icon color */
  box-shadow: 0 0 10px rgba(0, 201, 177, 0.4);
}


/* Default nav hidden on small screens */
.nav-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background-color: #0b1a33;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 20px;
  z-index: 999;
}

.nav-menu.show {
  display: flex;
}

.nav-menu li {
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.nav-menu a {
  color: #00f7e7;
  text-decoration: none;
  padding: 10px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  transition: background 0.3s, color 0.3s;
  display: block;
}

.nav-menu a:hover {
  background-color: #03131f;
  box-shadow: 0 0 20px rgba(0, 201, 177, 0.2);
  border-radius: 5px;
  color: #2df6ff;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: static;
  background-color: #082d3e;
  top: 100%;
  left: 0;
  min-width: 180px;
  border-radius: 4px;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Show dropdown when clicked on mobile */
.dropdown-menu.show-dropdown {
  display: block;
}

/* Hover dropdown only on large screens */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    background-color: #082d3e;
    top: 100%;
    left: 0;
    min-width: 180px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
}

.dropdown-menu li a {
  color: #9efef6;
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #00c9b125;
  color: #00fff7;
  box-shadow: 0 0 10px #00c9b1, 0 0 15px #00e6d4;
}

/* Mobile View Fix */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-bar {
    width: 100%;
  }

  .nav-menu {
    width: 100%;
  }
}

/* Desktop View Fix */
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    width: auto;
    padding: 0;
    background-color: transparent;
  }

  .nav-menu li {
    width: auto;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .dropdown-menu {
    position: absolute;
  }
}

/* Banner */
.banner-div {
  width: 100%;
  max-height: 610px;
  background-color: #060d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-div img {
  width: 100%;
  object-fit: cover;
  max-height: 610px;
}

/* Headings */
.service{
  background-color: #D1D1D1;
  color: #060d1f;
  font-size: 30px;
  text-align: center;
}

.about {
  text-align: center;
  color: #00f7e7;
  margin: 40px 0 15px;
  font-size: 50px;
}

h1, h2, h3 {
  color: #00f7e7;
  font-weight: 700;
}

/* Intro Section */
.container {
  max-width: 1000px; /* adjust to match your other pages */
  margin: 0 auto;    /* centers it */
  padding: 0 20px;   /* small padding on left & right */
}

main h1 {
  font-size: 42px;
  margin: 30px 0 10px 30px;
  text-align: left;
}

.content {
  margin: 0 30px 40px 30px;
  font-size: 20px;
  text-align: left;
  color: #D1D1D1;
}

.DOTS{
  color: #00f7e7;
}

.intro-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  flex-wrap: wrap;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  flex-wrap: wrap;
}

.intro-text, .about-text {
  flex: 1 1 50%;
  color: #00C9B1;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  height: 500px;
}

.intro-image img{
  max-width: 100%;   /* never exceed screen width */
  height: auto;      /* keep aspect ratio */
  display: block;    /* removes inline spacing issues */
  margin: 0 auto;    /* center horizontally */
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-2vh); } /* float up */
  100% { transform: translateY(0); }
}

.logo-animate {
  max-width: 100%;   /* never exceed screen width */
  height: 500px;      /* keep aspect ratio */
  display: block;    /* removes inline spacing issues */
  margin: 0 auto;    /* center horizontally */
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-2vh); } /* float up */
  100% { transform: translateY(0); }
}

/* On smaller screens adjust float distance */
@media (max-width: 768px) {
  @keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-1vh); } /* smaller movement */
    100% { transform: translateY(0); }
  }
}

/* Animations */
.intro-animate {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.intro-animate.show {
  opacity: 1;
  transform: translateX(0);
}

.service-card-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.service-card-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.our-services-heading {
  color: #060d1f;
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  background-color: #00C9B1;
  border-radius: 10px;
}

.our-services {
  padding: 30px;
  width: 100%;
  margin: auto;
  background-color: #D1D1D1;
}

.our-services .heading-component {
  text-align: center;
  color: #0b1a33;
  font-size: 35px;
  margin-bottom: 30px;
  background-color: #00C9B1;
  border-radius: 30px;
  padding: 10px;
}

/* Grid layout → 4 per row */
.our-services .components-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Service card */
.our-services .component-card {
  background: #0b1a33;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: #D1D1D1;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 500px;
}

.our-services .component-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 20px rgba(0, 201, 177, 0.4);
}

/* Card image */
.our-services .component-card img {
  width: 200px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.our-services .component-card:hover img {
  transform: scale(1.1);
}

/* Title */
.our-services .component-card h3 {
  color: #00f7e7;
  margin: 10px 0;
  font-size: 25px;
}

/* ---------------- RESPONSIVE FIX ---------------- */

/* Medium screens (laptops/tablets) */
@media (max-width: 1200px) {
  .our-services .components-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
}

@media (max-width: 1000px) {
  .our-services .components-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 20px;
  }

  .our-services-heading {
    font-size: 32px;
  }

  .our-services .component-card {
    height: auto; /* let height adapt */
    padding: 25px 15px;
  }

  .our-services .component-card img {
    width: 160px;
    height: 220px;
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .our-services .components-grid {
    grid-template-columns: 1fr; /* 1 per row */
    gap: 15px;
  }

  .our-services-heading {
    font-size: 26px;
  }

  .our-services .component-card {
    height: auto;
    padding: 20px 15px;
  }

  .our-services .component-card img {
    width: 130px;
    height: 180px;
  }

  .our-services .component-card h3 {
    font-size: 20px;
  }
}

/* Contact */
#contact {
  background-color: #0b1a33;
  color: #F0F4F8;
  padding: 30px;
  max-width: 1900px;
}

.contact {
  font-size: 24px;
  color: #00e6d4;
  margin-bottom: 15px;
  text-align: center;              /* centers the heading */
  border-bottom: 2px solid #0077B5; /* adds a blue line below */
  display: inline-block;           /* makes the line match the text width */
  padding-bottom: 5px;             /* adds little space between text and line */
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 10px;
}

#follow {
  background-color: #0b1a33;
  color: #F0F4F8;
  padding: 30px;
  max-width: 1900px;
}

.follow {
  font-size: 24px;
  color: #00e6d4;
  text-align: center;              
  border-bottom: 2px solid #0077B5; /* adds a blue line below */
  display: inline-block;          
  padding-bottom: 5px;         
}

.follow-icons {
  display: flex;             /* enables flex layout */
  gap: 13px;                 /* creates space between icons */
  margin-top: 15px;
}

.follow-icons a {
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.follow-icons a:hover {
  transform: scale(1.2);
}

.fa-instagram{
  font-size: 30px;
  background: linear-gradient(45deg, #FCAF45, #F77737, #E1306C, #833AB4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-whatsapp {
  color: #25D366;
  font-size: 28px;
  transition: transform 0.3s;
}

.fa-whatsapp:hover {
  transform: scale(1.1);
}

.fa-x-twitter {
  font-size: 28px;   /* adjust size if needed */
  color: #000;       /* pure black */
  transition: 0.3s;
}

.fa-x-twitter i:hover {
  transform: scale(1.1); /* optional hover effect */
}


/* Buttons */
button, .button {
  background-color: #00C9B1;
  color: #060d1f;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #00e6d4;
}

/* Footer */
footer {
  background-color: #0b1a33;
  color: #F0F4F8;
  text-align: center;
  padding: 15px 30px;
}

/* === Dropdown Toggle for Mobile === */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
    position: static;
    background-color: #082d3e;
    margin-top: 10px;
    padding: 10px 0;
    border-radius: 6px;
    width: 100%;
  }

  .dropdown-menu.show-dropdown {
    display: block;
  }

  .dropdown-menu li a {
    color: #9efef6;
    padding: 10px 20px;
    font-size: 18px;
    display: block;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }

  .dropdown-menu li a:hover {
    background-color: #00c9b125;
    color: #00fff7;
    box-shadow: 0 0 10px #00c9b1, 0 0 15px #00e6d4;
  }
}

@media (max-width: 768px) {
  .banner-div {
    width: 100vw;
    height: auto;
    max-height: unset;
    padding: 0;
    margin: 0;
  }

  .banner-div img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}






