* {
  margin: 0;
  padding: 0;

}
/* 
body {
  font-family: "jost", sans-serif;
} */
 /* html {
  scroll-behavior: smooth;
} */
html, body {
  overflow-x: hidden;
  font-family: "jost", sans-serif;
  scroll-behavior: smooth;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #eff1f0;
  border-bottom: 1px solid #1f61eb;
  z-index: 1000;
}

/*=== WhatsApp ===*/

.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 150px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-icon {
  font-size: 20px;
  font-weight: 800;
  color: white;
  background: #1f61eb;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/*=== Phone ===*/
.phone-float {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 10px;
  z-index: 1000;
}

.phone-icon {
  font-size: 18px;
  font-weight: 800;
  color: white;
  background: #1f61eb;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.phone-icon:hover {
  transform: scale(1.1);
}
@media (max-width: 768px){
  .whatsapp-float {
    display: block;
  }
  .phone-float {
    display: block;
  }
}

/* ===NavBar=== */

#navbar {
  padding: 10px;
  background-color: white;
  font-size: 17px;
  font-weight: 500;
  color: #1f61eb;
}

.navbar .navbar-brand{
  color: #1f61eb !important;
  font-size: 30px;
  font-weight: 600;
  object-fit: cover;
  overflow: hidden;
}

.navbar-collapse {
  padding: 10px;
}

.navbar-nav li {
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;

}

.navbar-nav li:hover {
  border-bottom: 2px solid #1f61eb;
}

.nav-link {
  color: #1f61eb !important;
  display: flex;
  transition: border-bottom 0.3s ease;
}
.navbar-toggler{
  margin-right: 10px;
}


.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  display: block;
  transition: all 0.3s ease;
  margin-top: 0;
}

.nav-item.dropdown:hover>.dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  right: auto;
  margin-left: 0;
  margin-top: -1px;
  width: 250px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 1000;
  position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-submenu .dropdown-toggle {
  font-size: 14px !important;
  padding: 10px !important;
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out !important;
}

.dropdown-toggle::after {
  display: none !important;
}


/*=== Home Section ===*/
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #1f61eb 0%, #94b4f5 100%);
  animation: gradientShift 10s ease infinite;
  color: #fff;
  position: relative;
}

.hero-img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .hero-text h1 {
    /* margin-top: 50px; */
    padding-top: 80px;
    font-size: 1.8rem;
  }
}

.hero-text p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btn {
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-btn:hover {
  background-color: white;
  color: #333;
}




/*=== About-Section ===*/
.about-section {
  padding: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-text {
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.about-img img {
  /* padding-top: 20px; */
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.about-text h1 {
  font-size: 50px;
  font-weight: 700;
  padding: 10px;
}

.about-text p {
  font-size: 16px;
  padding: 10px;
}

.about-text .about-btn {
  background: linear-gradient(to right, #1f61eb 0%, #94b4f5 100%);
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  color: rgb(255, 255, 255);
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-text .about-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: -1;
}

.about-text .about-btn:hover::after {
  left: 100%;
}

.about-text .about-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: black;
}

/* Keyframes for smooth entry */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.about-img-wrapper {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.5s;
}

/* Dots */
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #1f61eb;
  border-radius: 50%;
  box-shadow: 0 0 10px #1f61eb;
  opacity: 0.7;
}

/* Different locations + animations */
.dot1 {
  top: 10%;
  left: 20%;
  animation: float1 2s ease-in-out infinite;
}

.dot2 {
  bottom: 15%;
  right: 25%;
  animation: float2 5s ease-in-out infinite;
}

.dot3 {
  top: 30%;
  right: 15%;
  animation: float3 6s ease-in-out infinite;
}

/* Floating animations */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, 10px);
  }
}

@keyframes float4 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, 50px);
  }
}


/*=== Our_service-Section ===*/
.our_service-section h1 {
  font-size: 50px;
  font-weight: 800;
  padding: 10px;
  text-align: center;
  color: black;

}

.our_service-section .service-para {
  font-size: 16px;
  padding: 10px;
  text-align: center;
  color: black;

}

.service-card {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service-card .service-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.1s ease-out, filter 0.3s ease;
}

.image-container {

  perspective: 1000px;
  border-radius: 15px;
  overflow: visible;
  position: relative;
}

/* .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.1s ease-out, filter 0.3s ease;
} */




.service-text {
  color: black;
  padding: 20px;
  text-align: left;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: black;
}

.service-text p {
  text-align: left;
  font-size: 16px;
  color: black;
}

.list-head {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
}

.list-disc {
  padding-left: 0;
  text-align: left;
  list-style: none;
}

.list-disc li {
  padding-bottom: 10px;
  font-size: 16px;
  padding-left: 15px;
  display: flex;

}

.list-disc .fa-check {
  color: #1f61eb;
  font-size: 16px;
  display: flex;
  line-height: 25px;
  padding-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-card {
    flex-direction: column !important;
    text-align: center;
  }

  .service-card .col-md-4,
  .service-card .col-md-5,
  .service-card .col-md-7,
  .service-card .col-md-8 {
    width: 100% !important;
    max-width: 100%;
  }

  .service-card img.service-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .service-text {
    padding: 15px;
  }

  .service-text h3 {
    font-size: 24px;
  }

  .service-text p,
  .list-disc li {
    font-size: 14px;
  }
}

/* Base hidden state */
.fade-left,
.fade-right,
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Fade from bottom */
.fade-in {
  transform: translateY(30px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fade from left */
.fade-left {
  transform: translateX(-50px);
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right */
.fade-right {
  transform: translateX(50px);
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}



/*=== Our_product-Section ===*/
.our_product-section {
  padding: 10px;
}

.our_product-section h1 {
  font-size: 50px;
  font-weight: 800;
  padding: 10px;
  text-align: center;
  color: black;
}

/* Product Card */
.product-card {
  width: 100%;
  background-color: #f0f5ff !important;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(244, 244, 244);
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

/* Flip + Shake animation */
@keyframes flipAndShake {
  0% {
    transform: translateX(-50%) rotateY(0deg);
  }

  50% {
    transform: translateX(-50%) rotateY(70deg);
  }

  100% {
    transform: translateX(-50%) rotateY(180deg);
  }
}

/* Img wrapper */
.img-wrapper {
  width: 100%;
  height: 300px; /* or any fixed value */
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
}


/* Text */
.product-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1f61eb;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 16px;
  color: black;
}

.product-text {
  margin-top: 10px;
  padding-top: 20px;
  text-align: center;
}

.product-text .product-btn {
  background: white !important;
  color: #1f61eb !important;
  border-top: 1px solid #1f61eb !important;
  border-left: 1px solid #1f61eb !important;
  box-shadow: 4px 4px 0px #1f61eb !important;
  border-radius: 5px;
  padding: 8px 20px;
  color: black;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px auto !important;
  display: block;
}

.product-text .product-btn:hover {
  transform: translateY(2px) !important;
  box-shadow: 3px 3px 0px #1f61eb !important;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.product-card:hover .product-btn {
  color: black;

}





/*=== Contact Section ===*/
.contact-section {
  object-fit: cover;
}

.contact-img {
  border-radius: 20px !important;
  padding: 10px;
  width: 100%;
  object-fit: cover;
}

.contact-text {
 
  padding: 10px;
  max-width: 600px;
  margin: 20px auto;
}

.head-text h1 {
  color: black;
  font-size: 45px;
  font-weight: 800;
}

.head-text .contact-para {
  font-size: 16px;
  color: #757587 !important;
  text-align: center;
  padding-bottom: 15px;
}

.form-container {
  max-width: 800px;
  text-align: center;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.input-row input,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid rgb(244, 244, 244);
  border-radius: 5px;
  background-color: #f0f5ff;

}

.input-row input,
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 5px #f4feff;
}

textarea {
  resize: none;
  height: 150px;
  font-size: 15px;

}

textarea:focus {
  outline: none;
}

select {
  color: #757587;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid rgb(244, 244, 244);
  border-radius: 5px;
  background-color: #f0f5ff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

}

select:focus {
  outline: none;
}


@media (max-width: 600px) {
  .input-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .form-svg-wrapper {
    flex-direction: column-reverse;
  }

  .svg-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-img,
  .contact-text {
    width: 100%;

  }
}

.contact-text h2 {
  font-size: 40px;
  font-weight: 700;

}

.contact-text p {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
}

.contact-text .submit-btn {
  width: 150px;
  background: linear-gradient(to right, #1f61eb 0%, #94b4f5 100%);
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;

}

.submit-btn:hover {
  color: white !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}




/*=== Footer-Section ===*/
.footer-section {
  cursor: pointer;
  background-color: black;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  color: white;
}

.newsletter-signup h2 {
  font-size: 25px;
  color: white;
  font-weight: 700;

}

.newsletter-signup p {
  margin-top: 10px;
  font-size: 16px;
  color: rgb(114, 112, 112);
}

.newsletter-signup form {
  margin-top: 30px;
}

/* .input-wrapper i {
  font-size: 20px;
  color: #1f61eb;
  padding-right: 10px;
} */

.input-wrapper{
  border: 1px solid rgb(114, 112, 112);
  padding: 10px;
  border-radius: 20px;

}
.input-wrapper .email_input {
  width: 80%;
  font-size: 15px;
  border: none;
  padding: 5px;
  border-radius: 10px;
  background-color: transparent;

}

.email_input::placeholder {
  font-size: 14px;
}

.email_input:focus {
  outline: none;
}

.input_sub {
  border: none;
  /* margin-top: 10px; */
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(to right, #1f61eb 0%, #94b4f5 100%);
  padding: 6px 20px;
  color: white;
  cursor: pointer;
  text-decoration: none;
}
.newsletter-span{
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  color: rgb(114, 112, 112);
}
/* 
.input_sub:hover {
  box-shadow: 0px 1px 5px #94b4f5;
} */

/* Service-Footer colm */
.service-footer h2 {
  font-size: 25px;
  color: white;
  font-weight: 700;
}

.service-list {
  padding: 0;

}

.service-list li {
  list-style: none;
  padding-top: 7px;
}

.service-list a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: rgb(114, 112, 112);
}

.service-list a:hover {
  color: #1f61eb;
}

.service-list .fa-chevron-right {
  font-size: 16px;
  font-weight: 700;
  padding-right: 7px;

}

/* Quick-Footer colm */
.quick-footer h2 {
  font-size: 25px;
  color: white;
  font-weight: 700;
}

.quick-list {
  padding: 0;

}

.quick-list li {
  list-style: none;
  padding-top: 7px;
}

.quick-list a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: rgb(114, 112, 112);
}

.quick-list a:hover {
  color: #1f61eb;
}

.quick-list .fa-chevron-right {
  font-size: 16px;
  font-weight: 700;
  padding-right: 7px;

}

/* Ontool-Footer colm */
.ontool-footer h2 {
  font-size: 25px;
  color: white;
  font-weight: 700;
}

.ontool-footer p {
  margin-top: 12px;
  font-size: 16px;
  color: rgb(114, 112, 112);
}



/* copy Right */
.border-line {
  border: 1px solid rgb(165, 163, 163);
}

.copyright {
  padding: 10px;
  color: #eff1f0;
  font-weight: 400;
  font-size: 11px;
  margin: 0;
}

.copyright-links {
  list-style: none;
  font-size: 11px;
  padding: 0;
  margin: 0;
}

.socialmedia-list{
  object-fit: cover;
  gap: 8px;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.socialmedia-list li {
  cursor: pointer;
  width: 25px;
  height: 25px;
  list-style: none;
  border: 1px solid rgb(101, 99, 99);
  border-radius: 50%;
  /* padding: 2px; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 0rem !important;
}

.socialmedia-list li:hover {
  background-color: white;
  /* box-shadow: 0px 0px 5px #b3ecf3; */
}

.socialmedia-list a {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  padding: 10px;
  text-align: center;
}

.socialmedia-list a:hover {
  color: #1f61eb;
}

.socialmedia-list i {
  color: #1f61eb;
  font-size: 12px;
  font-weight: 500;

}


.copyright-links li {
  display: inline;
}

.copyright-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.copyright-links a:hover {
  color: #ccc;
}

.iti__country-list {
  width: 300px;
}

.iti__arrow {
  display: none;
}

.flying-plane {
  animation: flyIn 3s ease-in-out forwards;
  opacity: 0;
}

@keyframes flyIn {
  0% {
    transform: translate(-200px, 100px) rotate(-20deg);
    opacity: 0;
  }

  50% {
    transform: translate(-100px, -50px) rotate(10deg);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
