* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  transition: 0.4s;
  color: white;
  scroll-behavior: smooth;
  cursor: none;
}

.disabled {
    pointer-events: none;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #07b2c9;
}
/* body {
  background: linear-gradient(to right, rgba(10, 25, 47, 1), rgba(15, 32, 60, 0.95), rgba(25, 50, 75, 0.9));
  overflow-x: hidden;
} */



body {
  background: linear-gradient(to right, rgba(10, 20, 40, 1), rgba(20, 35, 60, 0.95), rgba(35, 60, 90, 0.9));
  overflow-x: hidden;
}


/* Inner dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #00e0ff; /* default dot color */
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
  box-shadow: 1px 1px 5px #000;
}


/* Outer outline */
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background-color 0.15s ease, border-color 0.15s ease;
  box-shadow: 1px 1px 10px #fff;
}

/* Click animation class */
.cursor-clicked {
  background-color: white !important;
  border-color: white !important;
}


h2 {
  text-align: center;
  font-size: 50px;
  color: #fff;
  padding: 50px 0;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  width: 80%;
 
  margin: 30px auto;
  padding: 20px 0;

  border-radius: 10px;
}

.row {
  display: grid;
  grid-template-columns: 30% 1fr 30%;
}

.nav ul {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
  grid-gap: 20px;
}

.nav ul li a {
  color: white;
  position: relative;
  text-decoration: none;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 0%;
  background-color: #00e0ff;
  transition: width 0.4s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

.logo {
  text-align: center;
}

.logo img {
  width: 20%;
  cursor: pointer;
}

.contact-det {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
  grid-gap: 20px;
}

.contact-det img {
  width: 5%;
}

.contact-det button {
  padding: 10px 30px;
  color: #0b061f;
  background: white;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  border-radius: 5px;
  border: none;
}

.contact-det button:hover{
  background: #07b2c9;
}

.mob-header {
  display: none;
  padding: 10px 20px;
}

.mob-row {
  display: grid;
  grid-template-columns: 25% 75%;
}

.mob-logo img {
  width: 50%;
}

.mob-nav {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, rgba(10, 25, 47, 1), rgba(15, 32, 60, 0.95), rgba(25, 50, 75, 0.9));
  position: fixed;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100vh;
  padding: 15px;
  z-index: 1000;
  transition: 0.4s;
}

.mob-nav.active {
  right: 0;
}

.mob-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 40px;
}

.mob-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.mob-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  justify-content: center;
  font-size: 25px;
}

.mob-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

.mob-close {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1100;
}

/* banner */

/* Banner */
.banner {
  padding: 180px 0;
  /* background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e); */
  color: white;
  text-align: center;
}

/* Animated Word */
.word-animation {
  display: inline-block;
  color: #07b2c9;
  font-weight: bold;
  position: relative;
  font-style: italic;
  
}
/* 
.word-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background-color: #00e0ff;
  animation: underline 2s infinite;
}

@keyframes underline {
  0%, 100% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 0%;
    left: 50%;
  }
} */

/* Text Container */
.banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* Main Heading */
.banner-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-text span {
  display: inline-block;
  padding: 10px 0;
}

/* Buttons */
.banner-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.banner-btns a {
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.banner-btns a:nth-child(1) {
  background-color: #ffffff;
  color: #0b061f;
}

.banner-btns a:nth-child(1):hover {
  background-color: #00e0ff;
  color: #0b061f;
}

.banner-btns a:nth-child(2) {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.banner-btns a:nth-child(2):hover {
  background-color: #00e0ff;
  color: #0b061f;
  border-color: #00e0ff;
}




/* Services */
/* Services Section */
.services {
  width: 100%;
  padding: 80px 0;
  /* background: linear-gradient(to right, #0f2027, #203a43, #2c5364); */
}

.heading h2 {
  color: white;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Service Box */
.ser-box {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border: 1px solid #ffffff40;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.1);
}

.ser-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.3);
}

/* Icons */
.ser-box img {
  width: 80px;
  height: auto;
  margin-bottom: 30px;
}

/* Headings */
.ser-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Description */
.ser-box p {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 10px;
}

/* end service */
/* About */
.about {
  padding: 120px 0;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.about-box {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 50vh;
}

.about-box h3 {
  color: white;
  font-size: 48px;
}

.about-box p {
  color: #fff;
  padding: 30px 0;
  line-height: 30px;
}

.about-box img {
  width: 100%;
}

/* Portfolio */
.portfolio {
  padding: 80px 0;
}

.slider-body {
  position: relative;
  height: 100%;
}

.swiper-wrapper {
  padding: 40px 0 !important;
  /* display: grid !important;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 20px; */
}

.swiper {
  width: 100%;
  height: 100%;

}
.swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Optional: avoids accidental scrollbars or overflow */
}

.swiper-slide video{
  border-radius: 10px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #000 !important; /* Normal bullet color */
}

.swiper-pagination-bullet-active {
  background: #fff !important; /* Active bullet color */
}

.port-heading h3 {
  font-size: 30px;
}

.port-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  padding: 60px 0;
}

.port-details {
  background: #fff;
  border-radius: 5px;
}

.port-details .inner {
  padding: 20px;
  text-align: left;
}

.port-details img {
  width: 100%;
}

.port-details h4 {
  font-size: 25px;
  color: #1a1f71;
}

.port-details p {
  padding: 25px 0;
  color: #000;
}

.port-details a {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
   border: 1px solid #1a1f71;
  background: #1a1f71;
  border-radius: 5px;
}

.port-details a:hover{
  display: inline-block;
  padding: 10px 30px;
  color: #1a1f71;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #1a1f71;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact .heading p {
  font-size: 35px;
  text-align: center;
  padding: 0px 0px 30px 0px;
}

.contact-det-list {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
  flex-wrap: wrap;
}

.contact-det-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contact-det-list .inner {
  display: grid;
  grid-template-columns: repeat(3, 25%);
  grid-gap: 40px;
  padding: 30px 0;
}

/* Footer */
.footer-copyright {
  text-align: center;
  padding: 20px 0;
}

/* Responsive
@media (max-width: 1240px) {
  .banner {
    padding: 100px 0;
  }

  .banner-text h1 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .header {
    display: none;
  }

  .mob-header {
    display: block;
  }
  .mob-toggle{
           display: flex;
        justify-content: center;
        align-items: right;
        height: 100%; 
        font-size: 25px;
        text-align: right;

  }

  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-boxes {
    grid-template-columns: repeat(3, 1fr);
  }

  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .contact-det {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .about-box {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .about-box h3 {
    font-size: 30px;
  }

  .about-box p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .banner-text h1 {
    font-size: 40px;
  }

  .port-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact .heading p {
    font-size: 20px;
  }

  .logo img {
    width: 40%;
  }

  .contact-det img {
    width: 15%;
  }

  .ser-box img {
    width: 40%;
  }

  .about-box img {
    width: 100%;
  }

  .banner-btns a {
    padding: 8px 20px;
    font-size: 14px;
  }

  h2 {
    font-size: 30px;
    padding: 30px 0;
  }

  .ser-box h3 {
    font-size: 20px;
  }

  .ser-box p {
    font-size: 14px;
  }

  .port-details h4 {
    font-size: 20px;
  }

  .port-details p {
    font-size: 14px;
  }
}

@media (max-width: 557px) {
  .mob-logo img {
    width: 70%;
  }

  .banner-text h1 {
    font-size: 29px;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .about-services {
    grid-template-columns: 1fr;
    grid-gap: 70px;
  }

  .about-box img {
    width: 80%;
  }

  .port-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 376px) {
  .banner-text h1 {
    font-size: 20px;
  }
  .mob-logo img {
        width: 85% !important;
    }
    .portfolio {
    padding: 0px 0px;
}
} */
