/* ============================================
   SK GAS REPAIRING AND SERVICE - 2026
   Modern Responsive Website Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary-red: #e63946;
  --primary-orange: #f77f00;
  --dark-black: #0a0a0a;
  --light-black: #1a1a1a;
  --pure-white: #ffffff;
  --off-white: #f8f9fa;
  --gray-text: #6c757d;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.25);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-red: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--light-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* a:hover,
button:hover,
.service-box:hover,
.card:hover{
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='24' font-size='30'%3E🔥%3C/text%3E%3C/svg%3E"), auto;
} */


a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}



.two-column {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.two-column .left,
.two-column .right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .two-column .left,
    .two-column .right {
        width: 100%;
    }
}

.service-video{
    width:100%;
    max-width:500px;
    border:5px solid #fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}



.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 25px auto 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(230, 57, 70, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--dark-black);
}

.btn-dark {
  background: var(--dark-black);
  color: var(--pure-white);
}

.btn-dark:hover {
  background: var(--primary-red);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-text {
  color: var(--pure-white);
}

.logo-text h1 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.logo-text span {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: var(--pure-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Floating Buttons --- */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: pulse 2s infinite;
}

.floating-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-red);
  color: var(--pure-white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  transition: var(--transition);
}

.floating-call a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: var(--pure-white);
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1) rotate(5deg);
}

.back-to-top {
  position: fixed;
  bottom: 160px;
  right: 30px;
  z-index: 999;
  width: 45px;
  height: 45px;
  background: var(--dark-black);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247, 127, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-text h1 span {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-text .subtitle span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-text .subtitle span::before {
  content: '●';
  color: var(--primary-orange);
  font-size: 0.6rem;
}

.hero-text .subtitle span:first-child::before {
  content: none;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--gradient-red);
  color: var(--pure-white);
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  animation: scaleIn 0.8s ease 0.8s both;
}

/* --- Why Choose Us --- */
.why-choose {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--pure-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--pure-white);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-black);
}

.feature-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* --- Services Section --- */
.services {
  background: var(--dark-black);
  color: var(--pure-white);
}

.services .section-header h2 {
  color: var(--pure-white);
}

.services .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-black);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-red);
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover::after {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover li {
  color: var(--pure-white);
}

.service-card:hover .service-icon {
  background: var(--pure-white);
  color: var(--primary-red);
}

.service-image {
  height: 200px;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pure-white);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-content ul {
  margin-bottom: 25px;
}

.service-content li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.service-content li i {
  color: var(--primary-orange);
}

.service-buttons {
  display: flex;
  gap: 10px;
}

.service-buttons .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- Emergency Banner --- */
.emergency-banner {
  background: var(--gradient-red);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  animation: shimmer 20s linear infinite;
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.emergency-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 10px;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-phone .phone-icon {
  width: 70px;
  height: 70px;
  background: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-red);
  animation: pulse 2s infinite;
}

.emergency-phone a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pure-white);
}

.emergency-phone span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* --- Service Areas --- */
.service-areas {
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card:hover {
  background: var(--gradient-red);
  color: var(--pure-white);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.area-card i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  transition: var(--transition);
}

.area-card:hover i {
  color: var(--pure-white);
}

.area-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--pure-white);
  background-image: url(images/pune_sk.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 30%;
  width: 100%;
  height: 100%;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
}

.testimonial-inner {
  background: var(--off-white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.testimonial-inner::before {
  content: 'SK GAS';
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--primary-red);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pure-white);
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-black);
}

.testimonial-info .stars {
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
 
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);

  color: var(--primary-red);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: var(--primary-red);
  color: var(--pure-white);
}

.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary-red);
  width: 30px;
  border-radius: 6px;
}

/* --- FAQ Section --- */
.faq {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pure-white);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-black);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary-red);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* --- Contact CTA --- */
.contact-cta {
  background: var(--gradient-dark);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
}

.contact-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Map Section --- */
.map-section {
  padding: 0;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(0.3);
}

/* --- Footer --- */
.footer {
  background: var(--dark-black);
  color: var(--pure-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column ul li a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-column ul li a i {
  font-size: 0.7rem;
  color: var(--primary-red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(230, 57, 70, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item div strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.footer-contact-item div span,
.footer-contact-item div a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

/* --- About Page --- */
.about-hero {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.about-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.about-content {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-red);
  color: var(--pure-white);
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-image .experience-badge .text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  margin-top: 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--dark-black);
  font-weight: 500;
}

.about-features li i {
  width: 35px;
  height: 35px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 0.9rem;
}

/* --- Mission Vision --- */
.mission-vision {
  background: var(--pure-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--off-white);
  padding: 50px 40px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-red);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mv-card i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-black);
}

.mv-card p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* --- Team Section --- */
.team {
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.team-image {
  height: 250px;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-image i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-black);
}

.team-info p {
  color: var(--primary-red);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* --- Timeline --- */
.timeline {
  background: var(--pure-white);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gradient-red);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-red);
  border-radius: 50%;
  border: 4px solid var(--pure-white);
  box-shadow: 0 0 0 3px var(--primary-red);
}

.timeline-content {
  background: var(--off-white);
  padding: 25px 30px;
  border-radius: 15px;
  max-width: 350px;
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* --- Counter Section --- */
.counters {
  background: var(--gradient-red);
  color: var(--pure-white);
  padding: 80px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.counter-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.counter-item .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-item .label {
  font-size: 1rem;
  opacity: 0.9;
}

/* --- Services Page --- */
.services-hero {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--pure-white);
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-detail {
  background: var(--off-white);
}

.service-detail-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-detail-header {
  background: var(--gradient-red);
  padding: 40px;
  color: var(--pure-white);
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-detail-header i {
  font-size: 3rem;
}

.service-detail-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.service-detail-body {
  padding: 40px;
}

.service-detail-body p {
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-detail-body ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.service-detail-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-black);
  font-weight: 500;
}

.service-detail-body li i {
  color: var(--primary-red);
}

/* --- Service Process --- */
.process {
  background: var(--pure-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gradient-red);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pure-white);
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-black);
}

.process-step p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary-red);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-red);
  color: var(--pure-white);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-black);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--gray-text);
  font-weight: 400;
}

.pricing-card ul {
  margin: 30px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
}

.pricing-card ul li i {
  color: var(--primary-red);
}

/* --- FAQ Page --- */
.faq-hero {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--pure-white);
}

.faq-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.faq-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Contact Page --- */
.contact-hero {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--pure-white);
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--pure-white);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card i {
  width: 50px;
  height: 50px;
  background: var(--gradient-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-black);
}

.contact-info-card p,
.contact-info-card a {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.contact-info-card a:hover {
  color: var(--primary-red);
}

.contact-form-wrapper {
  background: var(--pure-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark-black);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-black);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  color: var(--primary-red);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--primary-red);
}

.form-group.error .form-error {
  display: block;
}

/* --- Sticky Mobile Bar --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--pure-white);
  padding: 12px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
}

.sticky-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 500;
}

.sticky-mobile-bar a i {
  font-size: 1.2rem;
}

.sticky-mobile-bar a.call-btn {
  color: var(--primary-red);
}

.sticky-mobile-bar a.whatsapp-btn {
  color: #25d366;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--dark-black);
  z-index: 1001;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  color: var(--pure-white);
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a.active {
  color: var(--primary-orange);
}

.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .emergency-content {
    text-align: center;
    justify-content: center;
  }

  .emergency-phone {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
    transform: none;
  }

  .process-step::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-call {
    bottom: 80px;
    right: 15px;
  }

  .floating-call a span {
    display: none;
  }

  .floating-call a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 145px;
    right: 15px;
  }

  .sticky-mobile-bar {
    display: flex;
  }

  .back-to-top {
    bottom: 210px;
    right: 15px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .about-hero h1,
  .services-hero h1,
  .faq-hero h1,
  .contact-hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* --- Loading Animation --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(230, 57, 70, 0.2);
  border-top-color: var(--primary-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-content p {
  color: var(--pure-white);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* --- Selection --- */
::selection {
  background: var(--primary-red);
  color: var(--pure-white);
}














.services-section{
    background:#f3f3f3;
    padding:70px 20px;
    position:relative;
    overflow:hidden;
}

/* Top Zigzag */
.services-section:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:12px;

}

/* Bottom Zigzag */
.services-section:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:12px;
}

.services-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:35px;
    flex-wrap:wrap;
}

.service-box{
    width:120px;
    text-align:center;
    transition:0.3s ease;
    cursor:pointer;
}

.service-box:hover{
    transform:translateY(-8px);
}

.icon-box{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#f0b33d;
    background:#ffffff;
    border:2px solid #d8d8d8;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.service-title{
    margin-top:18px;
    font-size:14px;
    font-weight:800;
    line-height:1.5;
    letter-spacing:1px;
    color:#4c5562;
    text-transform:uppercase;
}

@media(max-width:768px){

    .services-container{
        gap:25px;
    }

    .service-box{
        width:140px;
    }

    .icon-box{
        width:75px;
        height:75px;
        font-size:34px;
    }

    .service-title{
        font-size:13px;
    }
}
