* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: rgb(12, 93, 104);
  z-index: 1000;
}

.header a {
  text-decoration: none;
  color: white;
  margin-right: 30px;
  font-size: 12px;
  font-weight: bold;
}

header a:hover {
  color: #fd8d08;
}
.logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
}

.nav-links a {
  padding: 10px;
}

.menu-icon {
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding-top: 20px;
  margin-top: 60px;
  opacity: 0.89;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin: 15px 0;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #f39c12;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.mobile-menu.open ~ .menu-icon {
  display: none;
}
.mobile-menu.open {
  transform: translateX(0);
}

body.no-scroll {
  overflow: hidden;
}

.nav-links a.active,
.mobile-menu a.active {
  color: #fd8d08;
  font-weight: bold;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background: url("./images/banner.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.banner h1 span {
  font-weight: normal;
  color: #ccc;
}

.banner p {
  padding-top: 30px;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #ccc;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.primary {
  background: #fd8d08;
  color: white;
  border: none;
}

.primary:hover {
  background: darkred;
}

.secondary {
  color: white;
  border: 2px solid white;
  background: transparent;
}

.secondary:hover {
  background: white;
  color: black;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-between;
  background: white;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  margin: -50px auto 50px;
  padding: 10px;
  width: 80%;
  border-radius: 8px;
  position: relative;
}

.feature-box {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.feature-box i {
  font-size: 40px;
  color: #fd8d08;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 16px;
  font-weight: bold;
}
/* About Us Section */
.about-section {
  text-align: center;
  padding: 10px 20px;
  padding-bottom: 50px;
  background: #f9f9f9;
}

.about-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.about-section p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Vision & Mission Section */
.mission-vision {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
@keyframes moveUpFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(50);
  }
}

.mv-box {
  flex: 1;
  max-width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  position: relative;
  border-top: 3px solid #fd8d08;
}

.mv-box.show {
  opacity: 1;
  transform: translateY(0);
}
.mv-box:hover {
  transform: translateY(-20px);
  box-shadow: 0px 8px 20px rgba(65, 61, 61, 0.15);
}

.mv-icon {
  width: 50px;
  height: 50px;
  color: #fd8d08;
  background-color: rgb(6, 89, 100);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.mv-icon img {
  width: 40px;
  transform: rotate(-45deg);
}

.mv-box h3 {
  font-size: 22px;
  margin-top: 50px;
  color: #333;
}

.mv-box p {
  padding: 30px 15px;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.services-section {
  background: url("./images/services.webp") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 7, 3, 0.7);
}

/* Service Content */
.service-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-content h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

.swiper {
  position: relative;
  z-index: 2;
  padding: 50px 10px;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.service-box {
  background: white;
  color: black;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  width: 180px;
  min-height: 320px;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 128, 128, 0.3);
}

.service-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #008080;
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 10px;
  flex-grow: 1;
}

.service-list li {
  font-size: 14px;
  margin: 3px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.service-list li::before {
  content: "✔";
  color: #fd8d08;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.2rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(0, 128, 128, 0.7);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #fd8d08;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.6;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: #fd8d08 !important;
  width: 8px;
  height: 8px;
}

.our-domains {
  position: relative;
  background: url("./images/domain.gif");
  padding: 60px 0;
  text-align: center;
  color: white;
}

.our-domains::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.grid-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  z-index: 2;
}

.grid-item {
  background: rgba(0, 70, 70, 0.9);
  padding: 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.5s ease,
    box-shadow 0.3s ease;
}

.grid-item.show {
  opacity: 1;
  transform: translateY(0);
}

.grid-item i {
  font-size: 40px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  background: rgba(0, 100, 100, 0.9);
}

.grid-item:hover i {
  transform: rotate(360deg);
  color: #ffcc00;
}

.grid-item:hover p {
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.98);
}

#stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 100px;
  text-align: center;
}

.stat-box {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-box h3 {
  color: #fd8d08;
  font-size: 22px;
  font-weight: bold;
}

.counter {
  font-size: 70px;
  font-weight: bold;
  color: rgb(10, 87, 97);
}
.toggle-btn {
  background: #ff6600;
  color: white;
  border: none;
  padding: 5px 15px;
  font-size: 18px;
  font-weight: bold;

  cursor: pointer;
  transition: 0.3s;
}

.toggle-btn:hover {
  background: #ff3300;
}

.domain-content {
  display: none;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

/* Contact Section */
.contact-section {
  color: black;
  padding: 40px 20px;
  text-align: center;
  text-transform: uppercase;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
  background: 0px 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.contact-info {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.contact-info h3 {
  color: rgb(10, 87, 97);
  font-size: 18px;
  margin-top: 10px;
}

.contact-info p {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
}

.contact-form h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
  background: #008c9e;;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-form button:hover {
  background:  rgb(10, 87, 97);
}
/* Footer Section */
.footer {
  background-color: #060b0c;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  gap: 30px;
}
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fd8d08;
}

.footer-section p,
.footer-section ul {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
  color: #fd8d08;
}
.footer-logo {
  width: auto;
  height: 70px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease-in-out;
}

.social-icons a img:hover {
  transform: scale(1.1);
}



.loaded #loader {
    display:none;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    
}


.spinner {
    width: 100px;
    height: 100px;
    border: 8px solid #ccc;
    border-top-color:   rgb(10, 87, 97);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none; 
  }
  
  .menu-icon {
    display: none; 
  }

  .banner {
    height: 400px;
  }

  .banner h1 {
    font-size: 30px;
  }

  .banner p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .features {
    flex-direction: column;
    width: 90%;
  }

  .feature-box {
    padding: 15px;
  }
  .about-main {
    max-width: 100%;
  }

  .about-text {
    width: 90%;
    bottom: 10px;
    padding: 15px;
  }

  .about-sub {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .mv-box {
    width: 90%;
  }
  #stats {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .stat-box {
    min-width: 100%;
  }

  .counter {
    font-size: 50px;
  }
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }

  .service-content h2 {
    font-size: 36px;
  }

  .service-content p {
    font-size: 1rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .swiper {
    padding: 8px 5px;
  }
  .service-box {
    width: 6%;
    min-height: 300px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .spinner {
    width: 45px;
    height: 45px;
    border-width: 5px;
}
}
@media (max-width: 480px) {
  .counter {
    font-size: 40px;
  }

  .stat-box h3 {
    font-size: 18px;
  }
.spinner {
        width: 45px;
        height: 45px;
        border-width: 5px;
    }
}
@media (max-width: 1024px) {
  .services-container {
    flex-wrap: wrap;
  }

  .service-box {
    width: 45%;
  }
}
