/*================New Style from Index================*/
  body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Topbar */
.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: rgb(128, 128, 128);
}

.topbar .row {
  margin-left: 0;
  margin-right: 0;
  padding: 0 15px;
}

.topbar .text-white {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .topbar .d-none {
    display: none !important;
  }
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 0 15px;
}

.navbar-brand img {
  height: 80px;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 10px 15px;
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: #fff;
    padding: 10px;
  }
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

/* Banner Carousel */
.banner-carousel {
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner-carousel-slide {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.banner-carousel-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .banner-carousel-slide {
    height: 300px;
  }
  .banner-carousel-img {
    height: 300px;
  }
  .carousel-caption {
    padding: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .banner-carousel-slide {
    height: 200px;
  }
  .banner-carousel-img {
    height: 200px;
  }
}

/* Intro Section */
.intro-section {
  width: 100%;
  padding: 80px 0;
  margin: 40px 0 60px 0;
  color: #f5f5f5;
  position: relative;
  background: linear-gradient(135deg, rgba(20, 30, 50, 0.85), #0c1a2b);
}

.intro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  animation: slideInLeft 1.2s ease-out;
}

.intro-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.intro-images {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.intro-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.intro-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border: 2px solid #ffab00;
}

.intro-image img:hover {
  transform: scale(1.1);
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(4, 4, 35);
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.intro-text strong {
  color: #ffab00;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .intro-section {
    padding: 50px 0;
  }
  .intro-content {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  .intro-images {
    grid-template-columns: 1fr;
  }
  .intro-image img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 40px 0;
  }
  .intro-content {
    padding: 15px;
  }
  .intro-image img {
    height: 140px;
  }
  .intro-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-section {
    padding: 30px 0;
  }
  .intro-image img {
    height: 120px;
  }
  .intro-text p {
    font-size: 0.9rem;
  }
}

 .counter-section {
    background: #e8f0fe;
    padding: 140px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
  }

  .counter-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 25px;
    padding: 0 15px;
  }

  .counter-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    width: 220px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    animation: scaleFadeIn 0.8s ease-out forwards;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
      linear-gradient(to right, #ffa500, #ffffff) border-box;
  }

  .counter-box:nth-child(1) {
    animation-delay: 0.1s;
  }

  .counter-box:nth-child(2) {
    animation-delay: 0.2s;
  }

  .counter-box:nth-child(3) {
    animation-delay: 0.3s;
  }

  .counter-box:nth-child(4) {
    animation-delay: 0.4s;
  }

  .counter-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .counter-number {
    font-size: 2.6rem;
    font-weight: bold;
    color: #0a74da;
    transition: color 0.3s ease;
  }

  .counter-label {
    font-size: 1rem;
    color: #444;
    margin-top: 8px;
    font-weight: 500;
  }

  @keyframes scaleFadeIn {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  @media (max-width: 768px) {
    .counter-section {
      padding: 60px 0;
    }
    .counter-box {
      width: 100%;
      max-width: 280px;
      margin: 10px auto;
      padding: 20px 15px;
    }
    .counter-number {
      font-size: 2.2rem;
    }
    .counter-label {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .counter-section {
      padding: 40px 0;
    }
    .counter-box {
      max-width: 250px;
    }
  }


/* Application Area */
.application-area {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.application-area h2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  background: linear-gradient(to right, #0c1a2b, #0c1a2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
}

.application-area h2 span {
  content: '';
  width: 60px;
  height: 3px;
  background: #0c1a2b;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  animation: grow 0.8s ease-out forwards 0.2s;
  display: block;
}

.application-area p {
  color: #0b0b0c;
  font-size: 1.3rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.slider-box {
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
}

.slider-box marquee {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-box img {
  height: 600px;
  border-radius: 8px;
  margin: 0 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-box img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .application-area {
    padding: 40px 0;
  }
  .application-area h2 {
    font-size: 2rem;
  }
  .application-area p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .slider-box img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .application-area {
    padding: 30px 0;
  }
  .application-area h2 {
    font-size: 1.8rem;
  }
  .application-area p {
    font-size: 1rem;
  }
  .slider-box img {
    height: 200px;
  }
}

/* Services Section */
.services-section {
  width: 100%;
  padding: 64px 0;
  font-family: Arial, sans-serif;
  margin-top: 40px;
  position: relative;
  min-height: 900px;
  background-color: white;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(6, 6, 41);
  z-index: 1;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.services-container h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  background: linear-gradient(to right, #ffa500, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  animation: slide-in-from-top 0.8s ease-out;
}

.service-card {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.5);
  transition: opacity 0.3s ease;
}

.service-card .curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.service-card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

.service-card:hover img {
  opacity: 0;
}

.service-card:hover .curtain {
  background: #1A2A44;
}

.service-card:hover .content {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.4rem;
  background: linear-gradient(to right, #ffa500, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.service-card:hover h3 {
  color: #FFD700;
}

.service-card p {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.service-card:hover p {
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .service-card {
    width: 250px;
    height: 180px;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }
  .services-container {
    padding: 0 10px;
  }
  .service-card {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
  .services-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 32px 0;
  }
  .service-card {
    height: 180px;
  }
  .services-container h2 {
    font-size: 1.6rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.7rem;
  }
}

/* Certificates Section */
.certificates-section {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.certificates-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  background: linear-gradient(to right, #0c1a2b, #0c1a2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  animation: zoomIn 0.8s ease-out forwards;
}

.certificate-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

.certificate-marquee div {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.certificate-marquee img {
  height: 200px;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .certificates-section h2 {
    font-size: 2rem;
  }
  .certificate-marquee img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .certificates-section h2 {
    font-size: 1.8rem;
  }
  .certificate-marquee img {
    height: 120px;
  }
}




/* Animations */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes grow {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes slide-in-from-top {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Scrollbar Styling */
div[style*="overflow-y: auto"]::-webkit-scrollbar {
  width: 10px;
}

div[style*="overflow-y: auto"]::-webkit-scrollbar-thumb {
  background-color: #d98908;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

div[style*="overflow-y: auto"]::-webkit-scrollbar-thumb:hover {
  background-color: #b37400;
}

/*============Second Portion of Style========*/

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Roboto:wght@400;700&display=swap');
      @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-60px); }
        to { opacity: 1; transform: translateX(0); }
      }
      @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-40px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @media (max-width: 1024px) {
        section[style*="padding: 80px 20px"] {
          padding: 50px 15px;
        }
        div[style*="display: flex"] {
          flex-direction: column;
          gap: 30px;
        }
        div[style*="grid-template-columns"] {
          grid-template-columns: 1fr;
        }
        h3[style*="font-size: 2.2rem"] {
          font-size: 1.8rem;
        }
        p[style*="font-size: 1.3rem"] {
          font-size: 1.1rem;
        }
        img[style*="height: 200px"] {
          height: 160px;
        }
        div[style*="padding: 30px"] {
          padding: 20px;
        }
      }
      @media (max-width: 768px) {
        section[style*="padding: 80px 20px"] {
          padding: 40px 10px;
        }
        h3[style*="font-size: 2.2rem"] {
          font-size: 1.6rem;
          margin-bottom: 40px;
        }
        p[style*="font-size: 1.3rem"] {
          font-size: 1rem;
        }
        img[style*="height: 200px"] {
          height: 140px;
        }
        div[style*="padding: 30px"] {
          padding: 15px;
        }
      }
      @media (max-width: 480px) {
        section[style*="padding: 80px 20px"] {
          padding: 30px 8px;
        }
        h3[style*="font-size: 2.2rem"] {
          font-size: 1.4rem;
          margin-bottom: 30px;
        }
        p[style*="font-size: 1.3rem"] {
          font-size: 0.9rem;
        }
        img[style*="height: 200px"] {
          height: 120px;
        }
      }
     

/*============Third Portion of style==========*/


  .how-we-work-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: white;
    gap: 60px;
    flex-wrap: wrap;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 60px;
    min-height: 800px;
  }

  .how-we-work-left {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
  }

  .how-we-work-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(to right, #0f1d36, #0c1a2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
    text-align: center;
  }

  .how-we-work-left p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgb(6, 6, 39);
    animation: fadeInUp 0.8s ease-out 0.2s;
  }

  .how-we-work-right {
    flex: 1;
    min-width: 400px;
    max-height: 600px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10px;
  }

  .how-we-work-card {
    background: linear-gradient(to right, #0f1d36, #0c1a2b);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .how-we-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  }

  .icon-box {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at center, #d98908, #f2e8e0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 25px;
  }
  .icon-box span {
    font-size: 24px;
    color: #fff;
  }

  .text-content {
    margin-left: 10px;
  }
  .text-content h3 {
    /* Remove fixed margin-right to avoid overflow */
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
  }
  .text-content p {
    color: #d1d5db;
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
  }

  /* Responsive Styles */
  @media (max-width: 900px) {
    .how-we-work-section {
      min-height: auto;
      padding: 40px 15px;
      gap: 40px;
    }
    .how-we-work-left, .how-we-work-right {
      min-width: 100%;
      max-width: 100%;
      text-align: center;
      padding: 0;
    }
    .how-we-work-right {
      max-height: none;
      padding-right: 0;
    }
    .how-we-work-card {
      max-width: 100%;
      flex-direction: row;
      justify-content: flex-start;
    }
    .text-content h3 {
      font-size: 1.3rem;
      margin-right: 0;
      text-align: left;
    }
    .text-content p {
      text-align: left;
    }
  }

  @media (max-width: 480px) {
    .how-we-work-left h2 {
      font-size: 2rem;
    }
    .how-we-work-left p {
      font-size: 1.1rem;
    }
    .text-content h3 {
      font-size: 1.1rem;
    }
    .text-content p {
      font-size: 1rem;
    }
    .icon-box {
      width: 40px;
      height: 40px;
      margin-top: 20px;
    }
    .icon-box span {
      font-size: 20px;
    }
  }
