/* style.css - Common for home-service.in */
:root { 
    --primary: #004aad; 
    --sec: #009688; 
    --wa: #25d366; 
    --dark: #121212; 
    --err: #d32f2f; 
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; margin: 0; padding: 0; color: #333; background: #fff; line-height: 1.6; }



/* Form Styling */
label { font-weight: 700; font-size: 14px; color: #444; display: block; margin-bottom: 5px; }
select, input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 10px; font-size: 15px; outline: none; background: #fff; }
.error-border { border-color: var(--err) !important; background-color: #fff8f8 !important; }
.error-msg { color: var(--err); font-size: 11px; font-weight: 600; display: none; margin-bottom: 5px; }

/* Footer & Action Buttons */
footer { background: black; color: white; padding: 40px 20px 100px; text-align: center; font-size: 12px; margin-top: 50px; }
.footer-act { position: fixed; bottom: 0; width: 100%; display: flex; height: 60px; z-index: 2000; }
.btn-call { flex: 1; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; border-top-left-radius: 15px; }
.btn-wa { flex: 1; background: #0f6630; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-weight: bold; border-top-right-radius: 15px; }
.faq-box { background: #f9f9f9; padding: 15px; margin-bottom: 10px; border-radius: 8px; border-left: 4px solid var(--primary); }
.faq-question { font-weight: bold; color: #333; margin-bottom: 5px; }
.faq-answer { color: #666; font-size: 0.95rem; }
 .why-choose { padding: 20px 20px; background: #f9f9f9; }
        .why-container { max-width: 651px; margin: auto; }
        .why-item { display: flex; align-items: flex-start; background: #fff; padding: 15px; margin-bottom: 12px; border-radius: 10px; border-left: 5px solid var(--sec); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        .why-icon { font-size: 18px; margin-right: 12px; }
        .why-text h4 { margin: 0; font-size: 15px; font-weight: 700; }
        .why-text p { margin: 5px 0 0; font-size: 13px; color: #666; }
        .h2-text {
    text-align: center;
    color: #333;
}

.m-btn { 
    display: none; 
    font-size: 28px; 
    cursor: pointer; 
    color: var(--primary); 
}

@media (max-width: 768px) {
    .m-btn { display: block; } 
    
    nav { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 70px; 
        left: 0; 
        width: 100%; 
        background: #fff; 
        padding: 20px; 
        border-bottom: 3px solid var(--primary); 
        z-index: 3000; 
    }
    
    nav.active { 
        display: flex !important; /* JavaScript ద్వారా ఇది యాడ్ అవుతుంది */
    }
}
/* Header & Logo Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    box-sizing: border-box;
}

header .logo-box img {
    height: 44px; /* Logo Height */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop Menu Styles */
nav { display: flex; gap: 20px; align-items: center; }
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}
nav a:hover, nav a.active { color: var(--primary); }

/* Mobile Menu Fix */
@media (max-width: 768px) {
    nav {
        display: none; /* క్లిక్ చేసినప్పుడే ఓపెన్ అవుతుంది */
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }
    nav.active { display: flex; }
    .m-btn { display: block; color: var(--primary); font-size: 28px; }
}
/* --- Modern Contact Us Page Styles --- */
.contact-hero { 
    margin-top: 10px; padding: 80px 20px; text-align: center; 
    background: linear-gradient(135deg, var(--primary), var(--sec)); color: #fff; 
}
.contact-hero h1 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 800; }

.contact-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; max-width: 1000px; margin: -50px auto 60px; padding: 0 20px;
}
.contact-card { 
    background: #fff; padding: 35px; border-radius: 20px; text-align: center; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-top: 5px solid var(--primary);
}
.contact-card.wa-card { border-top-color: var(--wa); }
.contact-card i { font-size: 40px; margin-bottom: 15px; display: block; }
.contact-card h3 { color: #1e293b; margin-bottom: 10px; }
.contact-card p { color: #64748b; font-size: 15px; margin-bottom: 20px; }

.contact-btn { 
    display: inline-block; padding: 12px 25px; border-radius: 10px; 
    text-decoration: none; font-weight: 700; transition: 0.3s; 
}
.btn-call-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-call-outline:hover { background: var(--primary); color: #fff; }
.btn-wa-outline { border: 2px solid var(--wa); color: var(--wa); }
.btn-wa-outline:hover { background: var(--wa); color: #fff; }

.map-section { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.map-box { 
    width: 100%; height: 400px; border-radius: 20px; overflow: hidden; 
    border: 1px solid #e2e8f0; box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
}
/* Centered Heading Style */
.main-title-container {
    text-align: center; /* కంటెంట్ మొత్తాన్ని సెంటర్ చేస్తుంది */
    margin: 50px 0 30px;
    padding: 0 20px;
}

.center-heading {
    color: var(--primary);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block; /* అండర్ లైన్ హెడ్డింగ్ వెడల్పు వరకే ఉండటానికి */
    position: relative;
}

/* హెడ్డింగ్ కింద ఒక చిన్న డిజైన్ లైన్ */
.center-heading::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--sec); /* మీ గ్రీన్/టీల్ కలర్ */
    margin: 10px auto 0;
    border-radius: 5px;
}

.sub-text-center {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto; /* పేరాగ్రాఫ్ మధ్యలో ఉండటానికి */
    line-height: 1.8;
}
/* Normal List Styling */
.clean-list {
    list-style-type: disc; /* సాధారణ నల్లటి చుక్కలు వస్తాయి */
    padding-left: 25px;    /* చుక్కలకి, అంచుకి మధ్య గ్యాప్ */
    margin: 20px 0;
    text-align: left;      /* కంటెంట్ అంతా ఎడమ వైపున ఉంటుంది */
}

.clean-list li {
    margin-bottom: 12px;   /* ప్రతి పాయింట్ కింద కొంచెం ఖాళీ */
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.clean-list li b {
    color: var(--primary); /* ముఖ్యాంశాలు బ్లూ కలర్ లో ఉంటాయి */
}
.h2-style {
    color: var(--primary);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center; /* ఇక్కడ మార్పు జరిగింది - దీనివల్ల హెడ్డింగ్ సెంటర్ అవుతుంది */
    display: block;     /* హెడ్డింగ్ కి మొత్తం విడ్త్ ఇస్తుంది */
    width: 100%;
}
/* Container styling */
.service-area-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    max-width: 600px; /* Adjust based on your sidebar/content width */
    margin: 20px 0;
}

/* Heading styling */
.area-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    font-weight: bold;
}

/* 2-Column Grid Logic */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* This creates exactly 2 equal rows/columns */
    gap: 12px;
}

/* Individual Area Item */
.area-name {
    background: #f1f5f9;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    color: #444;
    border-left: 4px solid #004aad; /* Adds a nice professional touch */
}

.area-name span {
    margin-right: 5px;
}

/* Sub-text */
.service-note {
    margin-top: 15px;
    font-size: 13px;
    color: black;
    font-style: italic;
}
/* Container styling */
.footer-social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

/* Icon base styling */
.s-link {
  width: 30px;
  height: 30px;
  display: inline-block;
  color: #333; /* Default blackish color */
  transition: all 0.3s ease;
}

/* Hover effects */
.s-link:hover {
  transform: translateY(-3px);
}

/* Facebook blue on hover */
.fb:hover {
  color: #1877F2;
}

/* Instagram gradient/pink on hover */
.ig:hover {
  color: #E4405F;
}

/* SVG fills current color */
.s-link svg {
  fill: rgb(227 118 45);
  width: 100%;
  height: 100%;
}