/* =====  voltas-Style Full CSS with Custom Font ===== */

/* Import your custom font */
@font-face {
    font-family: 'FS elliot pro';
    src: url('../fonts/FS\ Elliot\ ProRegular.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
  --voltas-blue: #0082CA;
  --voltas-dark: #005B8E;
  --voltas-gray: #4D4D4D;
  --voltas-light: #F2F2F2;
  --voltas-white: #FFFFFF;
  --max-width: 1200px;
  --font-family: 'FS elliot pro', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  color: var(--lg-dark);
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, .hero-form button, .reach h2, .services h2, .gallery h2 {
    font-family:  var(--font-family);
}

/* Body text */
body, p, a, li, input, select, textarea, button {
    font-family:  var(--font-family);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Headings styles */
h1, h2, h3 {
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--lg-dark);
}

h1 { font-size: 42px; line-height: 1.2; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

/* Paragraph */
p {
  margin: 10px 0 16px;
  color: var(--lg-gray);
  font-size: 16px;
  text-align: center;
}

/* Links */
a {
  color: var(--lg-red);
  text-decoration: none;
}
a:hover {
  background-color: transparent;
  color: var(--lg-dark);
}

li {
  list-style: none;
}

/* ===== Header ===== */
header {
  background: #ffffff;
  border-bottom: 2px solid var(--voltas-blue);
  padding: 15px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  text-align: center;
}



header .logo h5 {
  margin: 0;
  color: var(--voltas-gray);
  font-weight: 500px;    
}

header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  font-weight: 500;
  color: var(--voltas-gray);
}
.nav-links ul li a:hover {
    color: var(--voltas-blue);
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  background: url("../img/ac12.png") no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0.5);
  z-index: 0;
}
.hero-text {
  position: relative;
  min-width: 280px;
  padding: 20px;
  z-index: 1;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

/* ===== Service Request Form ===== */
.appointment-section {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 10px auto;
  max-width: 1100px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  text-align: center;
  width: 90%;
}

.appointment-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--voltas-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--voltas-gray);
  display: inline-block;
  padding-bottom: 8px;
}

/* Form Styles */
.hero-form {
  display: flex;
  justify-content: center;
}
.hero-form form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--voltas-dark);
  background: #ffffff;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--voltas-dark);
  box-shadow: 0 0 8px rgba(0,149,217,0.2);
}

/* Button */
.hero-form button {
  background: var(--voltas-dark);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-form button:hover {
  background: #007bb3;
}

/* ===== Services Section ===== */
.services {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: var(--voltas-blue);
}

.service-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--voltas-gray);
  transform: translateX(-50%);
}

/* Service grid */
.service-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.service-grid img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--voltas-dark);
  max-width: 500px;
}

.service-grid li {
  margin-bottom: 8px;
  color: var(--lg-gray);
}

.services p {
  margin-top: 15px;
  font-size: 1.05rem;
  text-align: center;
  color: var(--voltas-gray);
}

.services a {
  color: var(--voltas-dark);
  font-weight: 600;
  text-decoration: none;
}
.services a:hover {
  color: var(--voltas-blue);
}

/* ===== Gallery Section ===== */
.gallery {
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

.gallery h2 {
  color: var(--voltas-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--voltas-gray);
  display: inline-block;
}

.gallery-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-text h3 {
  color: var(--voltas-blue);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.gallery-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--voltas-gray);
}

.gallery-text i {
  color: var(--voltas-dark);
  font-size: 1.2rem;
}

/* Call Button */
.call-btn {
  background-color: var(--voltas-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.call-btn:hover {
  background-color: var(--voltas-blue);
}

/* ===== Reach Section ===== */
.reach {
  margin: 25px 0 0;
  text-align: center;
}
.reach h2 {
    color: var(--voltas-dark);
  border-bottom: 2px solid var(--voltas-gray);
  display: inline-block;
}
.reach-options {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.reach-options div {
  flex: 1;
  background: var(--voltas-white);
  padding: 20px;
  border-radius: 10px;
}
.reach .note {
  font-style: italic;
  color: var(--voltas-gray);
}
.reach-box {
  flex: 1 1 250px;
  background: var(--voltas-light);
  padding: 25px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.reach-box i {
  font-size: 30px;
  color: var(--voltas-dark);
  margin-bottom: 10px;
  display: block;
}
.reach-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.reach-box:hover i {
  color: var(--voltas-blue);
}

/* Trust logos */
.trust {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
}
.trust img {
  display: block;
  border-radius: 10px;
}
.trust li {
  color: var(--voltas-gray);
}

/* Disclaimer */
.disclaimer {
  background: #e8ecef;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}
.disclaimer p {
  color: var(--voltas-gray);
}
.disclaimer a {
  color: var(--voltas-dark);
  text-decoration: none;
}

/* Footer */
footer {
  background: var(--voltas-gray);
  padding: 40px 20px;
  font-size: 14px;
  color: #ffffff;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}
.footer-links a:hover {
  color: var(--voltas-blue);
}

header .logo img{
    width: 120px;
    height: auto;
     object-fit: contain;
  max-width: 100%;
}
.copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}
strong {
  color: var(--voltas-dark);
}

span{
  color: #fff;
}

.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #005B8E, #00456B);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Phone icon */
.tollfree-btn i {
  font-size: 1.1rem;
}

/* Shining gloss effect */
.tollfree-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.15)
  );
  transform: skewX(-25deg);
  animation: shineLoop 4s linear infinite;
}

/* Auto shine animation every 3s */
@keyframes shineLoop {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* Hover animation */
.tollfree-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tollfree-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    bottom: 15px;
    right: 15px;
  }
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 5px rgba(0,149,217,0.6);
  }
  50% {
    transform: translateY(-8px);
    text-shadow: 0 0 15px rgba(0,149,217,0.8);
  }
}
.icon-animate {
  animation: bounceGlow 0.6s ease-in-out;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header {
    padding: 10px 30px;
  }
  .menu-toggle {
    display: block;
  }
  header .nav {
    justify-content: space-between;
  }
  .nav-links ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    width: 50%;
    background: var(--voltas-light);
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
  }
  .nav-links ul.active {
    display: flex;
    margin-top: 10px;
  }
  .hero {
    padding: 40px 20px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .appointment-section {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .gallery-content {
    flex-direction: column;
    text-align: center;
  }
  .gallery img {
    max-width: 100%;
  }
  .gallery-text {
    margin-top: 20px;
    text-align: left;
  }
  .tab-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
  }
  .service-grid {
    flex-direction: column;
    text-align: center;
  }
  .service-grid ul {
    text-align: left;
    margin: 0 auto;
  }
  .service-grid img {
    max-width: 100%;
  }
  .reach-options {
    flex-direction: column;
    align-items: center;
  }
  .trust {
    flex-direction: column;
  }
  .trust img {
    margin-bottom: 15px;
  }
  .reach-box {
    width: 90%;
    margin-bottom: 15px;
  }
}
.back-home {
  text-align: center;
  margin: 30px 0 10px;
}
.back-home a {
  display: inline-block;
  background:var(--voltas-blue);
  color: var(--voltas-white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background:var(--voltas-dark);
  color: var(--voltas-light);
}
.common-content {
  background: var(--wp-light);
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  margin-top: 30px;
}

.common-content h2 {
  color: var(--wp-dark);
  margin-top: 25px;
  text-align: left;
  font-size: 25px;
}

.faq-item {
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .common-content {
    padding: 20px 15px;
  }
  .common-header {
    padding: 30px 10px;
  }
}