/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      --primary: #002e5b;
    --solar: #f39c12;
    --glass: rgba(255, 255, 255, 0.1);
}

:root {
    --primary-color: #002e5b; /* Dark Blue */
    --secondary-color: #f39c12; /* Solar Orange/Yellow */
    --white: #ffffff;
    --text-color: #333;
}

body {
    background-color: #f4f4f4;
}

/* Header Styling */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 70px;
     */
}
a{
    text-decoration: none;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 1%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap:1px;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.highlight {
    color: var(--secondary-color);
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    min-width: 180px;
    padding: 10px 0;
    border-top: 3px solid var(--secondary-color);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Button Style */
.nav-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-btn:hover {
    background-color: var(--primary-color);
}

/* Mobile View (320px to 768px) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    overflow: hidden;
    padding: 60px 5%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side Content */
.hero-content {
    flex: 1;
}

.hero-content h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,46,91,0.2);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-3px); background: var(--secondary-color); color: #fff; }
.btn-secondary:hover { background: var(--primary-color); color: #fff; }

/* Right Side Image */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    animation: floating 3s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge span { font-size: 2rem; font-weight: bold; display: block; }
.experience-badge p { font-size: 0.8rem; margin: 0; color: white; }

/* --- Animations --- */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}
/* About Section Styling */
.about-section {
    padding: 80px 5%;
    background-color: #fff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side */
.about-image {
    flex: 1;
    position: relative;
}

.img-wrapper {
    position: relative;
    padding: 10px;
}

.img-wrapper img {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-card h3 { font-size: 2rem; color: var(--secondary-color); }
.floating-card p { font-size: 0.9rem; margin: 0; }

/* Content Side */
.about-content {
    flex: 1.2;
}

.sub-title {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Expertise Grid as Links */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none; /* Link underline hatane ke liye */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Hover Effect: Card thoda upar uthega aur border color change hoga */
.exp-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border: 1px solid var(--secondary-color);
}

.exp-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: 0.3s;
}

.exp-item:hover i {
    transform: scale(1.2); /* Icon halka bada hoga hover par */
}

.exp-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}
animate-left { opacity: 0; transform: translateX(-50px); animation: fadeInSide 1s forwards; }
.animate-right { opacity: 0; transform: translateX(50px); animation: fadeInSide 1s forwards; }

@keyframes fadeInSide {
    to { opacity: 1; transform: translateX(0); }
}

/* Services Section Base */
.services-section {
    padding: 70px 5%;
    background-color: #f4f7fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .main-title {
    font-size: 2.5rem;
    color: #002e5b; /* Primary Blue */
    margin-top: 10px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 Cards in a row */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.service-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #f39c12; /* Solar Orange */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    color: #002e5b;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    color: #f39c12;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* Why Choose Us Section */
.why-choose-us {
    padding: 90px 5%;
    background-color: #ffffff;
    overflow: hidden;
}

.choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Image Side */
.choose-image {
    flex: 1;
    position: relative;
}

.image-inner {
    position: relative;
}

.image-inner img {
    width: 100%;
    border-radius: 30px 0 30px 0; /* Unique shape */
    box-shadow: 20px 20px 0px var(--secondary-color); /* Solar Orange shadow */
}

.stats-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Right Content Side */
.choose-content {
    flex: 1.2;
}

.choose-content .main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 10px 0 20px;
}

.choose-content .desc {
    color: #666;
    margin-bottom: 40px;
}

/* Feature Cards */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
}

.feature-card:hover {
    background: #fdf8f0;
    transform: translateX(10px);
}

.f-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.f-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.f-text p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Footer Styles */
.footer {
    background-color: #001d3d; /* Deep Navy Blue */
    color: #ffffff;
    padding: 70px 5% 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Column General Styling */
.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: #f39c12; /* Solar Orange */
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ffffff;
}

/* Logo & About */
.footer-logo {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #f39c12;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #f39c12;
    transform: translateY(-5px);
}

/* List Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #f39c12;
    padding-left: 8px;
}

/* Contact Info Items */
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: #f39c12;
    font-size: 1.1rem;
    margin-top: 4px;
}

.info-item p, .info-item a {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
}

.info-item a:hover {
    color: #f39c12;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.footer-bottom i {
    color: #e74c3c;
}
/* Consult Section Styling */
.consult-section {
    padding: 80px 5%;
    background-color: var(--primary-color); /* Deep Blue from Navbar */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.consult-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.consult-content .sub-title {
    color: var(--secondary-color); /* Solar Yellow/Orange */
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.consult-content .main-title {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consult-content .desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Buttons Styling */
.consult-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-call, .btn-whatsapp {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-call {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-call:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-whatsapp {
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

/* Background Shape for Decoration */
.bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: -1;
}
/* Main Section */
.unique-about-hero {
    height: 400px;
    width: 100%;
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Unique Background Pattern (Blueprints Feel) */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--glass) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Unique Title with Outline Effect */
.hero-title {
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-title .accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--solar); /* Outline text */
    display: inline-block;
}

/* Orange Underline with Glow */
.title-line {
    width: 80px;
    height: 4px;
    background: var(--solar);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--solar);
}

/* Breadcrumb Styling */
.unique-breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
}

.unique-breadcrumb a {
    color: var(--solar);
    text-decoration: none;
    font-weight: bold;
}

.unique-breadcrumb .sep { margin: 0 10px; }

.hero-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Bottom Unique Angle (Clip Path) */
.header-skew-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #f4f4f4; /* Match this to your next section color */
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Animation */
@keyframes zoomInHeader {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-zoom {
    animation: zoomInHeader 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Best Services in Bihar Styling --- */
.bihar-services {
    padding: 80px 5%;
    background-color: #f9fbff;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.top-tag {
    background: #e1edff;
    color: #002e5b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.main-title {
    font-size: 2.8rem;
    color: #002e5b;
    margin-top: 15px;
}

.main-title .highlight {
    color: #f39c12; /* Bihar highlight in Solar Orange */
}

/* Grid Layout */
.services-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card Box */
.service-box {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-box:hover {
    transform: translateY(-10px);
}

/* Image Background */
.service-img {
    width: 100%;
    height: 100%;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

/* Overlay Styling */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,46,91,0.2), rgba(0,46,91,0.9));
}

/* Content on Image */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    z-index: 2;
    color: #fff;
}

.service-content i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 15px;
    display: block;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.explore-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f39c12;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.service-box:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- Contact Header Unique CSS --- */
.contact-hero-section {
    height: 400px;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80'); /* Corporate/Tech Image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
    z-index: 1;
}

/* Dark Blue Gradient Overlay */
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 46, 91, 0.95) 0%, rgba(0, 46, 91, 0.4) 100%);
    z-index: -1;
}

.contact-hero-content {
    max-width: 600px;
    color: #ffffff;
    z-index: 2;
}

/* Breadcrumb Styling with Glow */
.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-breadcrumb a {
    color: #f39c12; /* Solar Orange */
    text-decoration: none;
    transition: 0.3s;
}

.contact-breadcrumb .divider {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

/* Title with Neon Glow Effect */
.contact-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.8), 0 0 20px rgba(243, 156, 18, 0.5);
    border-bottom: 5px solid #f39c12;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #d1d1d1;
    margin-bottom: 20px;
}

/* Decorative Line */
.contact-bottom-bar {
    width: 100px;
    height: 6px;
    background: #f39c12;
    border-radius: 3px;
}

/* Unique Floating Icons Animation */
.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 5rem;
    z-index: 0;
}

.icon-1 { top: 10%; right: 10%; animation: float 6s infinite ease-in-out; }
.icon-2 { bottom: 20%; right: 25%; animation: float 8s infinite ease-in-out; }
.icon-3 { top: 40%; right: 5%; animation: float 7s infinite ease-in-out; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Bottom Skew Effect */
.contact-skew-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Animation on Load */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}
/* --- Contact Page Section --- */
.contact-main {
    padding: 80px 5%;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
}

.contact-container-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info smaller, Form bigger */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* --- Left Info Box --- */
.contact-info-box {
    background-color: #002e5b; /* Theme Dark Blue */
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 2rem;
    color: #f39c12; /* Solar Orange */
    margin-bottom: 10px;
}

.info-desc {
    color: #bdc3c7;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item i {
    width: 45px;
    height: 45px;
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-socials {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.contact-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.contact-socials a:hover {
    color: #f39c12;
    transform: translateY(-5px);
}

/* --- Right Form Box --- */
.contact-form-box {
    padding: 50px;
    background-color: #fff;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-box input, 
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form-box input:focus, 
.contact-form-box textarea:focus {
    border-color: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.contact-form-box textarea {
    resize: none;
    margin-bottom: 25px;
}

.submit-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #002e5b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
   /* All CSS prefixed with solar-install- */
        .solar-install-hero-section {
            --si-primary: #002e5b;
            --si-secondary: #f39c12;
            --si-white: #ffffff;
            --si-text: #333;
            
          position: relative;
    width: 100%;
    min-height: 500px; /* Changed from fixed 400px to min-height */
    padding: 80px 0;   /* Added padding for breathing space */
    background-color: var(--si-primary);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
        }

        /* Unique Geometric Background Element */
        .solar-install-bg-shape {
            position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, transparent 70%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
        }

        /* Grid Pattern for Technical Feel */
        .solar-install-grid-pattern {
            position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
        }

        .solar-install-container {
            width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    padding: 0 25px;
    display: grid;
    /* grid-template-columns: 1.2fr 0.8fr; Restored for desktop */
    align-items: center;
    position: relative;
    z-index: 10;
        }

        .solar-install-content {
            color: var(--si-white);
        }

        .solar-install-badge {
           display: inline-flex;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--si-secondary);
    color: var(--si-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
        }

        .solar-install-title {
           font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
        }

        .solar-install-title span {
            color: var(--si-secondary);
            display: block;
        }

        .solar-install-description {
           font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 30px;
        }

        .solar-install-cta-group {
 display: flex;
    gap: 15px;
    flex-wrap: wrap;
        }

        .solar-install-btn-main {
           display: inline-block; /* Crucial fix for anchor tags */
    background-color: var(--si-secondary);
    color: var(--si-white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    border: none;
        }

        .solar-install-btn-main:hover {
           transform: translateY(-3px);
    background-color: #e67e22;
        }

        /* Floating Info Box (Right Side) */
        .solar-install-visual {
         display: flex;
    justify-content: flex-end;
        }

        .solar-install-card {
          background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    animation: solar-float 4s ease-in-out infinite;
        }

        @keyframes solar-float {
           0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
        }

        .solar-install-stat-number {
           display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--si-secondary);
        }

        .solar-install-stat-text {
            color: var(--si-white);
            font-size: 14px;
            font-weight: 500;
            opacity: 0.9;
        }
         .solar-install-process-section {
            --si-primary: #002e5b;
            --si-secondary: #f39c12;
            --si-white: #ffffff;
            --si-bg: #ffffff;
            --si-text: #333;
            --si-light-gray: #f4f7fa;
            
            padding: 80px 20px;
            background-color: var(--si-bg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow: hidden;
        }

        .solar-install-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .solar-install-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .solar-install-header h2 {
            color: var(--si-primary);
            font-size: clamp(1.8rem, 5vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 15px;
            text-transform: capitalize;
        }

        .solar-install-header p {
            color: #666;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Process Grid */
        .solar-install-process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
        }

        /* Connecting Line (Desktop) */
        .solar-install-process-grid::before {
            content: "";
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: #e1e8ef;
            z-index: 1;
        }

        .solar-install-process-item {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Icon Container */
        .solar-install-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--si-white);
            border: 4px solid var(--si-secondary);
            border-radius: 24px; /* Squircle shape */
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--si-primary);
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(0, 46, 91, 0.1);
        }

        .solar-install-process-item:hover .solar-install-icon-wrapper {
            background: var(--si-secondary);
            color: var(--si-white);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3);
        }

        .solar-install-step-count {
            position: absolute;
            top: -10px;
            right: 10%;
            background: var(--si-primary);
            color: var(--si-white);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--si-white);
        }

        .solar-install-process-item h3 {
            color: var(--si-primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .solar-install-process-item p {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
            padding: 0 10px;
        }

           .solar-install-benefits-section {
            --si-primary: #002e5b;
            --si-secondary: #f39c12;
            --si-white: #ffffff;
            --si-bg: #fdfdfd;
            --si-card-shadow: 0 15px 35px rgba(0, 46, 91, 0.08);
            
            padding: 80px 20px;
            background-color: var(--si-bg);
            font-family: 'Sora', sans-serif;
            position: relative;
        }

        .solar-install-benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Unique Section Header */
        .solar-install-benefits-header {
            text-align: left;
            margin-bottom: 50px;
            border-left: 5px solid var(--si-secondary);
            padding-left: 20px;
        }

        .solar-install-benefits-header h2 {
            color: var(--si-primary);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.2;
        }

        .solar-install-benefits-header h2 span {
            color: var(--si-secondary);
        }

        /* Benefits Grid */
        .solar-install-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        /* Unique Card Design */
        .solar-install-benefit-card {
            background: var(--si-white);
            padding: 40px 30px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: var(--si-card-shadow);
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* The Background Accent Decor */
        .solar-install-benefit-card::before {
            content: "";
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: rgba(243, 156, 18, 0.05);
            border-radius: 50%;
            transition: 0.4s;
        }

        .solar-install-benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--si-secondary);
        }

        .solar-install-benefit-card:hover::before {
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            border-radius: 0;
            background: var(--si-primary);
            z-index: 0;
        }

        /* Content Styling */
        .solar-install-benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--si-light-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--si-secondary);
            margin-bottom: 25px;
            transition: 0.4s;
            position: relative;
            z-index: 1;
        }

        .solar-install-benefit-card:hover .solar-install-benefit-icon {
            background: var(--si-secondary);
            color: var(--si-white);
        }

        .solar-install-benefit-card h3 {
            font-size: 20px;
            color: var(--si-primary);
            margin-bottom: 15px;
            font-weight: 700;
            transition: 0.4s;
            position: relative;
            z-index: 1;
        }

        .solar-install-benefit-card p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            transition: 0.4s;
            position: relative;
            z-index: 1;
        }

        /* Hover Text Color Change */
        .solar-install-benefit-card:hover h3, 
        .solar-install-benefit-card:hover p {
            color: var(--si-white);
        }
            .solar-install-support-section {
            --si-primary: #002e5b;
            --si-secondary: #f39c12;
            --si-white: #ffffff;
            --si-dark-bg: #001a35;
            --si-text: #333;
            
            padding: 80px 20px;
            background-color: var(--si-white);
            font-family: 'Lexend', sans-serif;
            overflow: hidden;
        }

        .solar-install-support-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        /* Content Area */
        .solar-install-support-content h2 {
            color: var(--si-primary);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .solar-install-support-content h2 span {
            color: var(--si-secondary);
        }

        .solar-install-support-content p {
            color: #555;
            font-size: 16px;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        /* Maintenance Features List */
        .solar-install-service-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .solar-install-service-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .solar-install-service-item i {
            color: var(--si-secondary);
            font-size: 18px;
            margin-top: 4px;
        }

        .solar-install-service-item span {
            font-weight: 600;
            color: var(--si-primary);
            font-size: 15px;
        }

        /* Highlight Support Card */
        .solar-install-support-card {
            background: var(--si-primary);
            padding: 40px;
            border-radius: 30px;
            color: var(--si-white);
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 46, 91, 0.2);
            text-align: center;
        }

        /* Decorative Pulse Circle */
        .solar-install-support-card::before {
            content: "";
            position: absolute;
            top: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: var(--si-secondary);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            animation: solar-pulse 2s infinite;
        }

        @keyframes solar-pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(2); opacity: 0; }
        }

        .solar-install-card-icon {
            font-size: 50px;
            color: var(--si-secondary);
            margin-bottom: 20px;
        }

        .solar-install-support-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .solar-install-support-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .solar-install-hotline-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--si-secondary);
            color: var(--si-white);
            padding: 15px 25px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: 0.3s;
        }

        .solar-install-hotline-btn:hover {
            background: var(--si-white);
            color: var(--si-primary);
            transform: translateY(-5px);
        }


@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
     .about-container { flex-direction: column; gap: 40px; }
    .about-image { width: 100%; order: 2; }
    .about-content { order: 1; text-align: center; }
     .expertise-grid { justify-content: center; }
    .exp-item { text-align: left; }
     .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .choose-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .image-inner img {
        box-shadow: 10px 10px 0px var(--secondary-color);
    }
    .feature-card {
        text-align: left;
    }
     .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
      .main-title { font-size: 2.2rem; }
       .contact-container-wrapper {
        grid-template-columns: 1fr;
    }
      .solar-install-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .solar-install-visual {
                display: none; /* Hide complex visual on tablet/mobile for space */
            }
            .solar-install-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .solar-install-bg-shape {
                width: 100%;
                clip-path: none;
                background: radial-gradient(circle at center, rgba(243, 156, 18, 0.15) 0%, transparent 100%);
            }
              .solar-install-process-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px 20px;
            }
            .solar-install-process-grid::before {
                display: none;
            }
            .solar-install-support-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .solar-install-service-list {
                justify-content: center;
            }
            .solar-install-service-item {
                justify-content: center;
            }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        height: 100vh;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: block; /* Mobile par dikhega but compact */
        padding: 0;
    }

    .logo-text {
        font-size: 1rem; /* Adjusting for small screens */
    }
      .hero { padding: 40px 5%; }
    .hero-content h1 { font-size: 2rem; }
    .experience-badge { display: none; } 
    .expertise-grid {
        grid-template-columns: 1fr; /* Mobile par single column */
    }
      .main-title { font-size: 2rem; }
       .floating-card { right: 10px; bottom: 10px; padding: 15px; }
         .choose-content .main-title {
        font-size: 2rem;
    }
     .consult-content .main-title {
        font-size: 2rem;
    }
      .hero-title { font-size: 2.5rem; }
    .unique-about-hero { height: 350px; }
     .contact-info-box, .contact-form-box {
        padding: 30px;
    }
                .solar-install-benefits-grid {
                grid-template-columns: 1fr 1fr;
            }

}
  @media (max-width: 650px) {
            .solar-install-process-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .solar-install-process-item {
                display: flex;
                flex-direction: row;
                text-align: left;
                align-items: center;
                gap: 20px;
                background: var(--si-light-gray);
                padding: 20px;
                border-radius: 20px;
                transition: 0.3s;
            }
            .solar-install-process-item:hover {
                background: #edf2f7;
            }
            .solar-install-icon-wrapper {
                margin: 0;
                min-width: 70px;
                width: 70px;
                height: 70px;
                border-radius: 18px;
            }
            .solar-install-step-count {
                left: 10px;
                right: auto;
                top: 10px;
            }
            .solar-install-process-item h3 {
                margin-bottom: 5px;
            }
            .solar-install-process-item p {
                padding: 0;
            }
        }
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info .info-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
     .solar-install-benefits-grid {
                grid-template-columns: 1fr;
            }
            .solar-install-benefits-header {
                text-align: center;
                padding-left: 0;
                border-left: none;
                border-top: 5px solid var(--si-secondary);
                padding-top: 20px;
            }
             .solar-install-service-list {
                grid-template-columns: 1fr;
            }
            .solar-install-support-card {
                padding: 30px 20px;
            }
}
/* Mobile View (Single Column) */
@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-header .main-title {
        font-size: 1.8rem;
    }
}
/* Specific for 320px Mobile */
@media (max-width: 480px) {
    .consult-section {
        padding: 50px 15px;
    }
    
    .consult-content .sub-title {
        font-size: 0.9rem;
    }

    .consult-content .main-title {
        font-size: 1.6rem;
    }

    .consult-content .desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .consult-btns {
        flex-direction: column; /* Buttons ek ke niche ek */
        width: 100%;
    }

    .btn-call, .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
     .unique-about-hero { height: 300px; }
    
    .glass-card {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .hero-title { 
        font-size: 1.6rem; 
        letter-spacing: 0px;
    }

    .unique-breadcrumb {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .header-skew-bottom {
        height: 30px; /* Small angle on mobile */
    }
     .bihar-services { padding: 50px 15px; }
    
    .main-title { font-size: 1.8rem; }

    .services-wrapper-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    .service-box {
        height: 280px; /* Reduced height for small mobile */
    }

    .service-content {
        padding: 20px;
    }

    .service-content i {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .explore-btn {
        opacity: 1; /* Keep visible on mobile as there's no hover */
        transform: translateY(0);
    }
     .contact-main {
        padding: 40px 10px;
    }
    
    .input-group {
        grid-template-columns: 1fr; /* Single column inputs */
        gap: 15px;
    }
    
    .contact-info-box {
        text-align: center;
        align-items: center;
    }

    .detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
     .solar-install-hero-section {
                height: auto;
                padding: 50px 0;
            }
            .solar-install-title {
                font-size: 1.8rem;
            }
            .solar-install-cta-group {
                flex-direction: column;
                width: 100%;
            }
            .solar-install-btn-main {
                width: 100%;
                text-align: center;
            }
}

/* Specific for 320px */
@media (max-width: 320px) {
    .logo-text {
        font-size: 0.9rem;
    }
    .logo img {
        height: 30px;
    }
    .navbar {
        padding: 10px 3%;
    }
     .hero { padding: 30px 10px; }
    .hero-content h4 { font-size: 0.8rem; letter-spacing: 1px; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; padding: 12px; font-size: 0.9rem; }
    .image-box { margin-top: 20px; }
        .exp-item {
        padding: 10px;
    }
    .exp-item span {
        font-size: 0.85rem;
    }
      .about-section { padding: 40px 15px; }
    .main-title { font-size: 1.5rem; }
    .sub-title { font-size: 0.8rem; }
    .desc { font-size: 0.9rem; text-align: justify; }
     .floating-card { position: relative; right: 0; bottom: 0; margin-top: 15px; width: 100%; }
      .services-section {
        padding: 40px 10px;
    }
    .service-card {
        padding: 25px 15px;
        text-align: center;
    }
    .icon-box {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .read-more {
        justify-content: center;
    }
     .why-choose-us {
        padding: 50px 15px;
    }
    .choose-content .main-title {
        font-size: 1.5rem;
    }
    .f-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .f-text h3 {
        font-size: 1.1rem;
    }
    .f-text p {
        font-size: 0.85rem;
    }
    .stats-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 15px;
        justify-content: center;
    }
    .feature-card {
        padding: 10px 0;
    }
      .footer {
        padding: 50px 10px 20px;
    }
    .footer-logo {
        font-size: 1.3rem;
    }
    .footer-col h4 {
        font-size: 1.1rem;
    }
    .footer-about, .footer-col ul li a, .info-item p {
        font-size: 0.85rem;
    }
    .social-links a {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
     .consult-content .main-title {
        font-size: 1.4rem;
    }
    .consult-content .sub-title {
        letter-spacing: 1px;
    }
      .hero-title { font-size: 1.4rem; }
    .glass-card { padding: 20px 10px; }
      .main-title { font-size: 1.5rem; }
    .service-box { height: 250px; }
     .contact-info-box, .contact-form-box {
        padding: 20px 15px;
    }
    .info-title { font-size: 1.4rem; }
      .solar-install-container {
                padding: 0 15px;
            }
            .solar-install-title {
                font-size: 1.5rem;
            }
            .solar-install-description {
                font-size: 13px;
            }
            .solar-install-badge {
                font-size: 10px;
                padding: 4px 10px;
            }
             .solar-install-process-section {
                padding: 50px 10px;
            }
            .solar-install-header h2 {
                font-size: 1.5rem;
            }
            .solar-install-icon-wrapper {
                min-width: 60px;
                width: 60px;
                height: 60px;
                font-size: 22px;
            }
            .solar-install-process-item h3 {
                font-size: 16px;
            }
            .solar-install-process-item p {
                font-size: 12px;
            }
            .solar-install-process-item {
                padding: 15px;
                gap: 15px;
            }
             .solar-install-benefits-section {
                padding: 50px 10px;
            }
            .solar-install-benefit-card {
                padding: 30px 20px;
            }
            .solar-install-benefits-header h2 {
                font-size: 1.6rem;
            }
            .solar-install-benefit-card h3 {
                font-size: 18px;
            }
            .solar-install-benefit-card p {
                font-size: 13px;
            }
             .solar-install-support-section {
                padding: 50px 10px;
            }
            .solar-install-support-content h2 {
                font-size: 1.6rem;
            }
            .solar-install-support-card h3 {
                font-size: 20px;
            }
            .solar-install-hotline-btn {
                font-size: 14px;
                padding: 12px 15px;
            }
            .solar-install-service-item span {
                font-size: 13px;
            }
}