@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --primary-color: #0d47a1; /* Deep Blue */
  --primary-light: #5472d3;
  --primary-dark: #002171;
  --secondary-color: #f57f17; /* Vibrant Orange for CTA */
  --secondary-light: #ffb04c;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --section-padding: 5rem 1rem;
  
  /* Animations */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 127, 23, 0.3);
  transition: var(--transition-fast);
  border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 127, 23, 0.4);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   TOP BAR SECTION
   ========================================= */
.topbar-wrapper {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 5px 0;
  font-size: 0.9rem;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  gap: 20px;
}

.topbar-contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-contact a:hover {
  color: var(--secondary-light);
}

/* =========================================
   HEADER SECTION
   ========================================= */
.header-wrapper {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo span {
  color: var(--secondary-color);
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  position: relative;
  padding: 10px 0;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition-fast);
}

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

/* Dropdown */
.header-dropdown {
  position: relative;
}

.header-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 0;
}

.header-dropdown:hover .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-weight: 500;
}

.header-dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.header-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.header-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* =========================================
   HERO SLIDER SECTION
   ========================================= */
.hero-wrapper {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 600px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 33, 113, 0.9) 0%, rgba(0, 33, 113, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.3);
}



/* =========================================
   ABOUT PREVIEW SECTION
   ========================================= */
.about-preview-wrapper {
  padding: var(--section-padding);
  background-color: var(--bg-white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-preview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview-image img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}

.about-preview-image:hover img {
  transform: scale(1.05);
}

.about-preview-badge {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.about-preview-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.about-preview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-feature-icon {
  background-color: var(--bg-light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* =========================================
   SERVICES PREVIEW SECTION
   ========================================= */
.services-preview-wrapper {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  position: relative;
  top: 0;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  top: -10px;
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 30px;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: -60px;
  position: relative;
  border: 4px solid var(--bg-white);
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.service-card-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card-link:hover {
  gap: 10px;
  color: var(--secondary-color);
}

/* =========================================
   PAGE BANNER (Inner Pages)
   ========================================= */
.page-banner-wrapper {
  background-color: var(--primary-dark);
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 113, 0.85);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-banner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.page-banner-breadcrumb a {
  color: var(--secondary-light);
}

.page-banner-breadcrumb span {
  color: rgba(255,255,255,0.7);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-box {
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contact-form-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-wrapper {
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 71, 161, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  transform: scale(0.5);
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* =========================================
   SERVICE DETAILS PAGE
   ========================================= */
.service-details-wrapper {
  padding: var(--section-padding);
}

.service-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.service-details-content img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}

.service-details-content h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
}

.service-sidebar-widget {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.service-sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.service-menu-list a {
  display: block;
  padding: 12px 15px;
  background-color: var(--bg-white);
  border-radius: 6px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

.service-menu-list a:hover,
.service-menu-list a.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer-wrapper {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #fff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .header-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--bg-light);
    text-align: center;
    margin-top: 10px;
  }
  
  .header-dropdown.active .header-dropdown-menu {
    display: block;
  }

  .header-hamburger {
    display: block;
  }

  .about-preview-grid,
  .contact-grid,
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-container {
    justify-content: center;
    text-align: center;
  }
  
  .topbar-contact {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Independent Service Provider Notice */
.isp-notice {
  background-color: #ffffff;
  border-left: 5px solid #ff9800;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.isp-icon {
  background-color: #fff3e0;
  color: #ff9800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.isp-content h4 {
  color: #1a237e;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.isp-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Brands Section */
.brands-wrapper {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
.brand-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: #666;
  opacity: 0.6;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.brand-item:hover {
  opacity: 1;
  color: #1a237e;
  transform: scale(1.05);
}

/* How It Works Section */
.how-it-works-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.how-it-works-title {
  color: #1a237e;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}
.how-it-works-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 60px;
}
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-color: #f0f0f0;
  z-index: 1;
}
.step-item {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform: translateY(30px);
}
.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.3s; }
.step-item:nth-child(3) { animation-delay: 0.5s; }
.step-item:nth-child(4) { animation-delay: 0.7s; }

.step-number {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border: 3px solid #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a237e;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 0 8px #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-item:hover .step-number {
  background-color: #ff9800;
  color: #ffffff;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 0 0 8px #ffffff, 0 10px 20px rgba(255, 152, 0, 0.3);
}
.step-title {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.step-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .steps-container::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  .step-item {
    margin-bottom: 50px;
    width: 100%;
    max-width: 350px;
  }
  .step-item:last-child {
    margin-bottom: 0;
  }
  .step-item:hover .step-number {
    transform: scale(1.1);
  }
}

/* Custom Footer Styling from User Request */
.footer-wrapper {
  background-color: #041b65 !important;
  padding: 60px 0 0 0 !important;
}
.footer-grid {
  padding-bottom: 50px;
}
.footer-logo-box {
  display: inline-block;
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.footer-title {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 25px;
}
.footer-links a, .footer-about p, .footer-links li {
  color: #d1d5db !important;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #ffffff !important;
}
.footer-bottom {
  background-color: #041b65  !important;
  border-top: none !important;
  padding: 20px 0 !important;
  color: #a0aec0 !important;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Contact Info Responsive Fix */
.footer-links li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.footer-links li i {
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-links li span, 
.footer-links li a, 
.footer-links li {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Update Footer v2 - Deep Navy & Orange Accents */
.footer-wrapper {
  background-color: #04255b !important;
  color: #94a3b8;
  padding: 70px 0 0 0 !important;
}
.footer-grid {
  padding-bottom: 30px;
}
.footer-title {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: #f57f17;
}
.footer-logo-box {
  display: inline-block;
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.footer-about p {
  color: #ffffff !important;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-links a, .footer-links li span {
  color: #ffffff !important;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f57f17 !important;
}
.footer-links li i {
  color: #f57f17 !important;
  margin-top: 5px;
  margin-right: 12px;
  font-size: 0.9rem;
}

/* Bottom Area Layout */
.footer-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 30px 0 40px 0;
}
.footer-bottom-left {
  flex: 2;
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-bottom-right {
  flex: 1;
  color: #ffffff;
  font-size: 0.9rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-bottom-right-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-bottom-right-links a {
  color: #ffffff;
  font-size: 0.85rem;
}
.footer-bottom-right-links a:hover {
  color: #f57f17;
}

@media (max-width: 992px) {
  .footer-bottom-area {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-right {
    align-items: center;
    margin-top: 15px;
  }
  .footer-bottom-right-links {
    justify-content: center;
  }
}

/* Responsive Fix for Footer Bottom Area - Prevents Awkward Text Wrapping */
.footer-bottom-left {
  flex: 1 !important;
}
.footer-bottom-right {
  flex: 0 0 auto !important;
}
.footer-bottom-right img {
  flex-shrink: 0;
}

/* Customer Reviews Section */
.reviews-wrapper {
  background-color: #f8fafc;
  padding: 80px 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  margin-bottom: 25px;
}
.reviews-badge i {
  color: #f57f17;
  margin-right: 10px;
}
.reviews-badge span {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
}
.reviews-title {
  color: #04255b;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.reviews-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.review-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.04);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-stars {
  color: #f57f17;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.review-stars i {
  margin-right: 3px;
}
.review-text {
  color: #475569;
  font-style: italic;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 25px;
}
.review-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}
.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #04255b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
}
.review-info h4 {
  color: #04255b;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1rem;
}
.review-info p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .reviews-title {
    font-size: 2rem;
  }
}

/* Unique Navy Outline Button */
.btn-outline-navy {
  display: inline-block;
  padding: 14px 32px;
  color: #04255b;
  background-color: transparent;
  border: 2px solid #04255b;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-outline-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #04255b;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-outline-navy:hover {
  color: #ffffff !important;
}
.btn-outline-navy:hover::before {
  transform: scaleY(1);
}

/* Home Contact Section */
.home-contact-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
}
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.home-contact-info .contact-title {
  color: #0f172a;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.home-contact-info .contact-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.contact-card-icon i {
  color: #f57f17;
  font-size: 1.2rem;
}
.contact-card-text h4 {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-card-text p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Form Container */
.home-contact-form-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}
.form-title {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.home-contact-form .form-group {
  margin-bottom: 20px;
}
.home-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.home-contact-form label {
  display: block;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.home-contact-form label span {
  color: #ef4444; /* red star */
}
.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.home-contact-form input:focus,
.home-contact-form select:focus,
.home-contact-form textarea:focus {
  outline: none;
  border-color: #f57f17;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
  background-color: #ffffff;
}
.btn-submit-whatsapp {
  width: 100%;
  padding: 15px;
  background-color: #f57f17;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.btn-submit-whatsapp:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245,158,11,0.3);
}

@media (max-width: 992px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .home-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-contact-form-container {
    padding: 25px;
  }
}


.c-phone {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 150px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.c-phone img {
  width: 40px;
  margin-left: -6px;

}

.c-phone p {
  padding: 8px 0px 5px 13px;
  text-align: center;
  font-weight: 600;


}


.float {
  display: flex;
  position: fixed;
  width: 150px;
  height: 40px;
  bottom: 95px;
  left: 20px;
  z-index: 100;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;

}

.float img {
  width: 40px;
  margin-left: -6px;

}

.float p {
  padding: 8px 0px 5px 10px;
  text-align: center;
  font-weight: 600;


}