/*
Theme Name: Cantamar Theme
Author: You
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary: #257dd5;
  --text-dark: #000;
  --bg-color: #1976d3;
  --heading-font: "Figtree", sans-serif;
  --background-linear: linear-gradient(90deg, #024988 0%, #017ca8 100%);
  --background-linear-two: linear-gradient(90deg, #018cb1 0%, #024788 100%);
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text-dark);
}

/* HEADER START*/

.main-header {
  background: #e9f2f7;
  padding: 14px 0;
}

.navbar-brand img {
  height: 90px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 12px;
  color: #000;
  font-family: "Figtree", sans-serif;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-btn {
  background: var(--background-linear);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s all;
}

.quote-btn:hover {
  background: #000;
  color: white;
}

/* HEADER END */

/* HERO SECTION START*/

.hero-section {
  position: relative;
  min-height: 770px;
  background: url(./assets/hero-bg.png) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-tag {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  color: #a8e4fe;
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Figtree", sans-serif;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  color: var(--primary);
  background-color: #fff !important;
}

.hero-btn-primary:hover {
  background-color: #000 !important;
  color: #fff;
}

.hero-btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s all;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 540px;
  }

  .hero-title {
    font-size: 26px;
  }
}

/* ABOUT SECTION START */
.about-section {
  background: #f8f8f8;
  padding: 100px 0;
}

.about-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 25px;
}

.about-tag i {
  font-size: 12px;
}

.about-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-title span {
  color: var(--primary);
}

.about-text {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
  font-weight: 300;
}

.about-btn {
  background: var(--background-linear-two);
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.4s all;
  text-decoration: none;
}

.about-btn:hover {
  background: #000;
  color: white;
}

.about-image {
  border-radius: 42px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-image {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }
}
/* ABOUT SECTION END */

/* FEATURE STRIP START  */

.feature-strip {
  margin-top: 60px;
}

.feature-box {
  background: var(--background-linear-two);
  border-radius: 22px;
  padding: 35px 30px;
}

.feature-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 36px;
  color: #fff;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.feature-item p {
  max-width: 230px;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}

/* VERTICAL BORDER */

.feature-border {
  border-left: 1px solid #257dd5;
  padding-left: 40px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .feature-border {
    border-left: none;
    border-top: 1px solid #257dd5;
    padding-left: 0;
    padding-top: 25px;
    margin-top: 25px;
  }

  .feature-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .feature-icon {
    font-size: 32px;
  }
}
/* FEATURE STRIP END  */

/* SPECIALITY SECTION START */

.specialties-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.decor-right {
  position: absolute;
  right: 0;
  top: -85px;
  width: 210px;
}

.decor-right img {
  width: 100%;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color:#fff;
  font-size: 16px;
  margin-bottom: 25px;
}

.section-tag i {
  font-size: 12px;
}

.specialties-title {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 80px;
  font-family: var(--heading-font);
}

.spec-image-top img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.water-banner img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.spec-product-image img {
  width: 90%;
  border-radius: 22px;
}

.spec-heading {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  font-family: var(--heading-font);
}

.spec-heading span {
  color: #848484;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 18px;
  transition: 0.4s all;
}

.spec-list li:hover {
  color: var(--primary);
  font-size: 20px;
}

.spec-list i {
  color: var(--primary);
  font-size: 18px;
}

.spec-text {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .specialties-title {
    font-size: 48px;
  }

  .decor-left,
  .decor-right {
    display: none;
  }

  .spec-product-image {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .specialties-title {
    font-size: 36px;
  }

  .spec-heading {
    font-size: 24px;
  }
}
/* SPECIALITY SECTION END */

/* ELEVATE PRODUCT SECTION START */

.elevate-section {
  position: relative;
  padding: 90px 0;
  background-image: url("./assets/product-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.elevate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 161, 201, 0.85) 0%,
    rgba(28, 115, 179, 0.75) 40%,
    rgba(28, 115, 179, 0.9) 100%
  );
  z-index: 1;
}

.elevate-section .container {
  position: relative;
  z-index: 2;
}

.elevate-product-img img {
  position: absolute;
  top: -60px;
  display: block;
}

.elevate-content {
  text-align: right;
  color: #fff;
}

.elevate-content h2 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.elevate-content p {
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* BUTTON */

.elevate-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.elevate-btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .elevate-content {
    text-align: center;
    margin-top: 40px;
  }

  .elevate-content p {
    margin: auto;
  }

  .elevate-product-img {
    text-align: center;
  }
}

/* ELEVATE PRODUCT SECTION END */

/* TEAM SECTION START */

.team-section {
  background: #d8f6ff;
  padding: 80px 0;
}

.team-heading {
  margin-bottom: 50px;
}

.team-tag {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
}

.team-tag i {
  font-size: 12px;
  margin-right: 6px;
}

.team-heading h2 {
  font-size: 38px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.team-heading p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
}

.team-item {
  text-align: center;
  font-family: var(--heading-font);
  margin-bottom: 30px;
}

.team-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.team-img img {
  width: 100%;
  display: block;
}

.team-item h5 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-item span {
  font-size: 16px;
  color: #555;
}

/* TEAM SECTION END */

/* MOLECULAR SECTION START */
.molecular-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.molecular-bg-text {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #ebf6ff;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.molecular-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.molecular-title {
  font-size: 42px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}

.molecular-title span {
  color: var(--primary);
}

.molecular-desc {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
}

.molecular-image {
  border-radius: 30px;
  overflow: hidden;
}

.molecular-image img {
  width: 85%;
  display: block;
  border-radius: 30px;
}

.feature-main-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
  font-family: var(--heading-font);
}

.feature-item-box {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.feature-item-box h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid #abd2fa;
  padding-bottom: 20px;
  max-width: 350px;
}

.feature-item-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #474747;
  margin: 0;
}

.molecular-decor {
  position: absolute;
  right: 0;
  top: 120px;
  width: 220px;
}

.molecular-decor img {
  width: 100%;
}

@media (max-width: 992px) {
  .molecular-bg-text {
    font-size: 80px;
  }

  .molecular-title {
    font-size: 32px;
  }

  .molecular-image {
    margin-bottom: 40px;
  }

  .molecular-decor {
    display: none;
  }
}

@media (max-width: 576px) {
  .molecular-bg-text {
    font-size: 60px;
  }

  .molecular-title {
    font-size: 26px;
  }
}
/* MOLECULAR SECTION END */

/* INSIGHT SECTION START */
.insights-section {
  padding: 80px 0;
  background: #f3fdff;
}

.insights-header {
  margin-bottom: 40px;
}

.insights-title {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-top: 15px;
}

.insights-title span {
  color: var(--primary);
}

.insights-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  
}

.insights-btn {
  background: var(--background-linear-two);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s;
  font-size: 16px;
}

.insights-btn:hover {
  background: #000;
  color: #fff;
}

.blog-card {
  background: transparent;
}

.blog-img {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.blog-meta {
  display: flex;
  font-size: 13px;
  color: #625e5e;
  margin-bottom: 12px;
  justify-content: space-between;
}

.blog-meta i {
  margin-right: 6px;
  color: #999;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.blog-desc {
  font-size: 16px;
  color: #474747;
  line-height: 1.7;
  max-width: 380px;
}

@media (max-width: 992px) {
  .insights-title {
    font-size: 32px;
  }

  .insights-text {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .insights-title {
    font-size: 26px;
  }

  .blog-img img {
    height: 220px;
  }
}
/* INSIGHT SECTION END */

/* CONTACT SECTION START */
.contact-section {
  padding: 120px 0;
  position: relative;
  color: #fff;
  background:
    url("./assets/contact-bg.png") center/cover no-repeat,
    #3972b8;
}

.contact-map {
  border-radius: 30px;
  overflow: hidden;
}

.contact-map img {
  width: 90%;
  object-fit: cover;
  border-radius: 30px;
}

.contact-title {
  font-size: 58px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: none;
  color: #fff;
}

.contact-btn {
  background: #ffffff;
  color: #1a5fa3;
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  transition: 0.4s all;
}

.contact-btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-map img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 28px;
  }
}

/* CONTACT SECTION END */

/* FOOTER START */

.main-footer {
  background: #003157;
  color: #fff;
  padding: 90px 0 30px;
}

.footer-title {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 15px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 360px;
}

.newsletter-form {
  gap: 10px;
}

.newsletter-form .form-control {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  background: transparent;
  box-shadow: none;
  border-color: #fff;
  color: #fff;
}

.footer-btn {
  background: #3972b8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  transition: 0.4s all;
}

.footer-btn:hover {
  background: #000;
  color: #fff;
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  transition: 0.2s all;
}

.footer-links a:hover {
  color: #fff;
  font-size: 18px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  opacity: 0.9;
}

.footer-contact i {
  font-size: 16px;
}

.footer-hours li {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
  }
}

/* FOOTER END */

/* ------------------------------CONTRACT-MANUFACTURING-INNERPAGE-CSS-START---------------------------------------------------- */

/* INNER HERO SECTION START*/

.inner-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("assets/inner-hero-bg.png") center/cover no-repeat;
  overflow: hidden;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 47, 93, 0.75) 0%,
    rgba(2, 113, 164, 0.75) 100%
  );
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.inner-hero-content h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.inner-hero-content p {
  font-size: 16px;
  margin: 0;
}

.inner-hero-content p a {
  color: #fff;
  text-decoration: none;
}

/* INNER HERO SECTION END*/

/* CONTRACT ABOUT SECTION START*/

.contract-about {
  padding: 110px 0;
  background: #f7f7f7;
}

.contract-img {
  border-radius: 30px;
  overflow: hidden;
}

.contract-img img {
  width: 100%;
  display: block;
}

.contract-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.contract-title span {
  color: var(--primary);
}

.contract-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}

.contract-btn {
  background: linear-gradient(to right, #017ca8 0%, #024988 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s all;
  text-decoration: none;
}

.contract-btn:hover {
  background: #000;
}

@media (max-width: 992px) {
  .contract-title {
    font-size: 34px;
  }

  .contract-img {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .contract-title {
    font-size: 28px;
  }

  .contract-text {
    font-size: 14px;
  }
}

/* CONTRACT ABOUT SECTION END*/

/* CERTIFICATION SECTION START*/

.certifications {
  background: #f2fff0;
  padding: 40px 0;
}

.certifications .row {
  flex-wrap: wrap;
}

.certifications img {
  max-height: 110px;
  width: auto;
  transition: transform 0.3s ease;
}

.certifications img:hover {
  transform: scale(1.08);
}

/* CERTIFICATION SECTION END*/

/* SERVICE SECTION START */
.services-section {
  background: #f8f8f8;
}

.service-tag {
  font-size: 16px;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.service-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-title span {
  color: var(--primary);
}

.service-text {
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-item p {
  font-size: 16px;
  color: #6d6d6d;
  margin: 0;
}

.service-icon img {
  width: 30px;
}

.service-item:hover {
  background: #e9eef4;
  transform: translateX(5px);
}

.service-item:hover h5 {
  color: var(--primary);
}

.service-image {
  max-width: 420px;
  border-radius: 25px;
  width: 100%;
}

/* SERVICE SECTION END */

/* WHY CHOOSE SECTION START */

.why-choose {
  padding: 110px 0;
  background: #d8f6ff;
}

.why-img {
  border-radius: 30px;
  overflow: hidden;
}

.why-img img {
  width: 100%;
  display: block;
}

.why-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.why-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-choose-btn {
  background: linear-gradient(to right, #017ca8 0%, #024988 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s all;
  text-decoration: none;
}

.why-choose-btn:hover {
  background: #000;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-title {
    font-size: 34px;
  }

  .why-img {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .why-title {
    font-size: 28px;
  }

  .why-text {
    font-size: 15px;
  }
}

/* WHY CHOOSE SECTION END */

/* FORMAT SECTION START */
.format-section {
  padding: 110px 0;
  background: #fff;
}

.team-water {
  display: flex;
}

.team-water img {
  width: 50%;
  display: block;
}

.format-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 25px;
  justify-content: center;
}

.format-tag i {
  font-size: 12px;
}

.format-title {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}
.format-text {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.format-item {
  text-align: center;
  cursor: pointer;
}

.format-icon {
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 50%;
  background: #0d4b84;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.format-icon img {
  width: 60px !important;
  filter: brightness(0) invert(1);
}

.format-item p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}

.format-item:hover .format-icon {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: none;
}

.format-item:hover .format-icon img {
  filter: brightness(0) invert(0);
}

.format-slider .owl-dots {
  margin-top: 40px;
  text-align: center;
}

.format-slider .owl-dot span {
  width: 38px;
  height: 4px;
  background: #ddd;
  display: block;
  margin: 5px;
  border-radius: 3px;
}

.format-slider .owl-dot.active span {
  background: #b2d1ef;
}

/* FORMAT SECTION END*/
/* =========================
   GLOBAL RESPONSIVE BREAKPOINTS
   ========================= */

/* XL (≤1200px) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 42px;
  }
}

/* LG (≤992px) */
@media (max-width: 992px) {
  /* NAVBAR */
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  /* HERO */
  .hero-section {
    min-height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  /* ABOUT */
  .about-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-image {
    margin-top: 40px;
  }

  /* FEATURE */
  .feature-border {
    border-left: none;
    border-top: 1px solid #257dd5;
    padding-left: 0;
    padding-top: 25px;
    margin-top: 25px;
  }

  .feature-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  /* SPECIALTY */
  .specialties-title {
    font-size: 48px;
  }

  .decor-left,
  .decor-right {
    display: none;
  }

  .spec-product-image {
    margin-top: 40px;
  }

  /* ELEVATE */
  .elevate-content {
    text-align: center;
    margin-top: 40px;
  }

  .elevate-content p {
    margin: auto;
  }

  .elevate-product-img {
    text-align: center;
  }

  /* MOLECULAR */
  .molecular-bg-text {
    font-size: 80px;
  }

  .molecular-title {
    font-size: 32px;
  }

  .molecular-image {
    margin-bottom: 40px;
  }

  .molecular-decor {
    display: none;
  }

  /* INSIGHTS */
  .insights-title {
    font-size: 32px;
  }

  .insights-text {
    max-width: 100%;
  }

  /* CONTACT */
  .contact-title {
    font-size: 36px;
  }

  .contact-map img {
    height: 400px;
  }

  /* CONTRACT */
  .contract-title {
    font-size: 34px;
  }

  .contract-img {
    margin-bottom: 40px;
  }

  /* WHY CHOOSE */
  .why-title {
    font-size: 34px;
  }

  .why-img {
    margin-bottom: 40px;
  }
}

/* MD (≤768px) */
@media (max-width: 768px) {
  /* HERO */
  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  /* FOOTER */
  .newsletter-form {
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
  }
}

/* SM (≤576px) */
@media (max-width: 576px) {
  /* HERO */
  .hero-section {
    min-height: 540px;
  }

  .hero-title {
    font-size: 26px;
  }

  /* ABOUT */
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }

  /* SPECIALTY */
  .specialties-title {
    font-size: 36px;
  }

  .spec-heading {
    font-size: 24px;
  }

  /* MOLECULAR */
  .molecular-bg-text {
    font-size: 60px;
  }

  .molecular-title {
    font-size: 26px;
  }

  /* INSIGHTS */
  .insights-title {
    font-size: 26px;
  }

  .blog-img img {
    height: 220px;
  }

  /* CONTACT */
  .contact-title {
    font-size: 28px;
  }

  /* CONTRACT */
  .contract-title {
    font-size: 28px;
  }

  .contract-text {
    font-size: 14px;
  }

  /* WHY */
  .why-title {
    font-size: 28px;
  }

  .why-text {
    font-size: 15px;
  }
}

.navbar-brand img {
  height: 110px;
}

/* Mobile */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-section {
    background-position: right;
  }
}

.contact-hero {
  background: #f8fafc;
}

.info-box {
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box i {
  font-size: 28px;
  color: #2b76b5;
  margin-bottom: 10px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.cta-strip {
  background: #0f172a;
  color: #fff;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 br {
  display: none;
}

/* IMAGE FIX */
.blog-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* CARD CLEAN */
.blog-card {
  background: transparent;
}

/* META LINE */
.blog-meta span {
  font-size: 14px;
  color: #6c757d;
}

/* TITLE */
.blog-title a {
  text-decoration: none;
  color: #000;
}

/* SPACING */
.blog-desc {
  font-size: 14px;
  color: #555;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.newsletter-form form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.newsletter-form input[type="submit"],
.newsletter-form button {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
}

.es_form_container {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.es_subscription_form {
  background: transparent !important;
}

.footer-hours {
  list-style: none;
  padding: 0;
}

.footer-hours li {
  margin-bottom: 10px;
}

.main-footer .col-lg-4,
.main-footer .col-lg-3,
.main-footer .col-lg-2 {
  display: flex;
  flex-direction: column;
}

/* COMMON SECTION SPACING */
section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
}

.inner-hero {
  background: linear-gradient(135deg, #0b2239, #0d6efd);
  color: #fff;
  padding: 100px 0;
}

.inner-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.inner-hero p {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto;
  color: #dbe7ff;
}
section h2 {
  font-size: 36px;
  font-weight: 700;
 
  margin-bottom: 15px;
}

section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  
  text-align: center;
}

section p {
  font-size: 16px;
  line-height: 1.7;
  
}

.benefits-row {
  margin-top: 40px;
}

.benefit-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.check-icon {
  color: #0d6efd;
  font-size: 18px;
  font-weight: bold;
}

.benefit-box p {
  margin: 0;
  font-size: 15px;
}

.bg-light {
  background: #f8fbff !important;
}

.custom-list {
  margin-top: 25px;
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
}

.custom-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

.contract-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #0d6efd, #0b2239);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.contract-btn:hover {
  opacity: 0.9;
}

.blog-title {
  font-size: 42px;
  font-weight: 700;
}

.blog-title span {
  color: #0d6efd;
}

.blog-desc {
  font-size: 16px;
  color: #555;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.blog-card h5 {
  font-size: 18px;
  font-weight: 600;
}

.blog-card h5 a {
  color: #000;
  text-decoration: none;
}

.blog-card p {
  font-size: 14px;
  color: #555;
}

.blog-detail-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  display: flex;
  gap: 15px;
}

.blog-detail-img img {
  width: 100%;
  border-radius: 12px;
}

.blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.blog-content p {
  margin-bottom: 15px;
}

.home-services {
  padding: 80px 20px;
  background: #f5f6f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.section-header h2 span {
  color: #2b6cb0;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

/* LEFT IMAGE */
.services-image img {
  width: 100%;
  border-radius: 20px;
}

/* RIGHT GRID */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* FEATURED CARD */
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #e6f0ff, #ffffff);
}

/* ICON */
.service-card .icon {
  width: 50px;
  height: 50px;
  background: #edf4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-card .icon img {
  width: 24px;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.contract-services {
  padding: 80px 20px;
  background: #f5f6f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
}

.section-header h2 span {
  color: #2b6cb0;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto 0;
  color: #666;
}

/* LAYOUT */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.services-image img {
  width: 100%;
  border-radius: 20px;
}

/* LIST */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM */
.service-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: transparent;
  transition: 0.3s;
}

/* ACTIVE ITEM */
.service-item.active {
  background: #dbeaf4;
}

/* ICON */
.service-item .icon {
  min-width: 50px;
  height: 50px;
  background: #0e7490;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .icon img {
  width: 24px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.service-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.service-item p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.service-item:hover {
  background: #eaf4fb;
}

.strengths-section {
  background: #cfe3ec;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.top-title {
  color: #2b6cb0;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
}

/* GRID */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.strength-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* IMAGE */
.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 20px;
  position: relative;
}

/* ICON */
.card-content .icon {
  width: 45px;
  height: 45px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -22px;
  left: 20px;
}

.card-content .icon img {
  width: 22px;
}

/* TEXT */
.card-content p {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

/* BOTTOM POINTS */
.strength-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eaf4fb;
  padding: 12px 18px;
  border-radius: 25px;
}

.point .check {
  color: #2b6cb0;
  font-weight: bold;
}
.bg-text-section {
  position: relative;
 padding: 0px;
  overflow: hidden;
  background: #fff;
}

/* BIG FADED TEXT */
.bg-text {
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  color: rgba(43, 108, 176, 0.15); /* light blue faded */
  white-space: nowrap;
  pointer-events: none;
}

.challenges-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* LAYOUT */
.challenges-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.challenges-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.challenges-content .desc {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* LIST */
.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.challenge-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ICON */
.challenge-item .icon {
  width: 40px;
  height: 40px;
  background: #0e7490;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-item .icon img {
  width: 18px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.challenge-item p {
  font-size: 14px;
  color: #333;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #0e7490;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0c5f75;
}

/* IMAGE */
.challenges-image img {
  width: 100%;
  border-radius: 20px;
}

