
body {
  font-family: Arial, sans-serif;
}

.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.nav-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 70px;  
 
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #111;
  position: relative;
  padding: 8px 0;
  
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #65a7e9, #5293d4);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}


@media (max-width: 768px) {

  .nav-logo img {
    height: 56px;
    height: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    width: 260px;
    padding: 24px;
    gap: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 15px;
  }
}


.hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}


.hero-content {
  position: absolute;
  z-index: 2;
}
.hero-content h1,
.hero-content h6 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.hero-section .carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
}
.hero-section .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero-section h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.hero-section h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
}
.hero-section h1 span {
  display: block;
}
.hero-section button {
  margin-top: 20px;
}

.btn-primary {
  background-color: #2473c2;
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.fade-in {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.7rem;
  }
  .hero-section .carousel-item {
    height: 300px;
  }
}

@media (max-width: 768px) {
 
  
  .offcanvas-end {
    width: 70% !important;
  }

  .offcanvas-body ul {
    padding-left: 0;
  }

  .offcanvas-body .nav-item {
    margin-bottom: 10px;
  }

 
  .hero-section .carousel-item {
    height: 300px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-section h6 {
    font-size: 0.9rem;
  }

  .hero-section button {
    font-size: 1rem;
    padding: 10px 15px;
    margin-top: 20px;
  }
  .hero-section button {
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 15px;
  }

  .content-section {
    padding: 10px;
  }

  .content-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .content-section-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .content-section-stat {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .content-section-stat-title {
    font-size: 0.9rem;
    padding-top: 0.5rem;
  }

  .content-section-image {
    height: 180px;
    object-fit: cover;
  }
}
@media (max-width: 576px) {
  .content-section-image {
    display: none;
  }
  .content-section .col-lg-4 {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .content-section-image {
    display: none;
  }
  .content-section .col-lg-4 {
    display: none;
  }
}


.content-section {
  background-color: #2473c2;
  color: #f1f7ff;
  padding-top: 15px;
}
.content-section-title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.content-section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.content-section-stat {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f1f7ff;
}
.content-section-stat-title {
  font-size: 1rem;
  color: #f1f7ff;
  border-top: 1px solid #f1f7ff;
  padding-top: 0.5rem;
  width: 80%;
}

.content-section-image {
  width: 100%;
  height: 450px;         
  object-fit: cover;
   border-radius: 0.5rem;
}


.gallery-section {
  padding: 80px 0;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 50px;
}
.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px; 
}
.gallery-subtitle {
  color: #2473c2;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery-title {
  font-size: 2.2rem;
  font-weight: 700;
}


.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 22px;
}

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

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-row .gallery-item {
  height: 200px;          
}


.gallery-row .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      
}

/* Image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}


.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  transition: background 0.4s ease;
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}


.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.tall-item {
  height: 470px;
}

.wide-item {
  height: 250px;
}


@media (max-width: 768px) {
  .gallery-container {
    padding: 0 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tall-item,
  .wide-item {
    height: 250px;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-overlay h4 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.75rem;
  }
}


.feature-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 60px auto;
  flex-wrap: wrap;
  padding: 0 8%; 
  box-sizing: border-box;
}

.feature-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  flex: 1 1 calc(20% - 20px); 
  min-width: 180px;
  box-sizing: border-box;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  padding: 5px;
}

.feature-text h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.feature-text p {
  font-size: 14px;
  color: #666;
  margin: 2px 0 0;
}


@media (max-width: 992px) {
  .feature-item {
    flex: 1 1 calc(33.33% - 20px); 
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 calc(50% - 20px); 
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 1 1 100%; 
  }
}

.products-section {
  padding: 60px 20px;
  text-align: center;
}

.products-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.subheading {
  font-size: 1rem;
  font-weight: 600;
  color: #a0aec0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #176b87;
}


.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
}

.item-icon {
  width: 70px;
  height: 70px;
}

.item-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.item-description {
  font-size: 0.9rem;
  color: #555;
}


.center-image {
  flex: 1 1 30%;
}

.main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }

  .column {
    flex: 1 1 100%;
  }

  .center-image {
    order: -1; 
  }
}


@media (max-width: 768px) {
  .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
    padding: 20px;
  }

  .column {
    flex: none;
    gap: 15px;
  }

  .item {
    align-items: flex-start;
    gap: 10px;
  }

  .item-description {
    font-size: 0.8rem;
  }
}


@media (max-width: 480px) {
  .content-wrapper {
    grid-template-columns: 1fr; 
    gap: 10px;
  }

  .item {
    gap: 8px;
  }

  .item-icon {
    width: 50px;
    height: 50px;
  }

  .item-heading {
    font-size: 1rem;
  }

  .item-description {
    font-size: 0.75rem;
  }
}

.blog-section {
  padding: 80px 0;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 800px;   
  margin: 0 auto;      
  padding: 0 20px; 
}

.blog-box {
  overflow: hidden;
}

.blog-image {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.blog-content {
  position: absolute;
  bottom: 30px;
  left: 25px;
  z-index: 2;
  color: #fff;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-button {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}


.blog-box:hover .blog-overlay {
  background: rgba(0, 0, 0, 0.75);
}


@media (max-width: 991px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }
  .blog-box {
    max-width: 100%;
  }
  .single-cta {
    flex-direction: column;
  }
  .cta-text {
  text-align: center !important;
}
.footer-social-icon {
  text-align: center;
}
.footer-logo {
  text-align: center;
}
.footer-text{
  text-align: center;
}

}


ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  background: #f1f7ff;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #91c1f2;
}
.footer-cta .row {
  justify-content: center;
}

.single-cta {
  display: flex;
  align-items: center;
  justify-content: center;   
  text-align: center;
  gap: 12px;
}

.single-cta i {
  font-size: 30px;
  margin: 0;
}

.cta-text {
  text-align: left;
}

.single-cta i {
  color: #2473c2;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #2473c2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #2473c2;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #2473c2;
  line-height: 28px;
}
.footer-social-icon span {
  color: #2473c2;
  display: block;
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  margin-top: 20px;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.instagram-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #2473c2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #91c1f2;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #91c1f2;
}
.footer-widget ul li a {
  color: #2473c2;
  text-transform: capitalize;
  text-decoration: none;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid #91c1f2;
  
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #91c1f2;
  padding: 13px 20px;
  border: 1px solid #91c1f2;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #91c1f2;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #2473c2;
}
.copyright-text p a {
  color: #f1f7ff;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #2473c2;
}
.footer-menu li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}


.product-img {
    height: 300px;
    object-fit: contain;
    padding: 20px;
  }

  @media (max-width: 768px) {
    .product-img {
      height: 220px;
    }
  }
.hero_about {
      position: relative;
      background: url("images/Product_1.3.jpeg") no-repeat center center/cover;
      height: 80vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero_about::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero_about .content {
      position: relative;
      z-index: 2;
    }

    .hero_about h1 {
       font-size: 4rem;
      font-weight: bold;
      line-height: 1.2;
    }

    .hero_about p {
      font-size: 1.4rem;
      margin: 20px 0 30px;
    }

    .cta-button {
      padding: 14px 34px;
      background-color: #2473c2;
      color: #fff;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.05rem;
    }

    .cta-button:hover {
      background-color: #2473c2;
    }

  
    .section-title {
     font-size: 2.2rem;
  font-weight: 700;
      color: #2473c2;
     
    }

    .section-sub {
      font-size: 1.2rem;
      color: #666;
    }

    .journey-step {
      border-left: 5px solid #2473c2;
      padding-left: 30px;
      margin-bottom: 45px;
    }

    .journey-step h5 {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .journey-step p {
      font-size: 1.15rem;
      line-height: 1.8;
    }

    .icon-box {
      background: #ffffff;
      border-radius: 18px;
      padding: 35px;
      height: 100%;
      box-shadow: 0 15px 40px rgba(0,0,0,0.07);
      transition: transform 0.3s ease;
    }

    .icon-box:hover {
      transform: translateY(-6px);
    }

    .icon-box h5 {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .icon-box p {
      font-size: 1.1rem;
      line-height: 1.7;
    }

    
    .mission-strip {
      background: linear-gradient(90deg, #65a7e9, #5293d4);
      color: white;
      border-radius: 30px;
    }

   .trust-point h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-point p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

.trust-number {
  font-size: 3rem;
  font-weight: 900;
  color: #2473c2;
  opacity: 0.15;
  display: block;
  margin-bottom: 10px;
}

.trust-line {
  width: 4px;
  height: 260px;
  background: linear-gradient(180deg, #65a7e9, #5293d4);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .row.g-3 > .col-6 {
    padding-left: 6px;
    padding-right: 6px;
  }

  .row.g-3 .p-3 {
    padding: 14px !important;
  }

  .row.g-3 h6 {
    font-size: 0.95rem;
  }

  .row.g-3 p {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {
  .row.align-items-center > div:last-child {
    text-align: center;
  }

  .row.align-items-center p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .row.align-items-center .badge {
    display: inline-block;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {

  
  .hero_about {
    height: 65vh;
    padding: 0 16px;
  }

  .hero_about h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero_about p {
    font-size: 1.1rem;
    margin: 15px 0 25px;
  }

  .cta-button {
    padding: 12px 26px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 1rem;
  }

  .journey-step {
    padding-left: 20px;
    margin-bottom: 35px;
  }

  .journey-step h5 {
    font-size: 1.2rem;
  }

  .journey-step p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .icon-box {
    padding: 25px;
  }

  .icon-box h5 {
    font-size: 1.25rem;
  }

  .icon-box p {
    font-size: 1rem;
  }


  .mission-strip {
    padding: 30px 20px !important;
    border-radius: 22px;
  }

  .mission-strip h2 {
    font-size: 1.9rem !important;
    text-align: center;
  }

  .mission-strip p {
    font-size: 1.05rem;
    text-align: center;
  }


  .trust-point {
    text-align: center;
    margin-bottom: 40px;
  }

  .trust-number {
    font-size: 2.4rem;
  }

  .trust-point h4 {
    font-size: 1.4rem;
  }

  .trust-point p {
    font-size: 1rem;
  }

  .trust-line {
    display: none;
  }
}
.icon-box h5 i {
  font-size: 1.3rem;
  vertical-align: middle;
}


.contact-modern {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

.contact-hero {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(90deg, #65a7e9, #5293d4);
  color: #fff;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.contact-block {
  display: flex;
  gap: 50px;
  padding: 90px 10%;
  align-items: center;
}

.contact-block.reverse {
  flex-direction: row-reverse;
  background: #f6f9fc;
}

.contact-content {
  flex: 1;
}

.badge {
  background: rgba(36,115,194,0.15);
  color: #2473c2;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
}

.contact-content h2 {
  font-size: 2.8rem;
  margin: 15px 0;
  color: #2473c2;
}

.contact-content p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.contact-content i {
  color: #2473c2;
  margin-right: 10px;
}

.address {
  line-height: 1.9;
}

.contact-map {
  flex: 1;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(36,115,194,0.25);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.email-strip {
  padding: 70px 20px;
  background: #2473c2;
  color: #fff;
  text-align: center;
}

.email-strip h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.emails {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.emails span {
  font-size: 1.1rem;
  font-weight: 600;
}

.emails i {
  margin-right: 8px;
}

@media (max-width: 992px) {
  .contact-block,
  .contact-block.reverse {
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content p {
    justify-content: center;
  }

  .contact-map {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-block {
    padding: 50px 16px;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .contact-content p {
    font-size: 1rem;
  }

  .contact-map {
    height: 260px;
    border-radius: 18px;
  }

  .emails span {
    font-size: 0.95rem;
  }
}