:root {
    --brand: #5ea6c7;
    --sub: #47a356;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* ==============================
   APPLY AS DISTRIBUTOR BUTTON
============================== */
.classynav ul li.distributor-btn a {
  background: linear-gradient(135deg, #00b4db, #0083b0);
  color: #ffffff !important;
  padding: 10px 22px;
  padding-top: 8px !important;
  border-radius: 10px !important;
  font-weight: 600;
  font-size: 16px !important;
  margin-left: 15px;
  transition: all 0.35s ease;
  display: inline-block;
  line-height: normal;
}

/* Hover Effect */
.classynav ul li.distributor-btn a:hover {
  background: linear-gradient(135deg, #0083b0, #00b4db);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 180, 219, 0.4);
}

/* Active / Focus */
.classynav ul li.distributor-btn a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 180, 219, 0.35);
}

/* Mobile View Adjustment */
@media (max-width: 991px) {
  .classynav ul li.distributor-btn a {
    padding: 10px 22px;
    padding-top: 0px !important;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}


.ecosip-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(102, 131, 133, 0.363);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10%;
}

.hero-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    color: azure;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Button */
/* Slider Button Wrapper */
.fancy-btn {
    width: 11em;
    height: 3.5em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 3px ridge var(--brand);
    background: transparent;
    color: #fff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;

    cursor: pointer;
    border-radius: 0.35em;
    overflow: hidden;

    transition: all 0.4s ease;
}

/* Top & Bottom overlays */
.fancy-btn::after,
.fancy-btn::before {
    content: "";
    position: absolute;
    left: 3%;
    width: 94%;
    height: 40%;
    background-color: rgba(45, 124, 170, 0.6);
    transition: transform 0.5s ease;
    transform-origin: center;
    z-index: -1;
}

.fancy-btn::after {
    top: -10px;
}

.fancy-btn::before {
    top: 80%;
}

/* Hover effects */
.fancy-btn:hover::before,
.fancy-btn:hover::after {
    transform: scale(0);
}

.fancy-btn:hover {
    box-shadow: inset 0 0 25px rgba(41, 130, 212, 0.7),
                0 8px 20px rgba(24, 114, 156, 0.35);
    color: #fff;
}


@media (max-width: 576px) {
    .fancy-btn {
        width: 9.5em;
        height: 3.2em;
        font-size: 14px;
    }
}


/* Arrows */
.hero-arrows .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 4;
}


.hero-arrows .arrow:hover {
    color: #000;
}

.hero-arrows .prev {
    left: 25px;
}

.hero-arrows .next {
    right: 25px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active,
.hero-dots .dot:hover {
    background: var(--brand);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-arrows .arrow {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .ecosip-hero-slider {
        height: 90vh;
    }

    .hero-arrows {
        display: none;
    }
}

.about-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE AREA */
.about-image-wrapper {
  position: relative;
  flex: 1;
  /* min-height: 450px; */
}

/* Background floating image */
.bg-transition-image {
  position: absolute;
  align-self: center !important;
  top: -100px;
  left: -60px;
  margin-top: -20px;
  width: 580px;
  height: auto;
  opacity: 0.45;
  z-index: 0;
  animation: floatRotate 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.bg-transition-image img {
  width: 100%;
}

.main-image {
  display: flex;
  align-items: center;
  gap: 10px; /* space between images */
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
 
}

.main-image img {
  max-width: 100%;
  height: auto;
  width: 50%;
  display: block;
  transition: transform 1.2s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 38px;
  color: #014f86;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* Floating animation (Kevala Niru style) */
@keyframes floatRotate {
  0% {
    transform: translateY(0) rotateZ(-3deg);
  }
  50% {
    transform: translateY(25px) rotateZ(3deg);
  }
  100% {
    transform: translateY(0) rotateZ(-3deg);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image-wrapper {
    min-height: auto;
  }

  .bg-transition-image {
    width: 300px;
    left: -30px;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

.why-choose-timeline {
  position: relative;
  padding: 100px 0;
  color: #fff;
}

.why-choose-timeline .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 44, 79, 0.85),
    rgba(20, 156, 234, 0.75)
  );
}

.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.timeline-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #fff;
  color: #149cea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.timeline-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #d2edff;
}

.timeline-content p {
    color: #f0f8ff;
  opacity: 0.9;
  margin: 20px 0;
}

.timeline-content ul {
  padding-left: 18px;
}

.timeline-content li {
  margin-bottom: 10px;
}

.our-brands-section {
  padding: 50px 0;
  background: #f9fbfd;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.section-header p {
  color: #000000;
  margin-top: 10px;
}

.brand-block {
  margin-top: 70px;
}

.brand-image {
  max-width: 90%;
  border-radius: 18px;
}

.brand-block h3 {
  color: #014f86;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.brand-desc {
  color: #000000;
  line-height: 1.7;
}

.brand-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.brand-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #060c31;
}

.brand-benefits i {
  color: var(--brand);
  margin-right: 10px;
}

/* ==============================
   BRAND DISCOVER MORE BUTTON
============================== */
.brand-discover-btn {
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 180, 219, 0.3);
}

.brand-discover-btn:hover {
  background: linear-gradient(135deg, #0083b0, #00b4db);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 180, 219, 0.45);
  color: #ffffff;
}

/* Mobile alignment */
@media (max-width: 768px) {
  .brand-discover-btn {
    margin-bottom: 20px;
  }
}


/* HERO SLIDE BASE */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* VIDEO SLIDE */
.video-slide {
  position: relative;
  overflow: hidden;
}

/* VIDEO WRAPPER */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* VIDEO ELEMENT */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slide {
    height: 100svh; /* mobile safe viewport */
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

#contact {
  background: linear-gradient(
      rgba(0, 0, 0, 0.384),
      rgba(0, 80, 120, 0.466)
    ),
    url(../img/image-4/slide-3.jpg);
}

/* ================================
   ECOSIP QUENCH – CONTACT SECTION
================================ */

#contact {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section Heading */
#contact .section-heading {
  margin-bottom: 30px;
}

#contact .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* Description Text */
#contact p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

/* Info Cards */
#contact .phone,
#contact .message {
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
  padding: 40px 20px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  position: relative;
}

/* Hover Effect */
#contact .phone:hover,
#contact .message:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Icons */
#contact .phone i,
#contact .message i {
  width: 75px;
  height: 75px;
  line-height: 75px;
  font-size: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  border-radius: 50%;
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card Headings */
#contact .phone h4,
#contact .message h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #1f1f1f;
}

/* Links & Text */
#contact .phone span,
#contact .message span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #030303;
}

#contact .phone span a,
#contact .message span a {
  color: #2a2a2a;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact .phone span a:hover,
#contact .message span a:hover {
  color: var(--brand);
}

/* Location Card Alignment */
#contact .col-12 .message {
  text-align: center;
}

/* Map */
#contact iframe {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  #contact {
    padding: 90px 0;
  }

  #contact .section-heading h2 {
    font-size: 30px;
  }

  #contact p {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 70px 0;
  }

  #contact .section-heading h2 {
    font-size: 26px;
  }

  #contact .phone,
  #contact .message {
    padding: 35px 20px 20px;
  }

  #contact iframe {
    min-height: 300px;
  }
}

/* ==============================
   ENQUIRY FORM STYLES
============================== */
.message h2{
  font-size: 16px !important;
  font-family: 'poppins' "sans-serif" !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

#contact form {
  width: 100%;
}

#contact form .form-group {
  margin-bottom: 20px;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  outline: none;
}

#contact form input:focus,
#contact form textarea:focus {
  border-color: #00b4db; /* Matches card icon gradient */
  box-shadow: 0 0 8px rgba(0, 180, 219, 0.3);
}

#contact form textarea {
  resize: none;
}

#contact form button[type="submit"] {
  background: linear-gradient(135deg, #25badb, #056e91);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.35s ease;
}

#contact form button[type="submit"]:hover {
  background: linear-gradient(135deg, #056e91, #25badb);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  #contact form input,
  #contact form textarea {
    padding: 12px 15px;
    font-size: 13px;
  }

  #contact form button[type="submit"] {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  #contact form input,
  #contact form textarea {
    padding: 10px 12px;
  }

  #contact form button[type="submit"] {
    padding: 10px;
  }
}


/* .testimonials-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.testimonials-section .section-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-section .section-header p {
  color: #555;
  margin-bottom: 60px;
}

.testimonial {
  background: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: auto;
}

.testimonial .review {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial .client-name {
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial .review-stars i {
  color: #f8b600;
  margin-right: 2px;
  margin-bottom: 20px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--brand);
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--brand);
} */

/* .counter-section {
  background: #f8f9fa;
  padding: 50px 0;
}

.counter-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--sub); 
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 16px;
  color: #030303;
  margin: 0;
} */

.certification-section {
  background: #ffffff; /* light neutral background */
  padding: 80px 0;
}

.certification-section .certification-logo img {
  max-width: 150%;
  height: 130px;
  display: inline-block;
}

.certification-section .certification-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color:#26328a /* brand color */
}

.certification-section .certification-description {
  font-family: 'poppins', sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ==============================
   BRAND PAGE BANNER
============================== */
.brand-banner {
  min-height: 90vh;
  background: linear-gradient(135deg, #9fd5ec, #7cb4ca);
  padding: 100px 0;
}

.brand-tagline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #014f86;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.brand-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.brand-description {
  font-size: 16px;
  line-height: 1.8;
  color: #161616;
  max-width: 520px;
}

.banner-actions {
  margin-top: 30px;
}

.banner-actions .btn {
  background-color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 15px;
}

.banner-actions .btn-outline-secondary{
  background-color: var(--brand) !important;
  color: #fff;
  border-color: #fff !important;
}

.brand-banner-img {
  max-width: 100%;
}


/* Responsive */
@media (max-width: 991px) {
  .brand-banner {
    padding: 80px 0;
    text-align: center;
  }

  .brand-heading {
    font-size: 36px;
  }

  .brand-description {
    margin: 0 auto;
  }

  .banner-actions .btn {
    margin: 10px 8px;
  }
}

@media (max-width: 576px) {
  .brand-heading {
    font-size: 30px;
  }
}

/* ==============================
   ABOUT KEVALA NIRU SECTION
============================== */
.about-brand {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.about-content {
  max-width: 540px;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0083b0;
  display: inline-block;
  margin-bottom: 15px;
}

.about-brand h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-brand p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Main Product Image */
.about-main-image {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

/* Background Motion Image */
.motion-water-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
  z-index: 1;
  opacity: 0.9;
  transition: transform 0.2s linear;
}

.motion-water-image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .about-brand {
    padding: 90px 0;
    text-align: center;
  }

  .about-content {
    margin: 0 auto 40px;
  }

  .about-brand h2 {
    font-size: 32px;
  }

  .motion-water-image {
    width: 300px;
  }
}

@media (max-width: 576px) {
  .about-brand h2 {
    font-size: 26px;
  }
}

/* ==============================
   BRAND FEATURES SECTION
============================== */
.brand-features-section {
  padding: 110px 0;
  background: #f9fcff;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0083b0;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Feature Card */
.feature-card {
  background: #90bfcf;
  padding: 40px 30px;
  border-radius: 14px;
  height: 100%;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.feature-card i {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 18px;
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 180, 219, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .brand-features-section {
    padding: 90px 0;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .feature-card {
    padding: 30px 22px;
  }
}

/* ==============================
   IDEAL USAGE SECTION
============================== */
.ideal-usage-section {
  position: relative;
  padding: 120px 0;
  background: url("../img/image-4/background-img.png") center/cover no-repeat;
  overflow: hidden;
}

.usage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(58, 129, 165, 0.767),
    rgba(55, 182, 224, 0.85)
  );
  z-index: 1;
}

.ideal-usage-section .container {
  z-index: 2;
}

.usage-image {
  border-radius: 16px;
  max-width: 80%;
  
}

/* Right Content */
.usage-content {
  padding-left: 40px;
}

.usage-content h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  margin: 20px 0 30px;
}

/* Usage List */
.usage-list {
  list-style: none;
  padding-left: 0;
}

.usage-list li {
  font-size: 16px;
  color: #ffffff;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.usage-list i {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .ideal-usage-section {
    padding: 90px 0;
    text-align: center;
  }

  .usage-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .usage-content h2 {
    font-size: 32px;
  }

  .usage-list li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .usage-content h2 {
    font-size: 26px;
  }
}

/* ==============================
   BRAND CALL TO ACTION
============================== */
.brand-cta-section {
  position: relative;
  padding: 80px 0;
  background-color: #000 
}

.brand-cta-section .container {
  z-index: 2;
}

.brand-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.brand-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-btn {
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
  .brand-cta-section {
    padding: 70px 0;
  }

  .brand-cta-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .brand-cta-section h2 {
    font-size: 26px;
  }

  .cta-btn {
    width: 100%;
  }
}

