/* Footer Logo Size Increase */
.footer-logo img {
  height: 150px !important;
  width: auto;
}
/* =======================
   GOOGLE FONTS & IMPORTS
   ======================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* =======================
   CSS VARIABLES & RESET
   ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e30000;
  --primary-dark: #c20000;
  --secondary-color: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --light-bg: #f9f9f9;
  --border-color: #eeeeee;
  --success-color: #27ae60;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

/* =======================
   TOP BAR
   ======================= */
.top-bar {
  background-color: var(--text-dark);
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-right a:hover {
  color: var(--primary-color);
}

/* =======================
   NAVBAR / HEADER
   ======================= */
header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links > li > a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--primary-color);
}

/* Dropdown Styling */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  list-style: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Call Now Button */
.call-now-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.call-now-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(227, 0, 0, 0.3);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =======================
   RESPONSIVE - MOBILE MENU
   ======================= */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  nav {
    padding: 12px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links > li > a {
    display: block;
    padding: 15px 20px;
    border: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background-color: var(--light-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.active-mobile .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .dropdown-menu li a {
    padding: 10px 40px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
  }
}

/* =======================
   BANNER / SLIDER
   ======================= */
.banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: var(--text-dark);
  display: block;
  width: 100%;
}

.banner .slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 15;
  width: 90%;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-content p {
  font-size: 1.5rem;
  color: white;
  font-weight: 300;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.banner-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(227, 0, 0, 0.4);
}

.banner .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .slide-1 {
  background-image: url('./banner image/slider 1.png');
}

.banner .slide-2 {
  background-image: url('./banner image/slider 2.png');
}

.banner .slide-3 {
  background-image: url('./banner image/slider 3.png');
}

.banner .slide:first-child {
  opacity: 1;
  z-index: 2;
}

.banner .slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.slide-content {
  display: none;
}

.slide-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.slide-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 200;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* =======================
   HELPLINE STRIP
   ======================= */
.helpline-strip {
  background-color: var(--primary-color);
  color: white;
  padding: 25px 40px;
  text-align: center;
}

.helpline-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.helpline-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.helpline-strip .slide-btn {
  background-color: white;
  color: var(--primary-color);
}

.helpline-strip .slide-btn:hover {
  background-color: var(--light-bg);
}

/* =======================
   SECTIONS
   ======================= */
section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

section > p:first-of-type {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 16px;
}

/* =======================
   ABOUT Section
   ======================= */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

/* =======================
   SERVICES GRID
   ======================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(227, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-card-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-card-btn:hover {
  color: var(--primary-dark);
  margin-left: 5px;
}

/* =======================
   WHY CHOOSE US
   ======================= */
.why-choose-us {
  background-color: var(--light-bg);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-box {
  background-color: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(227, 0, 0, 0.1);
}

.why-box-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* =======================
   HERO BANNER (Service Pages)
   ======================= */
.hero-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('./banner image/slider 1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: -30px;
  padding-bottom: 0;
}

.hero-banner h1 {
  font-size: 48px;
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* =======================
   SERVICE PAGE CONTENT
   ======================= */
.service-page-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-description {
  line-height: 1.8;
}

.service-description h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
}

.service-description p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-box {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.cta-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-box a {
  background-color: white;
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: all 0.3s ease;
}

.cta-box a:hover {
  transform: scale(1.05);
}

/* =======================
   CONTACT FORM
   ======================= */
.contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(227, 0, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.contact-details {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =======================
   FOOTER
   ======================= */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 50px 40px 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* =======================
   PAGE TITLE
   ======================= */
.page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  display: none;
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */
@media (max-width: 1024px) {
  nav {
    padding: 12px 20px;
  }

  section {
    padding: 40px 20px;
  }

  .banner {
    height: 500px;
  }

  .banner .slide {
    height: 500px;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .service-page-content {
    grid-template-columns: 1fr;
  }

  .cta-box {
    position: static;
    margin-top: 30px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 400px;
  }

  .banner .slide {
    height: 400px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .helpline-content {
    flex-direction: column;
    gap: 15px;
  }

  .helpline-content h2 {
    font-size: 22px;
  }

  section {
    padding: 30px 15px;
  }

  section h2 {
    font-size: 28px;
  }

  .services-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .service-card-content {
    padding: 15px;
  }

  .footer-content {
    gap: 30px;
  }

  .hero-banner {
    height: 300px;
  }

  .hero-banner h1 {
    font-size: 28px;
  }

  .service-page-content {
    padding: 0;
  }

  .contact-form,
  .contact-details {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .top-bar-left {
    gap: 15px;
  }

  nav {
    padding: 10px 15px;
  }

  .logo img {
    height: 80px;
  }

  section h2 {
    font-size: 24px;
  }

  .slide-content h1 {
    font-size: 22px;
  }

  .slide-content p {
    font-size: 12px;
  }

  .slider-dots {
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .helpline-content h2 {
    font-size: 18px;
  }

  .why-box,
  .service-card {
    padding: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =======================
   UTILITY CLASSES
   ======================= */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.mt-20 {
  margin-top: 20px;
}

.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-icon {
  background-color: #25D366;
  color: white;
}

.whatsapp-icon:hover {
  background-color: #1fad50;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.phone-icon {
  background-color: var(--primary-color);
  color: white;
}

.phone-icon:hover {
  background-color: var(--primary-dark);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 6px 20px rgba(227, 0, 0, 0.4);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.show {
  display: block !important;
}
