@media (max-width: 1300px) {
  .carousel-control {
    display: none;
  }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.brand-text {
    white-space: nowrap;
    line-height: 1;
}

.navbar-logo {
    height: 55px;
    width: auto;
}

.navbar-primary .navbar-brand {
  display: flex;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
  align-items: center;
  text-align: center;
  margin: 0;
  color: #e63946;
}

/* Products Carousel Styles */
.products-btn {
  margin-top: 18px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-services-carousel {
  overflow: hidden;
  position: relative;
  padding: 0px 0 80px 0;
}
.section-services-carousel .services-h2 {
  margin-bottom: 30px !important;
}
.services-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
  cursor: grab;
}

.services-carousel-wrapper:active {
  cursor: grabbing;
}

.services-carousel-wrapper.dragging {
  cursor: grabbing;
  user-select: none;
}

.services-carousel-wrapper.dragging * {
  cursor: grabbing;
  user-select: none;
}

.services-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 10px 0;
  transition: transform 0.5s ease-in-out;
}

/* Service Card Carousel - Exactly 3 cards visible on desktop */
.service-card-carousel {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}

.feature-carousel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -ms-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-carousel:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-carousel .fbox-photo {
  position: relative;
  overflow: hidden;
  -ms-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.feature-carousel .fbox-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  -ms-border-radius: 0;
  border-radius: 0;
}

.feature-carousel .fbox-photo:hover img {
  transform: scale(1.05);
}

.feature-carousel .fbox-content {
  padding: 25px 15px 20px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-carousel .fbox-content h3 {
  font-size: 1.25em;
  font-weight: 600;
  color: #1863ab;
  margin: 0 0 10px 0;
}

.feature-carousel .fbox-content h3 a {
  color: #1863ab;
  text-decoration: none;
  transition: color 0.3s;
}

.feature-carousel .fbox-content h3 a:hover {
  color: #e63946;
}

.feature-carousel .fbox-content p {
  color: #000;
  font-size: 16px;
  /* line-height: 1.75; */
}

.feature-carousel .fbox-content p:last-child {
  margin-bottom: 0;
}

.feature-carousel .btn-link {
  color: #e63946;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
}

.feature-carousel .btn-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e63946;
  transition: width 0.3s;
}

.feature-carousel .btn-link:hover:after {
  width: 100%;
}

/* Tablet - 2 cards visible */
@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .service-card-carousel {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .services-carousel-track {
    gap: 30px;
  }
}

/* Mobile Large - 2 cards visible */
@media only screen and (max-width: 767px) and (min-width: 480px) {
  .service-card-carousel {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .services-carousel-track {
    gap: 20px;
  }

  .feature-carousel .fbox-content {
    padding: 20px;
  }

  .feature-carousel .fbox-content h3 {
    font-size: 1.125em;
  }

  .feature-carousel .fbox-content p {
    font-size: 14px;
  }

  .feature-carousel .fbox-photo img {
    height: 200px;
  }
}

/* Mobile - 1 card visible */
@media only screen and (max-width: 479px) {
  .services-carousel-wrapper {
    padding: 0 10px;
  }

  .service-card-carousel {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .services-carousel-track {
    gap: 15px;
  }

  .feature-carousel .fbox-content {
    padding: 20px 15px;
  }

  .feature-carousel .fbox-content h3 {
    font-size: 1.125em;
    margin-bottom: 12px;
  }

  .feature-carousel .fbox-content p {
    font-size: 14px;
    /* line-height: 1.6; */
  }

  .feature-carousel .fbox-photo img {
    height: 180px;
  }

  .feature-carousel .btn-link {
    font-size: 12px;
  }
}

/* Accessibility */
.feature-carousel a:focus {
  outline: 2px solid #1863ab;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .services-carousel-track {
    transition: none;
  }

  .feature-carousel,
  .feature-carousel .fbox-photo img {
    transition: none;
  }
}

.footer-widget .navbar-brand {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e63946;
  margin-bottom: 0px;
  /* line-height: 1.2; */
}

.footer-widget .navbar-text {
  margin: 0 0 0 16px;
}

.footer-widget .navbar-brand:hover {
  color: #e63946;
}

@media (max-width: 767px) {
  .footer-widget .navbar-brand,
  .footer-widget .navbar-text {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }

  .footer-widget .navbar-text {
    margin-top: 10px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .footer-widget .navbar-text {
    font-size: 14px;
  }
}

/* infrastructure Home starts */
.infra-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.infrastructure-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.infra-card {
  background: #1863ab;
  border: 2px solid #e5e5e5;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.infra-card img:hover {
  border-radius: none;
}

.infra-card img {
  width: 100%;
  height: 220px;
  border-radius: 15px 15px 30px 30px;
  padding: 4px 6px 7px 6px;
  object-fit: cover;
  border: none;
  transition: all 0.3s ease;
}

.infra-card span {
  display: block;
  padding: 18px 15px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  background: #1863ab;
  transition: all 0.3s ease;
}

/* Hover Effects */
.infra-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: #1863ab;
}

.infra-card:hover img {
  transform: scale(1.08);
}

.infra-card:hover span {
  color: #1863ab;
  background: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .infra-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .infra-card img {
    height: 180px;
  }

  .infra-card span {
    font-size: 16px;
    padding: 15px 12px;
  }
}

@media (max-width: 576px) {
  .infra-card img {
    height: 200px;
  }
}
/* infrastructure Home ends */



/* about section started */
.image-banner {
  width: 100%;
  height: 399px;          /* same banner height */
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 key property */
  display: block;
  max-height: 400px;
}
@media (max-width: 768px) {
  .image-banner {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .image-banner {
    height: 240px;
  }
}
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* TEXT */
.about-text h2 {
    font-size: 2.25em;
    color: #1863ab;
  color: #0d5fb8;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 18px;
}

.about-text .intro {
  font-size: 16px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 28px;
  }
}





/* CONTACT CSS STARTED */



.contact-section {
  background: #f7fbff;
  padding: 80px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-tag {
  color: #0d6efd;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 2.25em;
    color: #1863ab;
  font-weight: 700;
 
  margin-bottom: 50px;
}

/* Cards layout */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e6eef8;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid #dbe7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0d6efd;
  margin: 0 auto 25px;
}

/* Text */
.contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.contact-card .bold {
  font-weight: 600;
  color: #000;
}
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 28px;
  }
}
.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;   /* 👈 Increase height (adjust if needed) */
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .map-container {
    padding-bottom: 60%;
  }
}

@media (max-width: 480px) {
  .map-container {
    padding-bottom: 70%;
  }
}

/* 
enquires css started */

/* Centered Contact Form - Full Responsive */
.contact-wrapper {
  background: linear-gradient(135deg, #0d7dbb 0%, #1e3a8a 100%);
  min-height: 100vh;
  padding: 80px 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}



.contact-left {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.contact-title {
  color: white;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.contact-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 4vw, 16px);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  position: relative;
}

.field.full-width {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.field input:focus,
.field textarea:focus {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.field-line {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.field:focus-within .field-line {
  width: 100%;
}

.btn-primary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive - Full coverage down to 300px */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 60px 15px;
    min-height: 100vh;
  }
  
  .contact-left {
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .contact-left {
    padding: 25px 18px;
    margin: 0 5px;
  }
  
  .field input,
  .field textarea {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .btn-primary {
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .contact-wrapper {
    padding: 40px 10px;
  }
  
  .contact-left {
    padding: 20px 15px;
    margin: 0;
    border-radius: 16px;
  }
  
  .contact-title {
    font-size: 1.8rem !important;
  }
  
  .contact-subtitle {
    font-size: 14px !important;
  }
  
  .field label {
    font-size: 12px;
  }
}

@media (max-width: 300px) {
  .contact-container {
    padding: 0 5px;
  }
  
  .contact-left {
    padding: 18px 12px;
  }
  
  .btn-primary {
    font-size: 14px;
    padding: 12px 16px;
  }
  
  .arrow-icon {
    width: 16px;
    height: 16px;
  }
}


/* products css started */

.blog-card {
    height: 300px; /* Fixed total card height - adjust as needed */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    flex-shrink: 0; /* Image keeps original size */
    height: 180px; /* Fixed image height */
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    flex-shrink: 0;
    line-height: 1.2;
}

.blog-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9em;
}

/* Custom scrollbar for better UX */
.blog-content::-webkit-scrollbar {
    width: 4px;
    height: 50px;
}

.blog-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.blog-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.blog-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.blog-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.blog-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fbb034;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 5px;
  text-align: center;
}

.blog-content {
  padding: 0px;
  margin-bottom: 15px;
  
}

.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.blog-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid #0d7dbb;
  background: #fff;
  color: #0d7dbb;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button.active,
.pagination button:hover {
  background: #0d7dbb;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .quote-btn a.btn {
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #fff !important;
    color: #ffffff !important;
  }
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }
    
    .blog-card {
        height: 280px;
    }
    
    .blog-img {
        height: 160px;
    }
}
.blog-content {
    flex: 1;
    padding: 15px 0px 15px 15px ;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}







.blog-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9em;
}

/* 
model css  */
.modern-cta {
  padding: 55px 0;
  background: linear-gradient(135deg, #0f4c81, #1b6fbf);
  position: relative;
  overflow: hidden;
}

.modern-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.modern-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
}

.cta-text {
  max-width: 650px;
}

.cta-tag {
  display: inline-block;
  margin-bottom: 25px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  text-transform: uppercase;
}

.cta-text h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 12px;
  width: 800px;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
}

.cta-action {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #fff;
  color: #0f4c81;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn span {
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

.cta-btn:hover span {
  transform: translateX(5px);
}

/* Mobile */
@media (max-width: 768px) {
  .modern-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 28px;
  }
}
.heading-lg{
  color: #1863ab;
}
.blog-title{
  color: #1863ab;

}

.distribution-modern {
  position: relative;
  padding: 40px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.distribution-modern .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 52, 92, 0.9),
    rgba(77, 82, 87, 0.85)
  );
}

.distribution-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.dist-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  margin-bottom: 40px;
}

.dist-left h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.dist-intro {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 24px;
}

.dist-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dist-points li {
  padding-left: 26px;
  margin-bottom: 14px;
  position: relative;
  font-size: 15px;
}

.dist-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4dd0ff;
  font-weight: bold;
}

.dist-right .dist-highlight {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 16px;
}

.dist-highlight h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dist-highlight p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
  .distribution-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dist-points li {
    text-align: left;
  }

  .dist-left h2 {
    font-size: 30px;
  }
}
.offer-apple {
  position: relative;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );
}

.offer-content {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.offer-content h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.offer-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.offer-features span {
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
  
}

/* Mobile */
@media (max-width: 768px) {
  .offer-content h2 {
    font-size: 32px;
  }

  .offer-lead {
    font-size: 16px;
  }
   .navbar .quote-btn > a.btn:hover {
    color: black !important;
    background-color: white !important;
    border: 1px solid #000 !important;
  }
}
.contact-title {
  color: #1863ab;       /* Original color */
       /* Large enough for desktop */
  font-weight: 600;      /* Semi-bold */
  margin: 0 0 15px 0;    /* Spacing below the title */
  padding: 10px 0;       /* Padding above and below */
  line-height: 1.2;      /* Better readability */
  text-align: center;     /* Center the title */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-title {
   /* Smaller on tablets */
    padding: 8px 0;
    margin-bottom: 12px;
    text-align: center; /* Keep centered */
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;  /* Smaller on mobile */
    padding: 6px 0;
    margin-bottom: 10px;
    text-align: center; /* Keep centered */
  }
}

