/* --- CSS Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font: 'Plus Jakarta Sans', sans-serif;
    --serif-font: 'Playfair Display', serif;
    --text-dark: #12141d;
    --text-muted: #5e6573;
    --purple-brand: #6343e5;
    --bg-light: #fafafc;
    --border-color: #ededf2;
}

body {
    font-family: var(--primary-font);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.tagline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--text-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--primary-font);
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--purple-brand);
}

.btn-secondary {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.section-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    max-width: 1200px;
    margin: 4rem auto;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.logo {
  
    display: flex;
    

}

.logo span {
    color: var(--purple-brand);
}

.nav-links{
    margin-left: -18rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--purple-brand);
}

/* --- Hero Section --- */
.hero-section {
    text-align: center;
/   max-width: 1400px;
    margin: 5rem auto 3rem auto;
    padding: 0 2rem;
}

.hero-section h1 {
    font-family: var(--serif-font);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-section h1 em {
    font-style: italic;
    color: var(--purple-brand);
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
  margin: 0 auto 2.5rem 18rem;
}




.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    gap: 2rem;
    margin-bottom: 4rem;
}







.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
}

.placeholder-img {
     background-image: url('namrata-slider-1.png');
    border-radius: 24px;
    background-size: cover;
    height: 600px;
   
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.4);
    font-weight: 500;
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fff;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- About Section --- */
.about-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-card ul {
    list-style: none;
}

.about-card ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.about-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-brand);
    font-weight: bold;
}

/* --- Infrastructure --- */
.infra-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.infra-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-end;
}

.infra-header h2 {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
}

.gradient-text {
    font-style: italic;
    color: var(--purple-brand);
}

.infra-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-bottom: 0.5rem;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.infra-card {
    padding: 2rem;
    border-radius: 16px;
}

.purple-light { background: #f0ecff; }
.green-light { background: #e3f9f0; }
.orange-light { background: #fff1e6; }

.infra-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.infra-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/*
.iso-bg {
    background: #eef3f7;
    height: 400px;
}*/











.isometric-container {
    width: 100%;
    max-width: 800px; /* Aap apne hisab se width adjust kar sakte hain */
    margin: 0 auto;
}

.iso-bg {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.iso-bg iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}







/* --- Products --- */
.products-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.products-header h2 {
    font-size: 2.2rem;
    font-family: var(--serif-font);
    font-weight: 400;
}

.view-all {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}


 .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}




.product-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    color: #12141d;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.coral { background: #ffaa85; }
.purple { background: #b49eff; }
.teal { background: #8cead2; }
.yellow { background: #ffe17d; }

.product-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-top: auto;
    margin-bottom: 0.25rem;
}

.product-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.arrow-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}




/*
.support-banner {
     background: linear-gradient(135deg, #6343e5, #a46eff); 
    background-image: url(bg-img.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000;
    padding: 5rem 2rem;
    text-align: center;
}
*/

.support-banner {
    position: relative; 
    color: #000; 
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden; 
}


.support-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(bg-img.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; 
    
    
    opacity: 0.3; 
    filter: blur(8px); 
    
    z-index: 1; 
}


.support-banner > * {
    position: relative;
    z-index: 2;
}



/*
.support-banner {
    background: #c9ccd3;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}*/

.support-banner h2 {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
}

/*

.blur-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
}*/






.blur-card {
    background: #0000000a;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    box-shadow: 1px 0px 3px 1px #77777761;
    border-radius: 8px;
}



.blur-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blur-card p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.contact-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonials-section h2 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-card {
    background: #fffef2; /* Slightly different highlight tint */
    border-color: #ffe6a3;
}

.quote {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    background: #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.user-info strong {
    display: block;
    font-size: 0.9rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Lead Form Section --- */
.cta-form-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-form-container {
    background: linear-gradient(90deg, #ffeadd, #f1e6ff);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-form-text h2 {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-form-text h2 em {
    color: var(--purple-brand);
    font-style: italic;
}

.lead-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.lead-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    outline: none;
}

.lead-form input:focus {
    border-color: var(--purple-brand);
}

.lead-form .btn-primary {
    border-radius: 8px;
    padding: 1rem;
}

/* --- Footer --- */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem 2rem;
    background: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--purple-brand);
}

.footer-copyright {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-section h1 { font-size: 3rem; }
    .about-section, .infra-header, .cta-form-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .infra-grid, .products-grid, .testimonials-grid, .support-cards { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-item { border-right: none; }
    .contact-strip { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 576px) {
    .infra-grid, .products-grid, .testimonials-grid, .support-cards { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .cta-form-container { padding: 2rem; }
    .footer-bottom { flex-direction: column; gap: 2rem; }
}


.solutions-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

/* Header Grid Styling */
.solutions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 40px;
}

.header-left {
    position: relative;
}

.bg-text {
    font-size: 4.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #e0e0e0;
    letter-spacing: 2px;
    line-height: 1;
}

.main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 13px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.header-right .description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: justify;
}


.graphic-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.main-img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}


.cards-container {
    position: relative;
    bottom: 31px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 19px 30px 15px;
}



.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    /* border-top-left-radius: 30px; */
    /* border-top-right-radius: 30px; */
    border-bottom-left-radius: 15px;
    /* border-bottom-right-radius: 15px; */
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}


.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.2rem;
    color: #1a252f;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-container {
        position: relative;
        grid-template-columns: 1fr;
        padding: 20px 0;
        background: #f5f7fa;
    }
    
    .info-card {
        border-radius: 15px;
    }
    
    .bg-text {
        font-size: 3.5rem;
    }
}


.energy-card {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 35px 25px;
    overflow: hidden;
}

.energy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.energy-content {
    width: 100%;
    position: relative;
    z-index: 2;
}


.large-number-outline {
    font-size: 8.5rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
    position: absolute;
    bottom: 150px;
    left: 103px;
    z-index: 1;
    transition: all 0.4s ease;
}

.energy-title {
    font-size: 1.5rem;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.energy-title1 {
    font-size: 12px;
    color: #000 !important;
    font-weight: 700;
    border-radius: 3px;
    background-color: #fff;
    text-align: center;
    border: 1px solid #fff;
    padding: 3px 4px;
    margin: 0;
  
}


.spec-title {
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}







.footer-section {
    

    background-color: #fff;
    color: #9ca3af;
    padding: 80px 0 0 0;
    font-family: sans-serif;
}

.footer-col {
    margin-bottom: 40px;
}


.footer-heading h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
}


.footer-logo-text {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}



.footer-logo-text span {
    background: linear-gradient(180deg, #e11d48 0%, #991b1b 100%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
}


.footer-social-icons {
    display: flex;
    gap: 10px;
}


.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #282e38;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}


.footer-social-icons a:hover {
    background: linear-gradient(180deg, #e11d48 0%, #991b1b 100%);
}


.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


.footer-contact-list .contact-icon {
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-list .contact-text {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}


.footer-contact-list .highlight-phone {
    font-weight: 700;
    font-size: 15px;
}


.footer-double-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-links-list li {
    margin-bottom: 15px;
}


.footer-links-list li a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}


.footer-links-list li a:hover {
    color: #ffffff;
}


.footer-subscribe-form {
    margin-bottom: 10px;
}


.input-group-wrapper {
    position: relative;
    display: flex;
    border-bottom: 1px solid #4b5563; 
    padding-bottom: 8px;
}


.input-group-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}


.input-group-wrapper input::placeholder {
    color: #4b5563;
}


.input-group-wrapper button {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
}


.input-group-wrapper button:hover {
    color: #ffffff;
}


.spam-disclaimer {
    font-size: 12px;
    color: #6b7280;
    display: block;
}


.footer-bottom-bar {
    border-top: 1px solid #282e38;
    margin-top: 40px;
    padding: 25px 0;
}


.footer-bottom-bar p {
    margin: 0;
    font-size: 13px;
    color:#000;
    text-align: center;
}






