body {
  font-family: 'Poppins', sans-serif;
  color: #757575;
  /* background: #edf2ff; */
  margin: 0;
}

.company-name {
  display: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .company-name {
    display: inline-block;
    margin-left: 30px;
    margin-top: 40px;
    font-size: 40px;
    font-weight: 680;
    font-family: 'Times New Roman', Times, serif;
 background-color: #032885;
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlide 1.0s ease-out forwards, glowPulse 6s ease-in-out infinite, bgFlow 10s ease infinite;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(255, 132, 194, 0.3), 0 0 8px rgba(255, 255, 255, 0.3);
  }

  /* ✨ Animated shine line */
  .company-name::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-20deg);
    animation: shine 5.5s ease-in-out infinite;
  }

  @keyframes shine {
    0% {
      left: -75%;
    }
    50% {
      left: 100%;
    }
    100% {
      left: 100%;
    }
  }
}

.header-wrapper {
  max-width: 1200px;
  margin: 8px auto 0; /* Reduced top margin */
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  animation: fadeSlideDown 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-right: 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo p {
  display: none;
}
.phone-link {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}



.blue-number {
  color: #ffffff; /* Bright blue for emphasis */
}

@media (max-width: 992px) {
  .logo p {
    display: block;
    font-size: 13px;
    color: #555;
    margin: 0;
    padding-left: 8px;
  }
}

.divider {
  height: 35px;
  width: 1px;
  background: #ccc;
  margin-right: 20px;
}

.left {
  display: flex;
  align-items: center;
}
    .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .nav-links a {
      position: relative;
      text-decoration: none;
      color: #032885;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #032885;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .arrow-icon {
      transition: transform 0.3s ease;
    }

    .dropdown-menu {
      position: absolute;
      top: 30px;
      left: 0;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: none;
      flex-direction: column;
      min-width: 200px;
      z-index: 99;
    }

    .dropdown:hover .dropdown-menu {
      display: flex;
    }

    .dropdown-menu a {
      padding: 5px 7px;
      color: #032885;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.3s;
    }

    .dropdown-menu a:hover {
      background: #f0f0f0;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: 20px;
    }

    .btn-consult {
      background: #032885;
      color: #ffffff;
      padding: 10px 18px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-consult:hover {
      background: #021a5c;
    }

    .menu-toggle {
      display: none;
      font-size: 22px;
      cursor: pointer;
      color: #032885;
    }

    /* Sidebar styles */
    .sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      height: 60vh;
      width: 250px;
      background: #fff;
      box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
      padding: 60px 20px 20px;
      transition: right 0.4s ease;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .sidebar.open {
      right: 0;
    }

    .sidebar .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 22px;
      cursor: pointer;
      color: #032885;
    }

    .sidebar a {
      text-decoration: none;
      font-size: 18px;
      color: #000000;
      transition: color 0.3s;
    }

    .sidebar a:hover {
      color: #032885;
    }

    .sidebar-dropdown .sidebar-submenu {
      display: none;
      flex-direction: column;
      padding-left: 15px;
      margin-top: 8px;
    }

    .sidebar-dropdown.open .sidebar-submenu {
      display: flex;
    }

    .sidebar-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 18px;
      color: #032885;
    }

    .sidebar-dropdown.open .arrow-icon {
      transform: rotate(180deg);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .nav-links,
      .icons {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }
/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%; /* Reduced top/bottom padding */
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2rem;
  color: #1a1a1a;
}

.hero-text p {
  color: #555;
  text-align: justify;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-right: 1rem;
  display: inline-block;
}



.secondary {
  background-color: #032885;
  color: rgb(255, 255, 255);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-image {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 1rem 5% 0.5rem; /* Even smaller vertical space for mobile */
  }

  .hero-buttons a {
    margin: 0.5rem 0;
    display: block;
  }

  .hero-text h1{
    font-size: 25px;
  }
}



/* <!-- appointment --> */.appointment-text {
  font-size: 20px;
  color: #ffffff;
  background-color: #032885;
  padding: 10px 20px;
  border-radius: 8px;
  animation: slideIn 1s ease-in-out;
  position: absolute;
  top: 100px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.number {
  font-weight: bold;
}

/* Animation Keyframes */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .appointment-text {
    font-size: 13px;
    padding: 2px 8px;
    margin-top: 232px;
    right: 10px;
  }
}

.image-slider {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.slider-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 20s linear infinite;
}

.image-slider:hover .slider-track {
  animation-play-state: paused; /* Pause on hover */
}

.slider-track img {
  width: 120px;
  height: auto;
  margin-right: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    width: 80px;
    margin-right: 20px;
  }
}

.image-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.section-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.section-content {
  flex: 1;
  min-width: 250px;
}

.section-content p {
  font-size: 1.2rem;
  text-align: justify;
  color: #333;
}

.section-content button {
  padding: 12px 24px;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  background-color:#032885;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.section-content button:hover {
  background-color: #032885;
}

/* Responsive */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column;
    text-align: center;
  }

  .section-image img {
    width: 100%;
  }

  .section-content {
    width: 100%;
  }
}.btn-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  background-color: #032885;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-link:hover {
  background-color: #032885;
  color: rgb(255, 255, 255);
}
/* Base (Mobile First) */
.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.banner-content {
  margin-bottom: 30px;
}

.banner-content h1 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.typing-text {
  font-size: 1.2rem;
  color: #0077cc;
  font-weight: 500;
}

.banner-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}


/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .banner-content {
    flex: 1;
    margin-right: 30px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .typing-text {
    font-size: 1rem;
  }

  .banner-image {
    flex: 1;
    text-align: right;
  }

  .banner-image img {
    max-width: 450px;
  }
}


/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .banner {
    padding: 80px 60px;
  }

  .banner-content h1 {
    font-size: 2.1rem;
  }

  .typing-text {
    font-size: 1.6rem;
  }

  .banner-image img {
    max-width: 500px;
  }
}
.typing-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0077cc;
  white-space: nowrap;         
  overflow: hidden;         
  border-right: 2px solid #0077cc; 
  width: 0;                 
  animation: typing 4s steps(30, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 28.5ch; 
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.features-section {
  padding: 40px 15px;
  text-align: center;
}

.features-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #0e1e5b;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background-color: #1f295b;
  color: white;
  padding: 20px 18px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: linear-gradient(135deg, #2d3a8c, #3f51b5);
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.35);
  transform: translateY(-10px) scale(1.05);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #ffe600;
  transform: translateY(-3px);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.5;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon {
  display: inline-block;
  transition: transform 0.6s ease;
}

.feature-card:hover .icon {
  transform: rotate(360deg);
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

/* ✅ Media Queries for Small Devices */
@media (max-width: 768px) {
  .features-section h2 {
    font-size: 26px;
  }

  .feature-card {
    padding: 18px 15px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 30px 10px;
  }

  .features-grid {
    gap: 15px;
  }

  .feature-card {
    border-radius: 15px;
    padding: 15px 12px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 12.5px;
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);

  }
}

/* For tablets (2 per row) */
@media (max-width: 991px) and (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For mobiles (1 per row) */
@media (max-width: 599px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
 .tech-section {
      padding: 40px 20px;
      text-align: center;
    }

    .tech-section h2 {
      font-size: 2.5rem;
      color: #003366;
      margin-bottom: 30px;
    }

    .tech-icons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
      justify-items: center;
      animation: fadeIn 1.5s ease;
    }

    .tech-icons img {
      width: 60px;
      height: 60px;
      transition: transform 0.3s ease;
    }

    .tech-icons img:hover {
      transform: scale(1.2);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      .tech-section h2 {
        font-size: 1.8rem;
      }

      .tech-icons img {
        width: 50px;
        height: 50px;
      }
    }

    .footer {
  background-color: #0b2239;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-column h2 {
  font-size: 24px;
  color: #00aaff;
}

.footer-column h3 {
  border-bottom: 2px solid #00aaff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #ddd;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #00aaff;
  transition: 0.3s;
}

.footer-column p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #1c3d5a;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    margin: 10px 0;
  }
}
.custom-hero-banner {
  background: linear-gradient(to right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.95)),
              url('https://cdn.pixabay.com/photo/2016/11/29/03/35/technology-1869236_1280.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.custom-banner-content {
  max-width: 800px;
  text-align: left;
}

.custom-banner-content h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cce5ff;
}

.custom-banner-content h1 {
  font-size: 36px;
  margin: 0 0 20px;
  font-weight: 700;
}

.custom-whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #004080;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  border: 2px solid #0072c6;
  transition: background 0.3s ease;
}

.custom-whatsapp-button img {
  width: 18px;
  margin-right: 10px;
}

.custom-whatsapp-button:hover {
  background-color: #e6f2ff;
   
}

@media (max-width: 768px) {
  .custom-hero-banner {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .custom-banner-content h1 {
    font-size: 28px;
  }
}
.appointment-wrapper {
  transition: background 0.5s;
  background-color: #032885;
  padding: 2px;
  color: white;
  max-width: 400px;
  margin: 20px 0 20px 10px; /* Aligned to left */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.appointment-wrapper:hover{
  color: #000000;
 transition: background 0.5s;
 background-color: #9dcbff;
 
}
.appointment-wrapper h2 {
  margin-bottom: 15px;
  
  margin-right: 100%;
}

.appointment-id {
  font-size: 18px;

  color: #ffffff;
}

/* ✅ Single-line responsive media query for small screens */
@media (max-width: 600px){.appointment-wrapper{background-color:#ff69b4;margin:20px;text-align:center;}}
@media (max-width: 600px){
  .appointment-wrapper {
    background-color: #032885;
    margin: 20px;
    text-align: center;
  }
  .button-wrapper {
    text-align: center; /* Center button on mobile */
  }
}
.buttonnxt {
  text-decoration: none;
   background-color: #032885;
    color: #ffffff;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
    position: absolute;
    right: 20px;
      margin-top: 20px;
}
.buttonnxt:hover {
  transition: 0.3s;
 background-color: #9dcbff;
 color:  black

}

/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    body {
        justify-content: center; /* Center the button on smaller screens */
    }
}
.wsmod-services-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.wsmod-section-title {
   color: #444;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.wsmod-services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.wsmod-service-box {
  background: #fff;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.wsmod-service-box:hover {
  transform: translateY(-5px);
}

.wsmod-service-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.wsmod-service-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.wsmod-service-desc {
  font-size: 1em;
  color: #555;
}

/* Responsive styles */
@media (max-width: 768px) {
  .wsmod-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .wsmod-service-box {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .wsmod-section-title {
    font-size: 1.5em;
  }

  .wsmod-service-title {
    font-size: 1.1em;
  }

  .wsmod-service-desc {
    font-size: 0.95em;
  }
}

.contactbox_wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e6faff);
}

.contactbox_wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e6faff);
}

.contactbox_inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Section: Map + Address */
.contactbox_mapsection {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  box-sizing: border-box;
}

.contactbox_map {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.contactbox_map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.contactbox_info {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.contactbox_info a {
  color: #0077cc;
  text-decoration: none;
}

.contactbox_info a:hover {
  text-decoration: underline;
}

/* Right Section: Form */
.contactbox_form {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  box-sizing: border-box;
}

.contactbox_form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0077cc;
}

.contactbox_form input,
.contactbox_form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contactbox_form button {
  background-color: #0077cc;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contactbox_form button:hover {
  background-color: #005fa3;
}

/* Responsive *//* Tablets: Stack map, address, and form vertically */
@media (max-width: 1023px) {
  .contactbox_inner {
    flex-direction: column;
    gap: 30px;
  }

  .contactbox_mapsection,
  .contactbox_form {
    width: 100%;
    padding: 30px 20px;
  }

  .contactbox_map iframe {
    min-height: 250px;
  }

  .contactbox_info {
    margin-top: 20px;
    text-align: center;
  }

  .contactbox_form h2 {
    font-size: 24px;
    text-align: center;
  }

  .contactbox_form input,
  .contactbox_form textarea,
  .contactbox_form button {
    width: 100%;
    font-size: 15px;
  }
}

/* Mobiles: Smaller fonts, tighter spacing */
@media (max-width: 767px) {
  .contactbox_wrapper {
    padding: 40px 10px;
  }

  .contactbox_form {
    padding: 10px 5px;
  }

  .contactbox_map iframe {
    min-height: 200px;
  }

  .contactbox_info {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.4;
    margin-right: 30px;
  }

  .contactbox_form h2 {
    font-size: 20px;
    margin-right: 40px;
  }

  .contactbox_form input,
  .contactbox_form textarea {
    font-size: 15px;
 
    width:74%;
  }

  .contactbox_form button {
    padding: 6px 10px;
    font-size: 15px;
  }
}


/* banner */
  .slider-container {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 65vh;
    }

    .slide {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 100%;
      opacity: 0;
      transition: all 1s ease;
      padding: 50px;
    }

    .slide.active {
      left: 0;
      opacity: 1;
      z-index: 1;
    }

    .text-content {
      width: 50%;
      color: #000000;
      animation: slideText 1s forwards;
      transform: translateY(50px);
      opacity: 0;
      margin-bottom: 220px;
    }

    .text-content h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .text-content p {
      font-size: 1.2rem;
    }

    @keyframes slideText {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .image-content {
      width: 50%;
      text-align: center;
    }

    .image-content img {
      width: 90%;
      max-height: 500px;
      object-fit: contain;
      border-radius: 20px;
    }

    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 15px;
      height: 15px;
      background-color: #000000;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #000000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .slide {
        flex-direction: column;
        padding: 20px;
      }

      .text-content, .image-content {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        margin-right: 25px;
      }

      .text-content h1 {
        font-size: 2rem;
      }

      .image-content img {
        width: 80%;
        max-height: 300px;
  
      }
    }

    @media (max-width: 480px) {
      .text-content h1 {
        font-size: 1.5rem;
      }

      .text-content p {
        text-align: justify;
        font-size: 0.8rem;
        margin-right: 40px;
      }

      .image-content img {
        border-radius: 15%;
        margin-bottom: 70px;
        width: 100%;
      }
    }

    
    .slide-in-right {
  opacity: 0;
  text-align: justify;
  transform: translateX(100%);
  animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .slide-in-right {
    animation-duration: 1.8s;
  }
}
/* Default styles (mobile) */
.paragraph-text {
    font-family: 'Poppins', sans-serif;
  color: rgb(0, 0, 0);
  font: larger;
  font-weight: 100;
  line-height: 2; /* Normal line spacing for mobile */
}

/* Tablet and PC view */
@media screen and (min-width: 768px) {
  .paragraph-text {
    line-height: 2; /* Increased line spacing for tablet and PC */
  }
}

/* form .banner *//* Global styles */
/* Banner container with background image */
.bs-banner-container {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.bs-banner-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Main content wrapper */
.bs-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

/* Left text content */
.bs-banner-left {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  animation: fadeInUp 1s ease;
}

.bs-banner-left h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.bs-banner-left p {
  font-size: 18px;
  color: #ddd;
  text-align: justify;
}

/* Right form content */
.bs-banner-right {
  width: 50%;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
}

/* Form styles */
#bs_form {
  width: 100%;
  max-width: 400px;
}

.form-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #ffffff;
}

#bs_form input,
#bs_form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  border-radius: 8px;
  /* background-color: rgba(255, 255, 255, 0.1); */
  color: #000000;
  font-size: 16px;
  /* transition: border-color 0.3s ease; */
}

#bs_form input::placeholder,
#bs_form textarea::placeholder {
  color: #ccc;
}

#bs_form input:focus,
#bs_form textarea:focus {
  border-color: #007bff;
  outline: none;
}

#bs_form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#bs_form button:hover {
  background-color: #0056b3;
}

#bs_status {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: lightgreen;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tablet and below */
@media screen and (max-width: 992px) {
  .bs-banner-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    align-items: center;
  }

  .bs-banner-left,
  .bs-banner-right {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    text-align: center;
  }

  #bs_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #bs_form input,
  #bs_form textarea,
  #bs_form button {
    width: 90%;
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* Mobile (portrait) */
@media screen and (max-width: 768px) {
  .bs-banner-left h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .bs-banner-left p,
  .form-title {
    font-size: 14px;
    line-height: 1.6;
  }

  .bs-banner-right {
    padding: 20px;
  }
}
@media screen and (max-width: 576px) {
  .bs-banner-container {
    padding: 30px 10px;
  }

  .bs-banner-content {
    padding: 0 12px;
    flex-direction: column;
    align-items: center;
  }

  .bs-banner-left,
  .bs-banner-right {
    width: 100%;
    padding: 15px 16px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .bs-banner-left h1 {
    font-size: 18px;
    text-align: center;
  }

  .bs-banner-left p {
    font-size: 13px;
    text-align: justify;
  }

  .form-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  #bs_form {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  #bs_form input,
  #bs_form textarea,
  #bs_form button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 12px;
    box-sizing: border-box;
  }

  #bs_form button[type="submit"] {
    font-size: 16px;
  }

  #bs_status {
    font-size: 14px;
    margin-top: 10px;
  }
}




/* dropdown  */
