
/* =======================================================
   GLOBAL RESET + TYPOGRAPHY SYSTEM
======================================================= */
/* ================= GLOBAL TYPOGRAPHY ================= */
/* =======================================================
   GLOBAL RESET + FIXED LAYOUT (Updated for 2025)
======================================================= */

html, body {
  /* Prevent browser from scaling text automatically */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  
  /* Force the body to stay at a desktop width */
  width: 100%; 
  margin: 0 auto;
  overflow-x: hidden; /* Prevent horizontal scroll jitter */
  background: #fff;
}

html, body {
  /* Prevents mobile browsers from automatically enlarging text */
  -webkit-text-size-adjust: 100%; 
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


body {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 40px; /* Standard desktop size (40px was likely a mobile compensation) */
  font-weight: 300;
  line-height: 1.6;
  color: #000;
}

h1 { font-size: 32px; line-height: 38px; }
h2 { font-size: 50px; line-height: 52px; }
h3 { font-size: 22px; line-height: 28px; }
h4 { font-size: 18px; line-height: 24px; }
h5 { font-size: 16px; line-height: 22px; }
h6 { font-size: 14px; line-height: 20px; }






img, video, iframe {
  max-width: 100%;
  height: auto;
}


* {
  
  box-sizing: border-box; /* Crucial for width calculations */
}

/* =======================================================
   ROOT VARIABLES
======================================================= */
:root {
  --site-header-height: 150px;
  --primary:#1e63ff;
  --bg:#0b1220;
  --text:#000;
}

/* =======================================================
   HEADER (Premium Header Styling)
======================================================= */
.site-header-placeholder {
  display: block;
  height: var(--site-header-height);
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--site-header-height);
  z-index: 1000;
  background: #fff;
  overflow: visible; /* Rely on global body overflow hidden */
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.site-header .container {
  height: 120px;
  padding: 7% 5%; /* Good for desktop */
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* ---------------- TOPBAR ---------------- */
.topbar-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 35px;
  padding: 4px 4px;
  width: 100%;
}

.topbar-menu a {
  color: #000;
  text-decoration: none;
}

.topbar-menu .social-icons a {
  margin-left: 12px;
  color: #777;
  font-size: 15px;
}

/* ---------------- HEADER INNER ---------------- */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  overflow: visible;
}

/* ---------------- LOGO ---------------- */
.header-left .logo img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom:70%;
}

/* ---------------- NAVIGATION ---------------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 33px; /* Desktop Nav Font Size */
  color: #333;
  padding: 6px 10px;
}

/* ---------------- BUTTONS ---------------- */
.btn, .btn-outline {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 14px; /* Button Font Size */
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn {
  background: linear-gradient(135deg,#0073e6,#005bb5);
  color: #fff !important;
  box-shadow: 0 3px 8px rgba(0,115,230,0.25);
}
.btn:hover { background: linear-gradient(135deg,#005bb5,#004a94); }


.btn-outline {
  border: 2px solid #0073e6;
  color: #0073e6 !important;
}
.btn-outline:hover {
  background: #0073e6;
  color: #fff !important;
}

/* ---------------- HAMBURGER ---------------- */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #0073e6;
  cursor: pointer;
}

/* =======================================================
   MOBILE MENU (Optimized for CLS)
======================================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0; 
  transform: translateX(100%); 
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease; 
  z-index: 1003;
}

.mobile-menu.open { 
  transform: translateX(0); 
}

.mobile-menu a {
  padding: 12px 20px;
  margin: 5px 0;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

/* ---------------- OVERLAY ---------------- */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s;
  z-index: 1001;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =======================================================
   GENERIC CONTAINER & INTERACTION SAFETY
======================================================= */
input, button, label, select, textarea {
    position: relative;
    z-index: 10;
    cursor: pointer !important;
}

.container{
  max-width:100%;
  margin:0 auto;
  padding:15px;
  z-index: 5;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--bg);
  padding:12px 15px;
  width:100%;
  overflow:hidden;
}

/* =======================================================
   HERO
======================================================= */
.hero{
  position:relative;
  min-height:80vh;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
  overflow:hidden;
  z-index: 0;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}

.hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.3); 
  z-index:1;
   pointer-events: none; /* 🔥 REQUIRED */
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero h1.title{
  font-size:70px;
  line-height:1.1;
  margin:0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
  stroke-width: 1px; 
  stroke: #000;
}

.hero h2.title{
  font-size: 35px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
  stroke-width: 1px; 
  stroke: #000;
}


/* =======================================================
   SECTIONS / BACKGROUNDS
======================================================= */
.section, .fixed-bg{
  width: 100%;
  /*font-size: ; /*section body font size*/
}

.section{
  padding:40px 0;
}

.section .title{
  font-size:60px;
  margin-bottom:20px;
  text-align:center;
}



.section .title,
.hero h1,
.hero h2 {
  font-weight: 600;
  font-size:60px;
}

/*  section paragraph heading   */

.grid.cols-2 h2{
    font-size:50px;
    font-weight:500;
    line-height:52px;
    
}

/* Section heading our services, customer reviews  */

.section .container h1.title{
    font-size: 60px;
    font-weight: 600;
    line-height: 62px;
}

.section .container{
  background:#FFF;
  padding:25px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.fixed-bg{
  position:relative;
  min-height:40vh;
  padding:20px 0;
  overflow:hidden;
  background:#FFF;
}

.fixed-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
  pointer-events: none !important; /* 🔥 REQUIRED */
}

/* =======================================================
   GRID + CARDS
======================================================= */
.grid{
  display:grid;
  gap:20px;
}

.grid.cols-3{
  grid-template-columns:repeat(3,1fr);
}

.grid.cols-2{
  grid-template-columns:repeat(2,1fr);
}

.card {
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: all 0.25s ease, transform 0.25s ease;
  will-change: transform, box-shadow, background, color;
}

.section .card {
  padding: 25px;
  border-radius: 12px;
  background: #eef5fa; 
  border:1px solid #eef5fa;
  color: #0b3c5d;
 
}

/* our services heading of each service*/

.section .card h2 {
    font-size:40px;
    font-weight: 500;
    line-height: 42px;
    
}

.section .card:hover {
  background: #FFF;
  color: #292929;
  border:1px solid #292929;
}

.service-card .icon{
  font-size:28px;
  margin-bottom:10px;
}

.service-card .title{
  font-weight:700;
}


/*********part 2******/


/* ======================================
   FOOTER
====================================== */
.site-footer{
  background:#222; /* Footer background color */
  color:#eee;      /* Footer text color */
  padding:10px 15px; /* Footer padding */
}



.footer-grid{
  display:grid; /* Footer items layout grid */
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); /* Responsive columns */
  gap:5px; /* Space between items */
}

.footer-grid,
.office-section{
  max-width: 97%;
  margin: auto;
/*  padding: 0 60px;*/
}


.footer-grid p,ul{
    font-size: 33px; /* Footer Title Font Size */
    font-weight: 300;
}

.footer-grid h4{
  color:#ffd700; /* Footer headings color */
  margin-bottom:12px;
  font-size: 40px; /* Footer Title Font Size */
}

.footer-grid a{
  color:#fff; /* Footer links color */
  text-decoration:none;
  font-size: 33px; /* Footer Link Font Size */
  font-weight: 400;
}

.footer-grid a:hover{
  color:#ffd700; /* Link hover color */
}

.office-row p,ul{
    font-size: 33px; /* Footer Title Font Size */
    font-weight: 300;
}


/* ===============================
   TESTIMONIAL MARQUEE
================================ */
/* ===============================
   TESTIMONIAL SLIDER – FINAL FIX
================================ */

/* testimonial working */

.testimonial-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-viewport {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    background: #e8f1f6;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.quote{
    color:#2c3e50;
    font-size: 32px;
    font-style: italic;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px 0;
}

.ts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.ts-arrow.left { left: 0; }
.ts-arrow.right { right: 0; }

/* terms and condition*/

.inline-row{
  display:flex;
  gap:15px;
}

.inline-row > div{
  flex:1;
}

/* SAFETY: NO HORIZONTAL SCROLL */
body {
    overflow-x: hidden;
}



/** -----------------------------------
MODAL WINDOW
-----------------------------**/

/* Modal Overlay */
.terms-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* On top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Enable scrolling on small screens */
  background-color: rgba(0,0,0,0.6); /* Black overlay */
  padding: 20px;
  box-sizing: border-box;
}

/* Modal Content */
.terms-content {
  background-color: #fff;
  margin: 40px auto;
  padding: 65px 55px;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: slideDown 0.3s ease;
  
}

/* Close Button */
.terms-content .close {
  position: absolute;
  top: 5px;
  right: 30px;
  font-size:100px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.terms-content .close:hover {
  color: #1e63ff;
}

.terms-content h3 {
  margin-top: 0;
  color: #1e63ff;
  text-align: center;
  margin-bottom: 20px;
  font-size:65PX;
}

.terms-content ul {
  padding-left: 25px;
  color: #555;
   font-size:60px;
}

.terms-content button {
  display: block;
  margin: 20px auto 0 auto;
  background: linear-gradient(135deg,#0073e6,#005bb5);
  color: #fff;
  border: none;
  padding: 45px 55px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 3rem;
}

.terms-content button:hover {
  background: linear-gradient(135deg,#005bb5,#004a94);
  transform: translateY(-2px);
}

/* Slide Down Animation */
@keyframes slideDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}



/* service booking form*/

textarea{
    height:250px!important;
    
}

#step3 input[type=date], input[type=time], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
   
  width: 100%;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 30px 20px;
  font-size: 50px; /* scalable */
  margin-top: 25px;
  margin-bottom: 25px;
  background: none;
}

.step_2_3 input[type=date], input[type=time], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
   
  width: 100%;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 30px 20px;
  font-size: 50px; /* scalable */
  margin-top: 25px;
  margin-bottom: 25px;
  background: none;
}

input[type=submit]{
    width:100%;
}

#step2 select,#step3 select,.step_2_3 select {
   
  width: 100%;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 30px 20px;
  font-size: 50px; /* scalable */
  margin-top: 25px;
  margin-bottom: 25px;
  background: none;
}




  #step1{
      min-height:65vh!important;
     
      background: none!important;
      
  }
  
   #step2{
      min-height:65vh!important;
     
      background: none!important;
      
  }
   #step3{
      min-height:65vh!important;
      max-height:65vh!important;
      background: none!important;
      
  }
  
   .step_2_3{
      min-height:115vh!important;
      max-height:115vh!important;
      background: none!important;
      
  }
  

/* Service Booking CSS*/

/*.sb-step { display:none; }*/  /* Original: hide all steps */
.sb-step.active { display:block; } /* Active step visible */
.hidden{display:none} /* Utility hidden class */

.sb-step h2{
  font-size:60px; /* Step heading size */
   
   margin-top: 0;
   margin-bottom: 5px;
}


.sb-step h3{
    font-size:50px; /* Step subheading size */
}

.sb-row{display:flex;gap:30px;flex-wrap:wrap} /* Row container */
.sb-col{flex:1} /* Column inside row */





.left-grid{display:flex;gap:20px;flex-wrap:wrap} /* Step-2 layout */
.left-grid > div{flex:1} /* Equal width columns */

.nav-buttons{margin-top:60px;display:flex;gap:10px} /* Navigation buttons wrapper */
#step3 .nav-buttons{margin-top:0px;display:flex;gap:10px} /* Navigation buttons wrapper */

.step_2_3 .nav-buttons{margin-top:0px;display:flex;gap:10px} /* Navigation buttons wrapper */

.nav-buttons button{
  width:100%;
  padding: 40px 5px;
  font-size:60px;
  background: #fb8e27; /* Button background */
  color:#FFF;
  border:none;
  border-radius:10px;
  transition: all 0.3s ease-in-out;
}

.nav-buttons button:hover{
   color:#fb8e27;
  background: #FFF;
  border:1px solid #fb8e27;
}

.nav-buttons-step-1 button{
  width:200px;
  padding: 10px 20px;
  font-size:1.5rem;
  background: #fb8e27;
  color:#FFF;
  border:none;
  border-radius:10px;
}

.nav-buttons-step-1 {
  display: flex;
  justify-content: center;   /* centers the button */
  position: relative;
}

.nav-buttons-step-1 button:hover{
  color:#fb8e27;
  background: #FFF;
  border:1px solid #fb8e27;
}

/*Contact Page contact form button*/

button,
.btn,
.btn-outline {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.2px;
 /* width:140px;*/
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background: linear-gradient(135deg,#005bb5,#004a94);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  color:#FFF;
}



/* ================= STEP CONTAINER ================= */
.form-wrapper {
  position: relative; /* Wrapper for all steps */
}

/* ================= STEPS ================= */
.sb-step {
/*  min-height: 100%;*/
  width: 100%;
  display: none; /* Hide inactive steps */
}

/* active step */
.sb-step.active {
  display: block;
}

/* ================= EQUAL HEIGHT FIX ================= */
.service-booking-form {
 /* min-height: 750px; /* adjust once based on Step-2 */
  background: #FFF; /* Form background */
/*  box-shadow: 0 4px 20px rgba(0,0,0,.08);*/
 
  border-radius:10px;
  font-size: 20px;
  /*color:#FFF;*/
}

/* ================= RADIO & CHECKBOX SIZE ================= */
/* front page service booking form */
input[type="radio"] {
  width: 40px;
  height: 40px;
  accent-color: #1e63ff;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 40px;
  height: 40px;
  accent-color: #1e63ff;
  cursor: pointer;
}

/* Increase tap area */
input[type="radio"] + label,
input[type="checkbox"] + label {
  cursor: pointer;
  padding-left: 6px;
}

.terms-line{
    font-size:50px; /* Terms line font size */
    
    
}




/* ================= COLUMN HEIGHT SYNC ================= */
.sb-row {
  display: flex;
  align-items: stretch; /* Make columns same height */
}

.sb-col {
  display: flex;
  flex-direction: column; /* Stack inside column */
}

/* testimonial */

/* ===============================
   TESTIMONIAL RESPONSIVE FIX
================================ */




/* Reduce gap between testimonial name and location */
.testimonial-card h3 {
  margin-bottom: 0px;   /* default is ~1em, this reduces it */
  color: #0b3c5d;
  font-size:40px;
}

.testimonial-card span {
  display: block;       /* ensures clean line break */
  margin-top: 0;        /* remove extra gap */
  font-size: 37px;
  opacity: 1;
  color:#6b7c93;
}

/*service step 1*/

.service-wrapper {
  display: flex;
  display: block;        /* 🔑 */
  width: 100%;

  width: 100%;
   min-height: 290px;         /* adjust as needed */
  
}

.service-row {
  display: flex !important;        /* FORCE single row */
  flex-direction: row !important;  /* NO stacking */
  align-items: center;             /* vertical center */
  justify-content: center;         /* horizontal center */
  gap: 10px;
  padding: 25px 20px;
  border: 1px solid #34549d;
  border-radius: 10px;
  background: #FFF; /*e8f1f6*/
  cursor: pointer;
  min-height: 290px;
  width: 100%;           /* ✔ correct */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}


/*
.service-row img {
  width: 160px;
  height: auto;
  display: block;
}

*/

/* ✅ IMAGE — FIXED SIZE ALWAYS */
.service-row img {
  width: 160px;
  height: 160px;               /* 🔥 FORCE HEIGHT */
  aspect-ratio: 1 / 1;         /* 🔥 LOCK SHAPE */
  object-fit: contain;
  flex-shrink: 0;              /* 🔥 PREVENT FLEX RESIZE */
  display: block;
}


.service-text {
  display: flex;
  align-items: center;
  font-size: 50px;
  font-weight: 500;
   line-height: 1.2;  /* prevent radio vertical distortion */
   flex: 1;                     /* text takes remaining space */
}

.service-row input[type="radio"] {
  margin: 0;
  align-self: center; /* ensures vertical center */
  
   transform: scale(1.2);   /* SAME SIZE ALWAYS */
  flex-shrink: 0;
  
  
}



.service-row:hover {
  background:#34549d;
  color:#FFF; 
}

/* ================= STEP 2 SEPARATOR ================= */
.left-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  position: relative;
}

/* Vertical divider */
.left-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #ddd,
    transparent
  );
}

/* Section headings spacing */
.left-grid h4 {
  margin-bottom: 10px;
  font-weight: 600;
}



  
/* ================= PROBLEM & TYPE GRID ================= */

/* Wrapper for checkbox & radio groups */

/* Single checkbox / radio line — NO INTERNAL LINE BREAK */
.problem-list label,
.type-list label {
  display: inline-flex;          /* inline item that can wrap as a unit */
  align-items: center;           /* vertical center */
  gap: 10px;
  cursor: pointer;
  font-size: 50px;               /* Desktop font size */
  font-weight: 400;
  white-space: nowrap;           /* 🔑 PREVENT text wrapping */
  margin-bottom:20px;
}

/* Checkbox & radio */
.problem-list input[type="checkbox"],
.type-list input[type="radio"] {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  accent-color: #1e88e5;
}

/* ================= FORCE "OTHER" ON NEW LINE ================= */
.problem-list .other-problem {
  grid-column: 1 / -1;        /* full width */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Other input box (responsive, capped width) */
.other_problem_text {
  width: 100%;
  
}



/**********mobile normal*************/

/* Step 1 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;    /* 🔑 prevents row stretching */
}

/* ===============================
   MOBILE DESKTOP
=============================== */



/* ===============================
  STEP 3
=============================== */

/* Hide all steps by default */
.sb-step {
  display: none; /* This removes them from view entirely */
  flex-direction: column;
  min-height: 550px;
  height: 100%;
}

/* Only the active step gets 'display: flex' */
.sb-step.active {
  display: flex; /* This makes it visible and applies the layout */
}

/* Push navigation buttons to the bottom */
.nav-buttons {
  margin-top: auto; 
  padding-top: 20px;
}

/* Ensure content areas grow to fill space */
.service-grid, 
.form-content,
.meta-grid {
  flex-grow: 1;
}

.cke_notification,
.cke_notification_warning,
.cke_notification_message {
    display: none !important;
}

.term-pad{
    margin-top:100px;
    margin-bottom:100px;
    
}


/* ================= GOOGLE MAP FIX ================= */

.google-map-wrapper {
    width: 100%;
    height: 600px;          /* CONTROL HEIGHT HERE */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.google-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ======================================
   TEXT SELECTION & INSPECT FIX (GLOBAL)
====================================== */

/* Allow selection everywhere */
html, body {
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* Disable mouse blocking overlays */
.hero .overlay,
.fixed-bg::before {
  pointer-events: none !important;
}

/* Ensure content stays above */

/* creating problem for modal, modal hidden by header
.section .container,
.hero .container {
  position: relative;
  z-index: 5;
}
*/
/**************/
/* page specific section, Contact Us page → Section 3 only */



.page-home .section-6 > .container{
 background-color:none;
 padding-top:0!important;
 padding-bottom:0!important;
}

.page-contact-us .section-3 {
  background-color:none;
 padding:0!important;
}

/* Page specific section container*/
.page-contact-us .section-3 > .container{
    padding:0;
}

/* Contact Us page → Section 3 title */
.page-contact-us .section-3 h2{
  color:#0d47a1;
}

/* Contact Us page → Section 3 form */
.page-contact-us .section-3 form{
  max-width:700px;
}

/******************************** footer ******************/

/* FOOTER BASE */
.site-footer{
  background: linear-gradient(180deg,#0b2c5d,#0a2342);
  color:#fff;
  font-size:14px;
}

/* ===== FOOTER 5 ICON HARD FIX ===== */

/* Escape container width completely */
.footer-features .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}




/* FEATURE ROW */
.footer-features{
  border-bottom:1px solid rgba(255,255,255,.15);
  padding:30px 0;
}

.footer-features {
  font-size: 14px !important;   /* 🔥 isolate from body 40px */
}

.footer-features * {
  box-sizing: border-box;
}



/* 🔥 FORCE 5 COLUMNS ALWAYS */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  width: 100%;
  gap: 0;
}

.feature {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0 !important;
}

.feature span {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 28px !important;
  line-height: 40px;
  text-align: center;
  color: #fff;
}


.feature p {
  font-size: 14px !important;
  line-height: 1.2;
  margin-top: 6px;
  white-space: normal;
}






/* MAIN GRID */

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:0px 0;
}

.footer-grid h4{
  margin-bottom:15px;
  font-weight:600;
}
.footer-grid ul{
  list-style:none;
  padding:0;
}
.footer-grid li{
  margin-bottom:0px;
}
.footer-grid a{
  color:#ddd;
  text-decoration:none;
}
.footer-grid a:hover{
  color:#fff;
}


/* ===== FOOTER 3 COLUMN LAYOUT ===== */

/* Top footer: 3 columns */
.footer-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Contact row */
.footer-contact-grid{
/*  margin-top:40px;
  padding-top:30px;*/
  border-top:1px solid rgba(255,255,255,.15);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px; /* 30px */
}

.footer-contact-grid p{
  margin:6px 0;
  line-height:1.6;
}

/* Our Offices Title */
.office-section{
  padding: 1px 0;
}

/* Divider inside row */
.office-divider{
  position: relative;
  text-align: center;
 /* margin-bottom: 30px;*/
}

.office-divider::before{
  content:"";
  position:absolute;
  top:50%; /* 50% */
  left:0;
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.35);
}

.office-divider span{
  position:relative;
  background: linear-gradient(180deg,#06234a,#041a33);
  padding: 0 18px;
  color:#fff;
  font-size:40px;
  font-weight:600;
  letter-spacing:1px;
}

/* Office grid */
/*
.office-row{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:40px;
}

*/

.office-row {
  display: flex;
  flex-direction: column;   /* STACK VERTICALLY */
 /* gap: 10px;                /* space between rows */
}

.office-col {
  width: 100%;
/*  padding: 15px 0;*/
/*  border-bottom: 1px solid rgba(255,255,255,0.15);*/
  margin:0;
}

.office-col:last-child {
  border-bottom: none;
}


.office-col h4{
  color:#ffd400;
  margin-bottom:12px;
  font-size: 40px; /* Footer Address Title Font Size */
}

.office-col p{
  color:#fff;
 /* margin:5px 0;*/
 margin-bottom:5px;
  line-height:1.6;
}



/** end of footer  **/

/* SOCIAL */
.social a{
  display:inline-flex;
  width:70px;
  height:70px;
  align-items:center;
  justify-content:center;
  background:#1c3f7a;
  margin-right:30px;
  margin-top:20px;
  border-radius:6px;
  color:#fff;
  text-decoration:none;
  font-size:40px;
}

/* NEWSLETTER */
.footer-newsletter{
  margin-top: 25px;
/*  border-top:1px solid rgba(255,255,255,.15);
  padding:30px 0;*/
}

.footer-newsletter h3{
  color:#fff;
  margin-bottom:10px;
  font-size:40px;
  font-weight:600;
}

.newsletter-box{
  display:flex;
  max-width:80%;
  margin:auto;
  gap: 12px;          /* 🔥 controls space between input & button */
}

/* Newsletter container */
.newsletter-box{
  display:flex;
  align-items:center;
  gap:14px;                 /* 🔥 gap between input & button */
}

.newsletter-box input{
  flex:1;
  padding:10px;
  border:none;
  background: #FFF;
  width:100%;
  font-size: 45px;
}
.newsletter-box button{
  background:#e63946;
  border:none;
  color:#fff;
  padding:10px 20px;
  cursor:pointer;
  border-radius: 10px;
}

/* BOTTOM BAR */
.footer-bottom{
  text-align:center;
 /* padding:20px 10px;*/
/*  border-top:1px solid rgba(255,255,255,.15); */
  font-size:20px;
}
.footer-bottom a,small{
  color:#ddd;
  margin:0 5px;
  font-size:35px;
}


/******************/
.footer-address p{
  margin:0 0 10px;
  line-height:1.6;
}

.footer-address br{
  display:block;
}

.footer-contact p{
  margin:4px 0;
}


/******** faq ********/
.faq-box{
  background:#f4f6f8;
  border-radius:6px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
 
}

.faq-body{
     padding:30px;
}

.faq-header{
  display:flex;
  align-items:center;
  gap:14px;
 justify-content:center;   /* ✅ CENTER WHOLE HEADER */
  background:#1e73be;
  color:#fff;
  padding:16px 20px;
  border-radius:6px 6px 0 0;
}

/* ICON LEFT */
.faq-icon{
  width:90px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:60px;
  background:#fff;
  color:#1e73be;
  border-radius:6px;
  flex-shrink:0;
}

/* TEXT */
.faq-text h2{
  margin:0;
  font-size:47px!important;
  font-weight:600;
}

.faq-text p{
  margin:2px 0 0;
  font-size:27px;
  opacity:.9;
}


.faq-header span{
  font-size:30px;
  line-height:1;
}



.faq-item{
  border-bottom:1px solid #ddd;
   margin-bottom:35px;   /* ✅ GAP BETWEEN ITEMS */
}

.faq-question{
  width:100%;
  background:#fff;
  border:none;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:40px;
  font-weight:600;
  cursor:pointer;
}

.faq-question i{
  background:#1e73be;
  color:#fff;
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.faq-answer{
  display:none;
  padding:14px 16px;
  background:#FFF;
  font-size:40px;
  font-weight: 400;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

/***************** sub menu ***********/

/* ===== DESKTOP MENU ===== */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-menu > li {
  position: relative;
}
/* header file contains
.main-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  text-decoration: none;
  color: #222;
}
*/
/* ===== SUB MENU ===== */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
 /* min-width: 220px;*/
  background: #fff;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  display: none;
  z-index: 9999;
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.submenu li a:hover {
  background: #f5f5f5;
}

/* 🔥 SHOW SUBMENU ON HOVER */
.main-menu > li:hover > .submenu {
  display: block;
}

/*********  Call Now Button ***********/
/* ===== CALL NOW BUTTON ===== */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  background: #1e73be;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  /*font-size: 28px;*/
}

/* Phone icon container */
.call-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #1e73be;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-pulse 1.4s infinite;
}

/* Icon itself */
.call-icon i {
  font-size: 14px;
}

/* Text */
.call-text {
  white-space: nowrap;
}

/* ===== PHONE ANIMATION ===== */
@keyframes phone-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* ===== CHAT NOW BUTTON ===== */
.chat-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #28a745;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  font-size: 28px;
}

/* Icon circle */
.chat-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chat-pulse 1.5s infinite;
}

.chat-icon i {
  font-size: 18px;
}

/* Animation */
@keyframes chat-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/***** service page *********/

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-our-services .service-card {
  display: flex; /*creating problem for service booking step 1*/
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-img {
  width: 30%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  width: 70%;
  padding: 20px;
}

.service-content h3 {
  margin: 0;
  font-size: 50px;
  color: #1e73be;
  white-space: normal;        /* ✅ allow multi-line */
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
}

.service-content p {
  margin: 10px 0 20px;
  color: #555;
}

.service-desc {
  white-space: normal;
  line-height: 1.7;
}


.btn-service {
  display: inline-block;
  background: #1e73be;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-service:hover{
    background: #FFF;
    border:1px solid #1e73be;
    color:#1e73be;
    font-weight: bold;
}



/* ===== SERVICE SLIDER ===== */
/* ===============================
   SERVICE SLIDER (FIXED)
=============================== */

/* SERVICE SLIDER HARD FIX */
.service-slider-section{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

.service-slider-wrapper{
  width:100%;
  overflow:hidden;
}

.service-slider-track{
  display:flex;
  flex-wrap:nowrap;
}

.service-slide{
  min-width:100%;
  height:420px;
  flex-shrink:0;
  background-size:cover;
  background-position:center;
}

/******** WhatsApp ***********/

.whatsapp-footer-card {
    background: linear-gradient(135deg, #0abf53, #048f3d);
    border-radius: 14px;
    padding: 12px 50px;
    color: #fff;
    max-width: 95%;
    margin: auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
   
}

.whatsapp-footer-card h3 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
}

.whatsapp-footer-card p {
    font-size: 36px;
    margin-bottom: 18px;
   /* opacity: 1;*/
    font-weight: 400;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #0abf53;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 33px;
     font-weight: 700;
}

.whatsapp-btn img {
    width: 50px;
    height: 50px;
}

.whatsapp-btn:hover {
    background: #eafff2;
    transform: scale(1.05);
}

.whatsapp-features {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    font-size: 32px;
    opacity: 0.9;
}


/* ===============================
   REAL DESKTOP
=============================== */

@media (min-width:1201px) {
    
    body {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 16px!important; /* Standard desktop size (40px was likely a mobile compensation) */
  font-weight: 300!important;
  line-height: 1.6;
  color: #000;
}
    
    /* ---------------- TOPBAR ---------------- */
.topbar-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 21px;
  padding: 4px 4px;
  width: 100%;
}
    .hero h1.title{
  font-size:55px;
  line-height:1.1;
  margin:0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
  stroke-width: 1px; 
  stroke: #000;
}
    
    /* ---------------- LOGO ---------------- */
/*contines in header
.header-left .logo img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom:38%;
}
 */   
    
    
    
    /* Push navigation buttons to the bottom */
.nav-buttons {
  margin-top: auto; 
  padding-top: 20px;
}

/* Ensure content areas grow to fill space */
.service-grid, 
.form-content,
.meta-grid {
  flex-grow: 1;
}

    
    /* Section heading our services, customer reviews  */
    
    /*  section paragraph heading   */
    
    .grid h2{
    font-size:30px;
    font-weight:600;
    line-height:42px;
}

/**** section body text p*****/

.grid p,.grid.cols-2 p{
    font-size: 16px!important; /* Standard desktop size (40px was likely a mobile compensation) */
    font-weight:300;
    color:#000;
}

.grid.cols-2 h2{
    font-size:30px;
    font-weight:500;
    line-height:42px;
}

 /title inside section**/
.section .container h1.title{
    font-size: 200px;
    font-weight: 600;
    line-height: 42px;
}

.sb-step h3{
    font-size:20px; /* Step subheading size */
    line-height: 20px;
    margin-top:5px;
    margin-bottom:5px;
}

.terms-line{
    font-size:22px; /* Terms line font size */
    
}

/* our services heading of each service like AC repair, AC Installation*/

.section .card h2 {
    font-size:30px;
    font-weight: 500;
    line-height: 32px;
    
}

.section .card:hover {
  background: #FFF;
  color: #292929;
  border:1px solid #292929;
}

.service-card .icon{
  font-size:28px;
  margin-bottom:10px;
}

.service-card .title{
  font-weight:700;
}

/* Desktop canvas */
.service-booking-form {
 /* width: 1200px;*/
  margin: 0 auto;
}


/* Step 1 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Step 2 */
.left-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Single checkbox / radio line — NO INTERNAL LINE BREAK */
.problem-list label,
.type-list label {
  display: inline-flex;          /* inline item that can wrap as a unit */
  align-items: center;           /* vertical center */
  gap: 10px;
  cursor: pointer;
  font-size: 20px;               /* Desktop font size */
  font-weight: 400;
  white-space: nowrap;           /* 🔑 PREVENT text wrapping */
  margin-bottom:5px;
}

.sb-step h2{
    font-size:30px; /* Step heading size */
   line-height: 30px;
}

#step2 h2,#step3 h2{
    font-size:20px; /* Step heading size */
   line-height: 20px;
}

.step_2_3 h2{
   font-size:20px; /* Step heading size */
   line-height: 20px;
}

/** -----------------------------------
MODAL WINDOW
-----------------------------**/

/* Modal Overlay */
.terms-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* On top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Enable scrolling on small screens */
  background-color: rgba(0,0,0,0.6); /* Black overlay */
  padding: 20px;
  box-sizing: border-box;
}

/* Modal Content */
.terms-content {
  background-color: #fff;
  margin: 40px auto;
  padding: 25px 25px;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: slideDown 0.3s ease;
  
}

/* Close Button */
.terms-content .close {
  position: absolute;
  top: 5px;
  right: 30px;
  font-size:70px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.terms-content .close:hover {
  color: #1e63ff;
}

.terms-content h3 {
  margin-top: 0;
  color: #1e63ff;
  text-align: center;
  margin-bottom: 20px;
  font-size:35px;
}

.terms-content ul {
  padding-left: 25px;
  color: #555;
   font-size:25px;
}

.terms-content button {
  display: block;
  margin: 20px auto 0 auto;
  background: linear-gradient(135deg,#0073e6,#005bb5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 30px;
}

.terms-content button:hover {
  background: linear-gradient(135deg,#005bb5,#004a94);
  transform: translateY(-2px);
}


#step3 input[type=date], input[type=time], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
   
  width: 100%;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 20px; /* scalable */
  margin-top: 5px;
  margin-bottom: 5px;
  background: none;
}

.step_2_3 input[type=date], input[type=time], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
   
  width: 100%;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 20px; /* scalable */
  margin-top: 5px;
  margin-bottom: 5px;
  background: none;
}

input[type=submit]{
    width:100%;
}

#step2 select,#step3 select {
   
  width: 100%;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 20px; /* scalable */
  margin-top: 5px;
  margin-bottom: 5px;
  background: none;
}

.step_2_3 select {
   
  width: 100%;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 20px; /* scalable */
  margin-top: 5px;
  margin-bottom: 5px;
  background: none;
}

/* Checkbox & radio */
.problem-list input[type="checkbox"],
.type-list input[type="radio"] {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  accent-color: #1e88e5;
}

.nav-buttons button{
  width:100%;
  padding: 10px 5px;
  font-size:25px;
  background: #fb8e27; /* Button background */
  color:#FFF;
  border:none;
  border-radius:10px;
  transition: all 0.3s ease-in-out;
}

.service-text {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
}

.service-wrapper {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  width: 100%;
   min-height: 100px;         /* adjust as needed */
  
}

.service-row {
  display: flex !important;        /* FORCE single row */
  flex-direction: row !important;  /* NO stacking */
  align-items: center;             /* vertical center */
  justify-content: center;         /* horizontal center */
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid #34549d;
  border-radius: 10px;
  background: #FFF; /* e8f1f6 */
  cursor: pointer;
  min-height: 100px;
  min-width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.service-row img {
  width: 80px;
  height: auto;
  display: block;
}

.term-pad{
    margin-top:10px;
    margin-bottom:5px;
    
}


/* front page service booking form */
input[type="radio"] {
  width: 25px;
  height: 25px;
  accent-color: #1e63ff;
  cursor: pointer;
}

/* terms-line*/

input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #1e63ff;
  cursor: pointer;
}

#step2 input[type=text], select, textarea {
   
  width: 100%;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 7px 7px;
  font-size: 20px; /* scalable */
  margin-bottom: 3px;
}

textarea{
    height:100px!important;
    
}

  #step1{
      min-height:45vh!important;
      max-height:45vh!important;
   /*   max-height:670px!important;*/
   /*   background: none!important;*/
      padding:5px;
      
  }
  
   #step2{
      min-height:45vh!important;
      max-height:45vh!important;
    /*  max-height:670px!important;*/
   /*   background: red!important;*/
      padding-top:5px;
      padding-bottom:5px;
  }
   #step3{
      min-height:45vh!important;
      max-height:45vh!important;
     /* background: green!important;*/
      padding:5px;
  }


.step_2_3 {
      min-height:45vh!important;
      max-height:45vh!important;
     /* background: green!important;*/
      padding:5px;
  }

/***** faq *********/

.faq-icon{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  background:#fff;
  color:#1e73be;
  border-radius:6px;
  flex-shrink:0;
}

.faq-item{
  border-bottom:1px solid #ddd;
   margin-bottom:35px;   /* ✅ GAP BETWEEN ITEMS */
}

.faq-question{
  width:100%;
  background:#fff;
  border:none;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:25px!important;
  font-weight:600;
  cursor:pointer;
}

.faq-question i{
  background:#1e73be;
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.faq-answer{
  display:none;
  padding:14px 16px;
  background:#FFF;
  font-size:25px!important;
  font-weight: 400;
  line-height:1.6;
}


/* call now button*/
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  background: #1e73be;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  font-size: 20px!important;
}

.chat-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #28a745;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  font-size: 20px!important;
}

.site-header .container {
  height: 120px;
  padding: 4% 5%!important; /* Good for desktop */
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/******** service page image for desktop ************/
.service-img img {
 /* width: 230px!important;*/
/*  height: 250px!important;*/
  object-fit: cover;
}

/********* newsletter subscribe ********/

.newsletter-box input{
    font-size:20px!important;
}

.footer-bottom a,small{
 
  font-size:25px!important;
}

.btn-service {
  display: inline-block;
  background: #1e73be;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size:27px;
}

/* SOCIAL */
.social a{
  width:55px!important;
  height:55px!important;
 
  font-size: 30px!important;
}


.page-ac-install .section-3, .page-ac-repair .section-3, .page-washing-machine-repair .section-3, .page-refrigerator-repair .section-3, .page-microwave-oven-repair .section-3, .page-tv-repair .section-3{
 background-color:none;
 padding-top:0!important;
 padding-bottom:0!important;

 min-height: 780px!important;
 max-height: 970px!important;
}


/*** Footer CSS ***/

.office-col h4{
  color:#ffd400;
  margin-bottom:12px;
  font-size: 20px!important; /* Footer Address Title Font Size */
}



}

/*********** end of real****************/

.page-home .section-6{
 background-color:none;
 padding-top:0!important;
 padding-bottom:0!important;

 min-height: 350px!important;
}

/* ================= FOOTER HARD ISOLATION ================= */

