/* ============================================================
   GLOBAL RESET
============================================================ */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Degular", sans-serif;
  /* overflow-x: hidden !important; */
}
section,
.container-xxl,
.container,
.row,
.col {
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --primary: linear-gradient(180deg, #0c6b70 0%, #08929a 100%);
  --secondary: #963d98;
  --light: #f0f6ff;
  --dark: #262b47;
}

/* Regular */
@font-face {
  font-family: "Degular";
  src: url("../fonts/DegularDemo-Regular.otf") format("woff2"),
    url("../fonts/Degular-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Degular";
  src: url("../fonts/DegularDemo-Bold.otf") format("woff2"),
    url("../fonts/DegularDemo-Bold.otf") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
============================================================ */
/* Common Style for Both Buttons */
.whatsapp-float,
.back-to-top {
  position: fixed;
  bottom: 30px; /* same distance from bottom */
  width: 55px; /* same size */
  height: 55px; /* same size */
  border-radius: 50%; /* fully round */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* icon color */
  font-size: 28px; /* icon size */
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

/* WhatsApp specific */
.whatsapp-float {
  left: 15px;
  background-color: #25d366;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #0c6b70;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  z-index: 9999;
}

.back-to-top i {
  font-size: 26px;
  line-height: 1 !important; /* FIX vertical shifting */
  margin-top: 2px !important; /* FINAL PERFECT CENTER FIX */
  display: inline-block;
}

/* ============================================================
   SPINNER
============================================================ */
#spinner {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}

#spinner.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
  font-family: "Degular", sans-serif;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
  font-family: "Degular", sans-serif;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
  font-family: "Degular", sans-serif;
}

/* ============================================================
   GRADIENT TEXT & BACKGROUND
============================================================ */
.text-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.bg-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
  z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
  opacity: 1;
}

/* Button Sizes */
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 45px;
  bottom: 45px;
  display: none;
  z-index: 99;
  border: none;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/* Logo */
.logo {
  max-height: 60px;
  transition: all 0.3s ease;
}

/* navbar-section */

/* ===============================
   STICKY NAVBAR
================================ */
/* Make navbar clean, no vertical scrollbar */
.custom-navbar {
  overflow: visible !important; /* allows dropdowns to show */
  height: auto !important;
}

/* Fix nav links height */
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
  line-height: 1 !important;
}

/* Fix dropdown menu position */
.dropdown-menu {
  margin-top: 0 !important;
}

/* Ensure container doesn’t add scroll */
.navbar .container {
  overflow: visible !important;
}

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 12px 0;
}

/* NAV LINKS */
.nav-link {
  font-size: 16px;
  padding: 8px 12px;
  font-weight: 500;
  color: #111 !important;
}

#active-nav a {
  color: orange !important;
  font-weight: 600;
}

.nav-link:hover {
  color: orange !important;
}

/* ===============================
   DESKTOP DROPDOWN HOVER
================================ */
@media (min-width: 992px) {
  .products-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .products-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    visibility: hidden;
  }

  .products-dropdown:hover .dropdown-menu {
    visibility: visible;
  }
}

/* ===============================
   MOBILE DROPDOWN FIX
================================ */
@media (max-width: 991px) {
  /* Allow bootstrap to control display */
  .dropdown-menu {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border: none;
    box-shadow: none;
    background: #f8f8f8;
    margin-left: 15px;
    padding: 10px 0;
  }

  .dropdown-item {
    padding: 10px 20px;
  }
}

/* HERO BANNER WITH BACKGROUND IMAGE */
.hero-banner {
  position: relative;
  width: 100%;
  height: 380px; /* adjust as needed */
  background: url("../img/bg3.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* DARK OVERLAY FOR READABILITY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* reduces image opacity nicely */
  backdrop-filter: blur(2px);
}

/* TITLE */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 70px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  animation: fadeDown 1.2s ease;
}

/* ANIMATION */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-banner {
    height: 260px;
  }
  .hero-title {
    font-size: 42px;
  }
}

/*Main-section*/
.shape {
  position: relative;
  top: -124px;
  width: 100%;
  background: #fff;
  height: 150px;
}
.carousel-img {
  width: 70%; /* Adjust percentage for desired size */
  max-width: 400px; /* Optional fixed max size */
  height: auto; /* Keep aspect ratio */
  margin: 0 auto; /* Center horizontally */
  display: block;
}

.hero-img {
  position: relative; /* Needed for z-index to work */
  z-index: 2; /* Higher than surrounding elements */
  margin-top: 60px; /* Pull image upward to float above */
  margin-right: -30px; /* Slight overflow to the right */
  max-width: 100%;
  height: auto;
}

.hero-header {
  background: linear-gradient(180deg, #0c6b70 0%, #08929a 100%);
  padding-bottom: 50px;
}

/* Responsive tweaks for mobile */
@media (max-width: 767px) {
  .hero-header h1 {
    margin-top: 10px; /* More space above heading on mobile */
    font-size: 1.8rem;
  }

  .hero-header p {
    margin-bottom: 10px; /* Reduce gap below paragraph */
    font-size: 1rem;
  }

  .hero-header .btn {
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }

  .carousel-img {
    width: 70%; /* Adjust percentage for desired size */
    max-width: 400px; /* Optional fixed max size */
    height: auto; /* Keep aspect ratio */
    margin: 0 auto; /* Center horizontally */
    display: block;
    margin-top: 60px;
    margin-bottom: 10px;
  }
  .hero-img {
    margin-top: 0px;
    padding-top: 10px;
    margin-bottom: -20px; /* Pull image closer to buttons */
    width: 100%;
    height: auto;
  }
}

/* Apply styles only between 770px and 1350px */
@media (min-width: 767px) and (max-width: 900px) {
  .hero-header h1 {
    font-size: 1.5rem; /* Adjust heading size for mid-range screens */
    margin-top: 10px;
    text-align: center;
  }

  .hero-header p {
    font-size: 1rem; /* Slightly larger text */
    margin-bottom: 50px;
    text-align: center;
    padding-bottom: 50px;
  }

  .hero-img {
    margin-top: 40px; /* Balanced spacing */
    margin-right: -20px; /* Slight overflow for effect */
    padding-top: 50px;
    width: auto;
    height: auto;
  }

  .carousel-img {
    width: 65%; /* Consistent smaller size */
    max-width: 350px; /* Prevent oversized images */
    margin: 0 auto;
    display: block;
  }
}
/* Mobile-first styles (default) */
@media (min-width: 900px) and (max-width: 1350px) {
  .hero-header h1 {
    font-size: 2 rem; /* Adjust heading size for mid-range screens */
    margin-top: 10px;
    text-align: center;
  }

  .hero-header p {
    font-size: 1rem; /* Slightly larger text */
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 50px;
  }

  .hero-img {
    margin-top: 40px; /* Balanced spacing */
    margin-right: -20px; /* Slight overflow for effect */
    width: auto;
    height: auto;
  }

  .carousel-img {
    width: 65%; /* Consistent smaller size */
    max-width: 350px; /* Prevent oversized images */
    margin: 0 auto;
    display: block;
  }
}

/* ---------------------------- */
/*   GLOBAL ABOUT US SECTION    */
/* ---------------------------- */
.rs-about-section {
  padding: 80px 0;
  background: #f7fdf2;
  overflow-x: hidden;
  color: #0a3d62;
}

.rs-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ---------------------------- */
/*       HEADER SECTION         */
/* ---------------------------- */
.rs-about-header {
  text-align: center;
  margin-bottom: 60px;
}

.rs-tag {
  color: #85c400;
  font-weight: 700;
  text-transform: uppercase;
}

.rs-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 10px 0;
}

.rs-subtext {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.8;
}

/* ---------------------------- */
/*         STAT CARDS           */
/* ---------------------------- */
.rs-stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rs-stat-card {
  background: white;
  padding: 25px 30px;
  border-radius: 18px;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.rs-stat-card:hover {
  transform: translateY(-6px);
}

.rs-stat-card i {
  font-size: 2.5rem;
  color: #08929a;
  margin-bottom: 10px;
}

/* ---------------------------- */
/*        WHAT WE DO            */
/* ---------------------------- */
.rs-about-row {
  display: flex;
  align-items: center;
  justify-content: center; /* FIX: center horizontally */
  text-align: center; /* Fix content alignment */
  gap: 30px;
  margin: 80px 0;
  flex-wrap: wrap;
}

/* Icon */
.rs-about-icon i {
  font-size: 4rem;
  color: #08929a;
}

/* Headings & Text */
.rs-about-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.rs-about-content p {
  color: #555;
  max-width: 700px;
  line-height: 1.8;
  margin: 0 auto; /* Ensures text stays centered */
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .rs-about-row {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------------------------- */
/*  MISSION VISION VALUES GRID  */
/* ---------------------------- */
.rs-mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.rs-mvv-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.rs-mvv-card h4 {
  color: #0a3d62;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.rs-mvv-card ul li {
  color: #333;
  line-height: 2;
}

/* ---------------------------- */
/*           CTA AREA           */
/* ---------------------------- */
.rs-cta {
  text-align: center;
  margin-top: 80px;
}

.rs-cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rs-btn {
  border: 2px solid #0a3d62;
  padding: 12px 35px;
  color: #0a3d62;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 15px;
  display: inline-block;
  transition: 0.3s;
}

.rs-btn:hover {
  background: #0c6b70;
  color: #fff;
}

/* ---------------------------- */
/*       RESPONSIVE FIXES       */
/* ---------------------------- */
@media (max-width: 768px) {
  .rs-title {
    font-size: 2rem;
  }
  .rs-about-content h3 {
    font-size: 1.6rem;
  }
  .rs-stat-card {
    width: 100%;
    max-width: 330px;
  }
  .rs-about-row {
    text-align: center;
  }

  .rs-about-content {
    text-align: center;
  }
}

/* ---------------------------- */
/*       ANIMATION EFFECTS      */
/* ---------------------------- */
.rs-animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: rsFadeUp 0.8s forwards;
}

.rs-animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: rsSlideLeft 0.9s forwards;
}

.rs-animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: rsSlideRight 0.9s forwards;
}

.rs-animate-fade-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: rsFadeLeft 1s forwards;
}

.rs-animate-zoom {
  opacity: 0;
  transform: scale(0.7);
  animation: rsZoomIn 0.9s forwards;
}

/* Keyframes */
@keyframes rsFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rsSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rsSlideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rsFadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rsZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CEO Card Section */
.ceo-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 25px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: visible !important; /* FIX */
}

/* CEO Image */
.ceo-img-wrapper {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #0a3d62;
  box-shadow: 0px 0px 20px rgba(8, 130, 122, 0.5);
}

/* Prevent any overflow causing scroll */
#ceo,
#ceo .container,
#ceo .row {
  overflow: visible !important; /* FIX */
}

/* Social Icons */
.ceo-social-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 6px;
  background: #0a3d62;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.ceo-social-btn:hover {
  background: #b7e650;
  transform: scale(1.1);
}

/* OUR SERVICES SECTION - Modern Mobile Friendly Design */
#our-services {
  background: #dae7f0;
}

#our-services h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

#our-services p.text-muted {
  font-size: 1rem;
  color: #666;
}

/* Card Styling */
#our-services .card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* keeps image corners rounded */
}

#our-services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#our-services .card-img-top {
  height: 200px;
  object-fit: cover;
}

#our-services .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

#our-services .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
  #our-services h2 {
    font-size: 1.6rem;
  }
  #our-services .card-img-top {
    height: 160px;
  }
  #our-services .card-title {
    font-size: 1.1rem;
  }
  #our-services .card-text {
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  #our-services h2 {
    font-size: 1.4rem;
  }
  #our-services p.text-muted {
    font-size: 0.85rem;
  }
  #our-services .card {
    margin-bottom: 1rem;
  }
}

/* RS-CONTACT SECTION */
.rs-contact {
  background: linear-gradient(135deg, #fdfdfd, #f7f9fc);
}

/* Gradient Heading */
.text-gradient {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styling */
.btn-rs {
  /* background: linear-gradient(90deg, #007bff, #00c6ff); */
  border: 2px solid #0a3d62;
  /* border: none; */
  border-radius: 30px;
  color: #0a3d62;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rs:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #08929a;
  color: #fff;
}
.arrow-icon {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-rs:hover .arrow-icon {
  margin-left: 15px;
}

/* Form Inputs */
.rs-contact .form-control {
  border-radius: 12px;
  border: 1.5px solid #0a3d62;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rs-contact .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* LIGHT YELLOW BACKGROUND */
.product-section-yellow {
  background: #dae7f0; /* soft yellow */
}

/* VIOLET CARD */
.product-wide-card-violet {
  background: #fff; /* elegant violet */
  padding: 40px;
  border-radius: 28px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  color: #0a3d62;
}

.product-wide-card-violet:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* IMAGE BOX */
.product-image-box img {
  width: 230px;
  height: 230px;
  border-radius: 20px;
  object-fit: cover;
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); */
  transition: 0.4s ease;
}

.product-wide-card-violet:hover img {
  transform: scale(1.05);
}

/* TEXT */
.product-details h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.product-long-desc {
  color: #f5f2ff;
  font-size: 16px;
  margin-bottom: 20px;
}

/* LIST */
.spec-list {
}
.spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
}

.spec-item .num {
  width: 28px;
  height: 28px;
  background: #0a3d62;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-weight: bold;
}

/* BUTTON */
.learn-btn {
  border: 2px solid #0a3d62;
  color: #0a3d62;
  padding: 10px 26px;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s;
  background: #fff;
}

.learn-btn:hover {
  color: #fff;
  background: #08929a;
}

/* Force card responsive on mobile */
@media (max-width: 768px) {
  .product-wide-card-violet,
  .product-card {
    display: block !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 20px !important;
  }

  .product-image-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 15px auto !important;
    text-align: center !important;
  }

  .product-image-box img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }

  .product-details {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  /* Make spec list full width */
  .spec-list {
    width: 100% !important;
  }

  .spec-item {
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    font-size: 15px;
  }
}

/* ================================
   BASE FOOTER STYLES
================================ */
.carvex-footer {
  background: #0f6b70; /* teal background */
  /* font-family: "Poppins", sans-serif; */
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 40px;
  /* padding-left: 30px; */
  text-align: center;
}

/* ================================
   FOOTER LINKS
================================ */
.carvex-footer .footer-link {
  color: #d9f4f5;
  text-decoration: none;
  transition: 0.3s;
}

.carvex-footer .footer-link:hover {
  color: #ffffff;
}

/* ================================
   LOGO & COPY TEXT
================================ */
.carvex-footer .footer-logo-text {
  font-size: 32px;
  font-weight: 700;
}

/* ================================
   CTA SECTION
================================ */
.cta-container {
  background: linear-gradient(180deg, #0c6b70 0%, #08929a 100%);
  border-radius: 12px;
  padding: 30px 25px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-container h4 {
  font-size: 22px;
  margin: 0;
}

.cta-btn {
  background: #d6ff6b; /* exact neon green */
  color: #000 !important;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.cta-btn:hover {
  background: #c8f459;
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icons i {
  font-size: 20px;
  transition: 0.3s;
  color: #d9f4f5;
}

.social-icons i:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* ================================
   UTILITY FIXES
================================ */
.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: #d9f4f5;
  text-decoration: none;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
}

/* ================================
   RESPONSIVE | MOBILE
================================ */
@media (max-width: 767px) {
  .cta-container {
    text-align: center;
    padding: 25px 20px;
  }

  .cta-container h4 {
    margin-bottom: 15px;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    margin-top: 10px;
  }

  .carvex-footer .footer-logo-text {
    font-size: 28px;
  }
}
