/* ============================================================
   MAX TV LAB — style.css  |  Theme: White & Navy Blue
   ============================================================ */

:root {
   --navy: #0a1628;
   --navy-2: #0f2044;
   --navy-3: #142a56;
   --navy-4: #1a3468;
   --navy-light: #1e4080;
   --navy-accent: #2563eb;
   --blue-bright: #3b82f6;

   --white: #ffffff;
   --white-2: #f8fafc;
   --white-3: #f1f5f9;
   --white-4: #e2e8f0;

   --text-dark: #0f172a;
   --text-body: #334155;
   --text-muted: #64748b;
   --text-light: #94a3b8;

   --border: rgba(10, 22, 40, 0.12);
   --section-alt: #f1f5f9;

   --font-heading: 'Rajdhani', sans-serif;
   --font-body: 'Nunito', sans-serif;
   --radius: 12px;
   --radius-lg: 20px;

   --shadow: 0 4px 24px rgba(10, 22, 40, 0.10);
   --shadow-navy: 0 4px 20px rgba(37, 99, 235, 0.25);
   --shadow-card: 0 2px 16px rgba(10, 22, 40, 0.08);
   --transition: all 0.3s ease;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
   font-family: var(--font-body);
   background: var(--white);
   color: var(--text-body);
   overflow-x: hidden;
   line-height: 1.7;
   width: 100%;
   max-width: 100vw;
}

img {
   max-width: 100%;
   height: 240px;
   display: block;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition);
}

ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

section {
   width: 100%;
   overflow: hidden;
}

::-webkit-scrollbar {
   width: 5px;
}

::-webkit-scrollbar-track {
   background: var(--white-3);
}

::-webkit-scrollbar-thumb {
   background: var(--navy-accent);
   border-radius: 10px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
   background: var(--navy);
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
   padding: 8px 0;
   font-size: 0.8rem;
   display:block!important;
}

.topbar-link {
   color: rgba(255, 255, 255, 0.65);
   display: flex;
   align-items: center;
   gap: 4px;
   transition: var(--transition);
   white-space: nowrap;
}

.topbar-link:hover {
   color: var(--white);
}

.topbar-link i {
   color: var(--blue-bright);
}

.social-icon {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.8rem;
   transition: var(--transition);
}

.social-icon:hover {
   background: var(--navy-accent);
   border-color: var(--navy-accent);
   color: var(--white);
   transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#mainHeader {
   background: rgba(255, 255, 255, 0.97);
   border-bottom: 1px solid var(--border);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   z-index: 1030;
   transition: var(--transition);
}

#mainHeader.scrolled {
   box-shadow: 0 2px 24px rgba(10, 22, 40, 0.12);
}

.navbar {
   padding: 14px 0;
}

.logo-icon {
   width: 42px;
   height: 42px;
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   color: var(--white);
   box-shadow: var(--shadow-navy);
   flex-shrink: 0;
}

.logo-text {
   display: flex;
   flex-direction: column;
   line-height: 1.1;
}

.brand-main {
   font-family: var(--font-heading);
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--navy);
   letter-spacing: 1px;
}

.brand-sub {
   font-family: var(--font-heading);
   font-size: 0.75rem;
   font-weight: 600;
   color: var(--navy-accent);
   letter-spacing: 4px;
   text-transform: uppercase;
}

.nav-link {
   color: var(--text-body) !important;
   font-family: var(--font-heading);
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   padding: 8px 12px !important;
   border-radius: 8px;
   transition: var(--transition);
   position: relative;
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: 4px;
   left: 50%;
   transform: translateX(-50%);
   width: 0;
   height: 2px;
   background: var(--navy-accent);
   border-radius: 2px;
   transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
   color: var(--navy) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 60%;
}

.btn-cta {
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   color: var(--white) !important;
   border: none;
   padding: 8px 20px !important;
   border-radius: 8px;
   font-family: var(--font-heading);
   font-size: 0.95rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   box-shadow: var(--shadow-navy);
   transition: var(--transition);
}

.btn-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
   background: linear-gradient(135deg, var(--navy-accent), var(--navy));
}

.navbar-toggler {
   border: 1px solid var(--border) !important;
   background: var(--white-3) !important;
   padding: 8px 10px;
   border-radius: 8px;
}

.navbar-toggler:focus {
   box-shadow: none !important;
}

.toggler-icon {
   display: flex;
   flex-direction: column;
   gap: 5px;
   width: 22px;
}

.toggler-icon span {
   display: block;
   height: 2px;
   background: var(--navy);
   border-radius: 2px;
   transition: var(--transition);
}

@media (max-width: 991px) {
   .navbar-collapse {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      margin-top: 12px;
      box-shadow: var(--shadow);
   }

   .nav-link::after {
      display: none;
   }

   .nav-link {
      padding: 10px 14px !important;
   }
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#heroCarousel {
   width: 100%;
   overflow: hidden;
}

.carousel-inner,
.carousel-item {
   width: 100%;
   overflow: hidden;
   height: 88vh;
   min-height: 450px;
   max-height: 600px;
}

.hero-slide {
   height: 100vh;
   min-height: 560px;
   max-height: 800px;
   width: 100%;
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden;

   /* IMAGE SUPPORT */
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

/* IMAGE + OVERLAY GRADIENT */
.slide-1 {
   background:
      linear-gradient(135deg, rgba(0, 0, 0, 0.863)),
      url('../images/b1.jpg');
}

.slide-2 {
   background:
       linear-gradient(135deg, rgba(0, 0, 0, 0.863)),
      url('../images/b2.png');
}


.slide-1::before,
.slide-2::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
   background-size: 60px 60px;
   z-index: 0;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
   z-index: 1;
}

.container {
   position: relative;
   z-index: 2;
   width: 100%;
}

.hero-slide .container {
   height: 100%;
}

.hero-content {
   position: relative;
   z-index: 2;
   animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.hero-badge {
   display: inline-block;
   background: rgba(59, 130, 246, 0.15);
   border: 1px solid rgba(59, 130, 246, 0.4);
   color: #93c5fd;
   padding: 6px 18px;
   border-radius: 50px;
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-bottom: 20px;
}

.hero-title {
   font-size: clamp(2rem, 5vw, 3.8rem);
   font-weight: 700;
   color: #fff;
   line-height: 1.15;
   margin-bottom: 20px;
}

.highlight-text {
   color: #60a5fa;
}

.hero-desc {
   font-size: clamp(0.95rem, 2vw, 1.1rem);
   color: rgba(255, 255, 255, 0.65);
   max-width: 580px;
   margin: 0 auto 32px;
   line-height: 1.7;
}

.btn-hero-primary {
   background: linear-gradient(135deg, #2563eb, #3b82f6);
   color: #fff;
   padding: 14px 32px;
   border-radius: 10px;
   font-size: 1rem;
   font-weight: 700;
   border: none;
   transition: 0.3s;
}

.btn-hero-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-hero-outline {
   background: transparent;
   color: #fff;
   padding: 13px 32px;
   border-radius: 10px;
   font-size: 1rem;
   font-weight: 600;
   border: 2px solid rgba(255, 255, 255, 0.35);
   transition: 0.3s;
}

.btn-hero-outline:hover {
   background: rgba(255, 255, 255, 0.12);
   transform: translateY(-3px);
}

.carousel-ctrl-icon {
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
   width: 70px;
   opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
   display: none;
}

.carousel-indicators {
   bottom: 20px;
}

.carousel-indicators [data-bs-target] {
   width: 32px;
   height: 4px;
   background: rgba(255, 255, 255, 0.3);
   border: none;
}

.carousel-indicators .active {
   background: #2563eb;
   width: 48px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-pad {
   padding: 90px 0;
}

.bg-dark-alt {
   background-color: var(--section-alt);
}

.section-label {
   display: inline-block;
   background: rgba(37, 99, 235, 0.08);
   border: 1px solid rgba(37, 99, 235, 0.25);
   color: var(--navy-accent);
   padding: 5px 16px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-family: var(--font-heading);
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   margin-bottom: 14px;
}

.section-title {
   font-family: var(--font-heading);
   font-size: clamp(1.8rem, 4vw, 2.8rem);
   font-weight: 700;
   color: var(--navy);
   line-height: 1.2;
   margin-bottom: 14px;
}

.section-title span {
   color: var(--navy-accent);
}

.section-subtitle {
   color: var(--text-muted);
   font-size: 1rem;
   max-width: 500px;
}

.text-center .section-subtitle {
   margin: 0 auto;
}

.section-text {
   color: var(--text-body);
   line-height: 1.8;
   margin-bottom: 12px;
}

/* ============================================================
   ABOUT
   ============================================================ */

.img-wrapper {
   width: 100%;
   height: 550px;
   border-radius: 10px;
}

.about-img-wrap {
   position: relative;
   padding: 20px 0;
}

.about-img-box {
   position: relative;
   border-radius: var(--radius-lg);
   overflow: hidden;
   border: 1px solid var(--border);
   background: var(--white);
   box-shadow: var(--shadow);
}

.about-img-inner {
   padding: 30px;
   background: var(--white-3);
}

.about-badge-float {
   position: absolute;
   bottom: -10px;
   right: 20px;
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   border-radius: var(--radius);
   padding: 16px 22px;
   text-align: center;
   box-shadow: var(--shadow-navy);
}

.badge-num {
   display: block;
   font-family: var(--font-heading);
   font-size: 2rem;
   font-weight: 700;
   color: var(--white);
   line-height: 1;
}

.badge-text {
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 600;
}

.about-feature {
   display: flex;
   align-items: center;
   gap: 10px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 12px 16px;
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--text-body);
   transition: var(--transition);
   box-shadow: var(--shadow-card);
}

.about-feature i {
   color: var(--navy-accent);
   font-size: 1.1rem;
   flex-shrink: 0;
}

.about-feature:hover {
   border-color: var(--navy-accent);
   transform: translateY(-2px);
   box-shadow: var(--shadow-navy);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-red {
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   color: var(--white);
   padding: 13px 30px;
   border-radius: 10px;
   font-family: var(--font-heading);
   font-size: 1rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   border: none;
   box-shadow: var(--shadow-navy);
   display: inline-flex;
   align-items: center;
   transition: var(--transition);
}

.btn-primary-red:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
   color: var(--white);
   background: linear-gradient(135deg, var(--navy-accent), var(--navy));
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   overflow: hidden;
   transition: var(--transition);
   position: relative;
   height: 100%;
   display: flex;
   flex-direction: column;
   box-shadow: var(--shadow-card);
}

.service-card:hover {
   transform: translateY(-6px);
   border-color: var(--navy-accent);
   box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-card.featured {
   border-color: var(--navy);
   box-shadow: 0 4px 24px rgba(10, 22, 40, 0.15);
}

.service-badge {
   position: absolute;
   top: 14px;
   right: 14px;
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   color: var(--white);
   font-size: 0.72rem;
   font-family: var(--font-heading);
   font-weight: 700;
   letter-spacing: 1px;
   padding: 4px 12px;
   border-radius: 50px;
   z-index: 2;
   text-transform: uppercase;
}

.service-img-wrap {
   overflow: hidden;
   border-bottom: 1px solid var(--border);
   background: var(--white-3);
}

.service-svg {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.4s ease;
}

.service-card:hover .service-svg {
   transform: scale(1.04);
}

.service-body {
   padding: 24px;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.service-icon {
   width: 48px;
   height: 48px;
   background: rgba(37, 99, 235, 0.08);
   border: 1px solid rgba(37, 99, 235, 0.2);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   color: var(--navy-accent);
   margin-bottom: 14px;
   transition: var(--transition);
}

.service-card:hover .service-icon {
   background: var(--navy);
   color: var(--white);
   border-color: var(--navy);
}

.service-title {
   font-family: var(--font-heading);
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--navy);
   margin-bottom: 10px;
}

.service-text {
   color: var(--text-muted);
   font-size: 0.9rem;
   line-height: 1.6;
   margin-bottom: 16px;
}

.service-list {
   list-style: none;
   padding: 0;
   margin: 0 0 0;
   margin-top: auto;
}

.service-list li {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--text-body);
   font-size: 0.85rem;
   padding: 5px 0;
   border-top: 1px solid var(--border);
}

.service-list li:first-child {
   border-top: none;
}

.service-list li i {
   color: var(--navy-accent);
   font-size: 0.9rem;
   flex-shrink: 0;
}

/* ============================================================
   COUNTER
   ============================================================ */
.counter-section {
   background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
   padding: 70px 0;
   position: relative;
   overflow: hidden;
}

.counter-section::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
   background-size: 50px 50px;
}

.counter-item {
   text-align: center;
   position: relative;
   z-index: 1;
}

.counter-icon {
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: #93c5fd;
   margin: 0 auto 16px;
}

.counter-num {
   font-family: var(--font-heading);
   font-size: clamp(2.2rem, 5vw, 3.5rem);
   font-weight: 700;
   color: var(--white);
   line-height: 1;
   display: inline;
}

.counter-plus {
   font-family: var(--font-heading);
   font-size: clamp(1.5rem, 3vw, 2.5rem);
   font-weight: 700;
   color: #60a5fa;
   display: inline;
}

.counter-label {
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
   font-weight: 600;
   margin-top: 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 20px;
   transition: var(--transition);
   box-shadow: var(--shadow-card);
}

.why-card:hover {
   border-color: var(--navy-accent);
   transform: translateY(-3px);
   box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.why-icon {
   width: 44px;
   height: 44px;
   background: rgba(37, 99, 235, 0.08);
   border: 1px solid rgba(37, 99, 235, 0.2);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   color: var(--navy-accent);
   margin-bottom: 12px;
   transition: var(--transition);
}

.why-card:hover .why-icon {
   background: var(--navy);
   color: var(--white);
   border-color: var(--navy);
}

.why-card h4 {
   font-family: var(--font-heading);
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--navy);
   margin-bottom: 6px;
}

.why-card p {
   color: var(--text-muted);
   font-size: 0.85rem;
   line-height: 1.6;
   margin: 0;
}

.why-brands-wrap {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 32px;
   box-shadow: var(--shadow-card);
}

.brands-title {
   font-family: var(--font-heading);
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--navy);
   margin-bottom: 20px;
}

.brands-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 24px;
}

.brand-chip {
   background: var(--white-3);
   border: 1px solid var(--border);
   color: var(--text-body);
   padding: 8px 16px;
   border-radius: 8px;
   font-size: 0.88rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   transition: var(--transition);
   cursor: default;
}

.brand-chip i {
   color: var(--navy-accent);
   font-size: 0.75rem;
}

.brand-chip:hover {
   background: rgba(37, 99, 235, 0.06);
   border-color: var(--navy-accent);
   color: var(--navy);
   transform: translateY(-2px);
}

.why-cta-box {
   background: var(--white-3);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 20px;
}

.why-cta-box p {
   color: var(--text-muted);
   font-size: 0.9rem;
   margin-bottom: 14px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-box {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.3s ease;
}

/* Hover effect */
.gallery-box:hover img {
  transform: scale(1.1);
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-title {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--navy);
   margin-bottom: 24px;
   padding-bottom: 14px;
   border-bottom: 2px solid var(--navy-accent);
   display: inline-block;
}

.contact-info-item {
   display: flex;
   gap: 16px;
   margin-bottom: 22px;
}

.ci-icon {
   width: 44px;
   height: 44px;
   background: rgba(37, 99, 235, 0.08);
   border: 1px solid rgba(37, 99, 235, 0.2);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   color: var(--navy-accent);
   flex-shrink: 0;
}

.contact-info-item strong {
   display: block;
   color: var(--navy);
   font-size: 0.85rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 4px;
}

.contact-info-item p {
   color: var(--text-body);
   font-size: 0.9rem;
   line-height: 1.6;
   margin: 0;
}

.contact-info-item a {
   color: var(--text-body);
}

.contact-info-item a:hover {
   color: var(--navy-accent);
}

.contact-social-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.cs-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: var(--text-body);
   font-weight: 600;
   font-size: 0.9rem;
   padding: 10px 16px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 8px;
   transition: var(--transition);
   box-shadow: var(--shadow-card);
}

.cs-link:hover {
   color: var(--navy);
   border-color: var(--navy-accent);
   background: rgba(37, 99, 235, 0.04);
}

.cs-link i {
   color: var(--navy-accent);
}

.contact-form-wrap {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--radius-lg);
   padding: 32px;
   box-shadow: var(--shadow-card);
}

.form-label {
   color: var(--text-body);
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 6px;
   letter-spacing: 0.5px;
}

.custom-input {
   background: var(--white-3) !important;
   border: 1px solid var(--border) !important;
   color: var(--text-dark) !important;
   border-radius: 10px !important;
   padding: 12px 16px !important;
   font-family: var(--font-body) !important;
   font-size: 0.9rem !important;
   transition: var(--transition) !important;
}

.custom-input:focus {
   border-color: var(--navy-accent) !important;
   box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
   background: var(--white) !important;
}

.custom-input::placeholder {
   color: var(--text-light) !important;
}

.custom-input option {
   background: var(--white);
   color: var(--text-dark);
}

.form-success-msg {
   background: rgba(34, 197, 94, 0.08);
   border: 1px solid rgba(34, 197, 94, 0.3);
   color: #166534;
   padding: 12px 16px;
   border-radius: 10px;
   font-size: 0.9rem;
   font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
   background: var(--navy);
}

.footer-top {
   padding: 70px 0 40px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top .brand-main {
   color: var(--white);
}

.footer-top .brand-sub {
   color: #60a5fa;
}

.footer-top .logo-icon {
   background: rgba(255, 255, 255, 0.1);
   box-shadow: none;
}

.footer-about {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.88rem;
   line-height: 1.7;
}

.footer-social a {
   width: 36px;
   height: 36px;
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.9rem;
   transition: var(--transition);
}

.footer-social a:hover {
   background: var(--navy-accent);
   border-color: var(--navy-accent);
   color: var(--white);
   transform: translateY(-3px);
}

.footer-heading {
   font-family: var(--font-heading);
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--white);
   margin-bottom: 18px;
   position: relative;
   padding-bottom: 10px;
}

.footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 30px;
   height: 2px;
   background: var(--navy-accent);
   border-radius: 2px;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.88rem;
   transition: var(--transition);
   display: flex;
   align-items: center;
   gap: 6px;
}

.footer-links a::before {
   content: '›';
   color: #60a5fa;
   font-size: 1rem;
}

.footer-links a:hover {
   color: var(--white);
   padding-left: 4px;
}

.footer-contact-list li {
   display: flex;
   gap: 10px;
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.88rem;
   margin-bottom: 12px;
   line-height: 1.5;
}

.footer-contact-list i {
   color: #60a5fa;
   font-size: 0.9rem;
   flex-shrink: 0;
   margin-top: 3px;
}

.footer-contact-list a {
   color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
   color: var(--white);
}

.footer-bottom {
   background: rgba(0, 0, 0, 0.2);
   padding: 18px 0;
}

.footer-bottom p {
   color: rgba(255, 255, 255, 0.4);
   font-size: 0.85rem;
   margin: 0;
}

.footer-bottom strong {
   color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .bi-heart-fill {
   color: #60a5fa !important;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 46px;
   height: 46px;
   background: linear-gradient(135deg, var(--navy), var(--navy-light));
   color: var(--white);
   border: none;
   border-radius: 50%;
   font-size: 1.1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: var(--shadow-navy);
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px);
   transition: var(--transition);
   z-index: 999;
}

.back-to-top.visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.back-to-top:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
   .section-pad {
      padding: 60px 0;
   }

   .footer-top {
      padding: 50px 0 30px;
   }

   .hero-slide {
      min-height: 500px;
   }
}

@media (max-width: 767px) {
   .section-pad {
      padding: 50px 0;
   }

   .img-wrapper {
      width: 100%;
      height: 250px;
      border-radius: 10px;
   }

   .counter-section {
      padding: 50px 0;
   }

   .about-badge-float {
      right: 10px;
      padding: 12px 16px;
   }

   .badge-num {
      font-size: 1.5rem;
   }

   .service-body {
      padding: 18px;
   }

   .contact-form-wrap {
      padding: 22px;
   }

   .why-brands-wrap {
      padding: 22px;
   }

   .back-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
   }

   .review-card {
      padding: 20px;
   }
}

@media (max-width: 575px) {
   .section-pad {
      padding: 40px 0;
   }

   .hero-slide {
      min-height: 460px;
      max-height: 600px;
   }

   .hero-title {
      font-size: 1.7rem;
   }

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

   .filter-btn {
      padding: 7px 14px;
      font-size: 0.82rem;
   }

   .contact-form-wrap {
      padding: 18px;
   }

   .footer-top {
      padding: 40px 0 24px;
   }
}

@media (max-width: 400px) {
   .hero-btns .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
   }

   .hero-btns {
      flex-direction: column;
   }
}

.container {
   padding-left: 15px;
   padding-right: 15px;
}







.floating-container {
   position: fixed;
   bottom: 120px;
   right: 10px;
   display: flex;
   flex-direction: column;
   gap: 15px;
   z-index: 999;
}

.floating-btn {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   text-align: center;
   color: #fff;
   font-size: 22px;
   line-height: 55px;
   box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
   transition: 0.3s;
}

.floating-btn:hover {
   transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
   background-color: #25D366;
}

/* Call */
.call {
   background-color: #007bff;
}
@media(max-width:768px)
{
	.cs-ds-nn{
		display:none!important
	}
}