/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* ===== VARIABLES ===== */
:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #e6f2ff;
    --secondary: #00a859;
    --accent: #ff6600;
    --accent-light: #fff0e6;
    --dark: #1a1a1a;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-light: 0 3px 10px rgba(0, 0, 0, 0.05);
    --radius: 6px;
    --transition: all 0.3s ease;
}
/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0066cc;
  white-space: nowrap;
}
/* ===== NAV ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-align: center;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: #00a859;
        }

        .btn-secondary:hover {
            background: #008749;
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #e55c00;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

.hero {
  position: relative;
  background: url('../img/banners/ro_service1.webp') no-repeat center center/cover;
  color: white;
  padding: 120px 0;
  text-align: center;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTENT ABOVE OVERLAY */
.hero .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero h1 {
  font-size: 3rem;
  color: white;
}

.hero p {
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* BUTTON GROUP */
.hero-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
/* ===== SECTIONS ===== */
section {
  padding: 60px 0;
}

/* ===== SERVICES ===== */
        .services {
            background: #f5f7fa;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow:0 5px 20px rgba(0, 0, 0, 0.08);
  border-top-color: #0066cc;
}

.service-icon {
  font-size: 30px;
  color: #0066cc;
  margin-bottom: 15px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.feature-icon {
  font-size: 25px;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ===== SERVICE AREA ===== */
.service-area {
  background: #f5f7fa;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.region-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

.region-card ul {
  margin-top: 10px;
  padding-left: 15px;
}
.service-area {
  background: #f5f7fa;
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00a859;
  border-radius: 2px;
}

p {
  margin-bottom: 1.2rem;
  color: #666666;
}

.india-map-container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.text-center {
  text-align: center;
}

.area-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.area-card h3 {
  color: #0066cc;
  border-bottom: 2px solid #f5f7fa;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 20px;
  padding: 0;
  margin: 0;
}

.area-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #eeeeee;
  color: #666666;
  display: flex;
  align-items: center;
}

.area-list li::before {
  content: "✓";
  color: #00a859;
  font-weight: bold;
  margin-right: 10px;
}

.highlight-box {
  background: #e6f2ff;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #0066cc;
  margin-top: 25px;
}

.tollfree {
  color: #0066cc;
  font-weight: 600;
}


/* Area Carousel */
.area-section { padding: 40px 20px; background: #eaf4ff; text-align: center; }
.carousel-wrapper { position: relative; display: flex; align-items: center; max-width: 100%; margin: auto; }
.area-carousel { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; padding: 10px; scrollbar-width: none; }
.area-carousel::-webkit-scrollbar { display: none; }
.area-chip { background: #0d5ed7; color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 14px; white-space: nowrap; }
.carousel-btn { background: #0d5ed7; color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.carousel-btn.left { margin-right: 8px; }
.carousel-btn.right { margin-left: 8px; }



/* ================= REVIEWS ================= */
.reviews {
  background: #f8fafc;
  padding: 50px 16px;
  text-align: center;
}

.reviews h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.review-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.review-image-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-image-name img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.review-content p {
  margin: 0;
}

.review-card strong {
  display: block;
  margin-top: 8px;
}
/* ===== CTA ===== */
/* ===== CTA SECTION ===== */

.cta-section {
  background: linear-gradient(to right, #0066cc, #0052a3);
  color: #ffffff;
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.cta-title {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accent {
  background: #ff6600;
  color: #ffffff;
}

.btn-accent:hover {
  background: #e55c00;
  transform: translateY(-2px);
}

.btn-contact {
  background: #ffffff;
  color: #0066cc;
}

.btn-contact:hover {
  background: #f5f7fa;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: white;
  padding: 40px 0;
  text-align: center;
}

 /* ===== BOTTOM RIGHT PERMANENT CALL BUTTON ===== */
        .bottom-call-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            left: auto;
            transform: none;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .bottom-call-tooltip {
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
            animation: pulse 2s infinite;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bottom-call-button {
            background: var(--accent);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
            transition: all 0.3s ease;
            animation: callPulse 2s infinite;
        }

        .bottom-call-button:hover {
            transform: scale(1.1);
            background: #e55c00;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.7);
        }

        .bottom-call-button .fa-phone {
            animation: shake 3s infinite;
        }


/* ===== POPUP CALL BUTTON (LEFT SIDE) ===== */
        .popup-call-container {
            position: fixed;
            bottom: 140px;
            left: 20px;
            right: auto;
            transform: none;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        .popup-call-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
            padding: 20px 28px;
            max-width: 360px;
            width: max-content;
            border-left: 6px solid var(--accent);
            pointer-events: auto;
            transform-origin: bottom left;
            animation: popupIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,102,0,0.2);
            text-align: left;
            position: relative;
        }
        .popup-cancel {
            position: absolute;
            top: 8px;
            right: 12px;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #999;
            transition: color 0.2s;
            pointer-events: auto;
            line-height: 1;
        }
        .popup-cancel:hover {
            color: #333;
        }
        .popup-call-card p {
            margin: 0 0 15px 0;
            font-weight: 600;
            color: var(--dark);
            font-size: 1.2rem;
            padding-right: 20px;
        }
        .popup-call-card .popup-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: flex-start;
        }
        .popup-call-card .btn-call-now {
            background: var(--accent);
            color: white;
            padding: 14px 26px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
            flex: 0 1 auto;
            justify-content: center;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255,102,0,0.3);
            transition: background 0.2s, transform 0.2s;
        }
        .popup-call-card .btn-call-now:hover {
            background: #e55c00;
            transform: scale(1.02);
        }
        .popup-call-card .btn-remind-later {
            background: #f1f1f1;
            color: #555;
            border: none;
            padding: 14px 20px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .popup-call-card .btn-remind-later:hover {
            background: #e4e4e4;
        }
/* ===== ERROR PAGE ===== */
.text-center {
  text-align: center;
}
        @keyframes popupIn {
            0% { opacity: 0; transform: scale(0.3) translateY(40px) translateX(-20px); }
            100% { opacity: 1; transform: scale(1) translateY(0) translateX(0); }
        }
        @keyframes callPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            75% { transform: rotate(-15deg); }
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
      .popup-call-container {
        bottom: 120px;
        left: 15px;
    }
    .popup-call-card p {
        font-size: 1.1rem;
    }
    .popup-call-card {
        padding: 15px 20px;
        max-width: 300px;
    }
    .btn-call-now {
        padding: 12px 20px;
        font-size: 1.1rem;
    }
  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
    .popup-call-card .popup-actions {
        flex-direction: column;
        width: 100%;
    }
}