/* ==========================================================================
   Elica Service Center — exact-structure clone stylesheet
   ========================================================================== */

*, *::before, *::after{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.7;
}

img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }

.container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- header ---------- */
.site-header{
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo{
  font-size: 22px;
  font-weight: bold;
  color: #222222;
}
.logo span{ color: #F26522; }

.main-nav{ display: flex; gap: 30px; }
.main-nav a{
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
.main-nav a:hover{ color: #F26522; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  width: 34px; height: 34px;
  cursor: pointer;
}
.nav-toggle span{
  width: 24px; height: 2px;
  background: #333333;
}

/* ---------- hero image ---------- */
.hero-image img{ width: 100%; }

/* ---------- intro ---------- */
.intro{
  text-align: center;
  padding: 50px 0 20px;
}
.intro h2{
  font-size: 30px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 10px;
}
.intro-sub{
  font-size: 20px;
  font-weight: 400;
  color: #555555;
}

/* ---------- support section ---------- */
.support{
  text-align: center;
  padding: 20px 0 50px;
}
.support h3{
  font-size: 22px;
  color: #F26522;
  margin: 34px 0 10px;
}
.support h3 a{ color: #F26522; }
.support p{
  max-width: 760px;
  margin: 0 auto;
  color: #555555;
  font-size: 15px;
}

/* ---------- service rows ---------- */
.service-row{ padding: 60px 0; }
.service-row.alt{ background: #F9F9F9; }

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

.service-media img{
  border-radius: 6px;
}

.service-text h2{
  font-size: 26px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 16px;
}
.service-text p{
  font-size: 15px;
  color: #555555;
  margin: 0;
}

/* ---------- closing statement ---------- */
.closing{
  background: #F26522;
  padding: 40px 0;
  text-align: center;
}
.closing p{
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- footer ---------- */
.site-footer{
  background: #1E1E1E;
  color: #cccccc;
  padding: 50px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col h4{
  color: #ffffff;
  font-size: 17px;
  margin: 0 0 18px;
}
.footer-col a,
.footer-col p{
  display: block;
  font-size: 14px;
  color: #cccccc;
  margin: 0 0 12px;
}
.footer-col a:hover{ color: #F26522; }

/* ---------- sticky call button ---------- */
.sticky-call{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #F26522;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
}

/* ---------- responsive ---------- */
@media (max-width: 780px){
  .main-nav{
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #eeeeee;
    display: none;
  }
  .main-nav.is-open{ display: flex; }
  .nav-toggle{ display: flex; }

  .service-grid{ grid-template-columns: 1fr; gap: 24px; }
  .service-row.alt .service-text{ order: 2; }
  .service-row.alt .service-media{ order: 1; }

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

















Banner code




/* ===== HERO BANNER (INCREASED SIZE & LEFT ALIGNED) ===== */
.hero-banner {
  position: relative;
  background: url('../img/index.jpg') no-repeat center center/cover;
  min-height: 650px; /* Banner ka height 520px se badha kar 650px kar diya gaya hai */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alignment left karne ke liye */
  color: #ffffff;
  padding: 80px 0; /* Vertical padding badhayi gayi hai */
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Text clear dikhne ke liye overlay halka dark kiya hai */
  z-index: 1;
}

/* Hero Content Box (Strictly Left Aligned) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: left; /* Pure text aur button ko left align karta hai */
  margin-left: 0;   /* Left margin zero rakhi hai */
  padding-left: 15px; /* Side spacing ke liye */
}

.hero-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #e0e0e0;
  text-align: left;
}

.hero-title {
  font-size: 42px; /* Text size thoda badhaya gaya hai bade banner ke hisab se */
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 18px;
  text-align: left;
}

/* Orange highlighted text */
.highlight-text {
  color: #ff8c00;
  display: block;
  font-size: 46px;
}

.hero-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f1f1f1;
  text-align: left;
}

/* Red CTA Button (Left Aligned) */
.btn-cta {
  display: inline-block; /* Left align rehne ke liye inline-block zaroori hai */
  background-color: #ff0033;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
  float: left; /* Button ko strict left rakhne ke liye */
  clear: both;
}

.btn-cta:hover {
  background-color: #cc0029;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 500px; /* Mobile screen ke hisab se balanced height */
    padding: 50px 0;
  }
  .hero-title {
    font-size: 30px;
  }
  .highlight-text {
    font-size: 34px;
  }
}














Our service code

/* ===== OUR SERVICES SECTION ===== */
.services-section {
  background-color: #f1f1f1; /* Light grey background as in screenshot */
  padding: 60px 0 80px 0;
}

/* Header Text Styles */
.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px auto;
  padding: 0 15px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 900;
  color: #111111;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

/* Grid Layout (3 Columns) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 15px;
}

/* Service Card Box */
.service-card {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Card Icons */
.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Card Heading & Paragraph */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive View for Mobile & Tablets */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column on mobile screens */
  }
  .section-title h2 {
    font-size: 30px;
  }
}







/* ==========================================
   HERO BANNER STYLES (ISOLATED)
   ========================================== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: url('../img/index.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  padding: 60px 0;
  box-sizing: border-box;
}

/* Dark Background Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Text & Content Box */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: left;
  padding: 0 20px;
}

.hero-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-align: left;
}

.highlight-text {
  color: #ff8c00;
  display: block;
  font-size: 44px;
  margin-top: 5px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #f1f1f1;
  margin: 0 0 25px 0;
  text-align: left;
}

/* Red Contact Button */
.btn-cta {
  display: inline-block;
  background-color: #ff0033;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #cc0029;
}

/* ==========================================
   INTRO SECTION (ISOLATED)
   ========================================== */
.intro {
  background-color: #ffffff; /* White background fix */
  color: #222222;
  padding: 50px 0 30px 0;
  text-align: center;
}

.intro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-sub {
  font-size: 16px;
  color: #555555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 480px;
  }
  .hero-title {
    font-size: 28px;
  }
  .highlight-text {
    font-size: 32px;
  }
}