
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
    font-size:17px;
}

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.logo h2{
    color:#2563eb;
    font-size:30px;
}

.logo span{
    color:#ff6600;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:30px;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

nav a.admin-nav-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

nav a.admin-nav-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}


.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:140px 8% 80px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:white;
    flex-wrap:wrap;
}

.hero-text{
    width:50%;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
}

.hero-text span{
    color:#ffd700;
}

.hero-text p{
    margin:25px 0;
    font-size:20px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#fff;
    color:#2563eb;
}

.hero-image{
    width:45%;
    text-align:center;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

.title{
    text-align:center;
    font-size:44px;
    margin-bottom:55px;
    color:#2563eb;
}


#about{
    padding:90px 8%;
    background:#fff;
}

.about{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.about-image{
    width:45%;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-text{
    width:50%;
}

.about-text h3{
    margin:20px 0;
    color:#2563eb;
}

.about-text p{
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

#services{
    padding:90px 8%;
    background:#f8f9fc;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:52px;
    color:#2563eb;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    line-height:1.8;
    font-size:16px;
}


.why{
    padding:90px 8%;
    background:white;
}

.why-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box div{
    background:#2563eb;
    color:white;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.why-box div:hover{
    background:#ff6600;
}

.why-box h3{
    margin-bottom:15px;
}

#contact{
    padding:90px 8%;
    background:#f8f9fc;
}

.contact{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

form{
    width:60%;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:16px;
}

form button{
    background:#2563eb;
    color:white;
    padding:15px 35px;
    border:none;
    border-radius:40px;
    cursor:pointer;
    font-size:17px;
}

form button:hover{
    background:#ff6600;
}

.address{
    width:30%;
}

.address h3{
    color:#2563eb;
    margin-bottom:20px;
}

.address p{
    margin-bottom:20px;
    line-height:1.8;
}
.footer{
    background:#3b3b3b;
    color:#fff;
    padding:60px 8% 0;
}

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

.footer-box h1{
    font-size:42px;
    color:#fff;
    margin:15px 0;
}

.footer-box h2{
    font-size:30px;
    margin-bottom:25px;
    color:#fff;
}

.footer-box p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
    color:#ddd;
    transition:.3s;
    cursor:pointer;
}

.footer-box ul li:hover{
    color:#00ff66;
    padding-left:8px;
}

.footer-logo {
    width: 230px;
    margin: 20px 0;
    display: block;
}

/* Larger, high-impact Startup India & Make in India footer badges */
.footer-logos-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap;
}

.footer-logo-badge {
    height: 130px;
    width: 220px;
    object-fit: contain;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    border: 3px solid #cbd5e1;
    transition: all 0.3s ease;
}

.footer-logo-badge:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
    border-color: #2563eb;
}
.footer-box form input,
.footer-box form textarea{

    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    outline:none;
    background:#fff;
    color:#000;
    font-size:15px;
}

.footer-box form textarea{
    resize:none;
}

.footer-box form button{

    padding:12px 35px;
    background:#0099ff;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:16px;
    transition:.3s;

}

.footer-box form button:hover{

    background:#00cc66;

}

.footer-bottom{

    background:#0097b2;
    margin-top:50px;
    padding:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

}

.footer-bottom div{

    color:#fff;
    margin:10px;

}

.footer-bottom a{

    color:#fff;
    text-decoration:none;
    margin:0 8px;

}

.footer-bottom a:hover{

    text-decoration:underline;

}
@media(max-width:1000px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}
@media(max-width:700px){

.footer-container{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

.footer-logo{

width:180px;

}

.footer-box h2{

font-size:24px;

}

.footer-box h1{

font-size:32px;

}

}

/* Modal Styling */
.modal {
    display: none; 
    position: fixed; 
    z-index: 20000; 
    left: 0;
    top: 0;
    width: 100vw; 
    height: 100vh; 
    background-color: rgba(0,0,0,0.65); 
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
    scroll-behavior: smooth;
}

.modal-content h2 {
    color: #2563eb;
    margin-bottom: 20px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close-btn:hover {
    color: #ff6600;
}

.modal-content form {
    width: 100%;
}

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.modal-content button {
    background: #ff6600;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.modal-content button:hover {
    background: #2563eb;
}

/* =========================================
   ANIMATED BACKGROUND & DARK MODE 
========================================= */

/* Background Animation base for body */
body {
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Light Mode Gradient Background */
body:not(.dark-mode) {
    background: linear-gradient(-45deg, #e0eafc, #cfdef3, #e2e2e2, #ffffff);
    background-size: 400% 400%;
}

/* Dark Mode Gradient Background */
body.dark-mode {
    background: linear-gradient(-45deg, #121212, #1f1f1f, #2c3e50, #000000);
    background-size: 400% 400%;
    color: #e0e0e0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Dark Mode Overrides ===== */
body.dark-mode header {
    background: #1e1e1e;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

body.dark-mode nav a { color: #e0e0e0; }
body.dark-mode nav a:hover { color: #ff6600; }

/* Sections Background Transparent to show animated body bg */
body.dark-mode #about, 
body.dark-mode .why,
body.dark-mode #services,
body.dark-mode #contact,
body.dark-mode .service-page-container {
    background: transparent; 
}
body:not(.dark-mode) #about, 
body:not(.dark-mode) .why,
body:not(.dark-mode) #services,
body:not(.dark-mode) #contact,
body:not(.dark-mode) .service-page-container {
    background: transparent; 
}

/* Cards & Forms in Dark Mode */
body.dark-mode .card,
body.dark-mode .service-form {
    background: rgba(30, 30, 30, 0.9);
    color: #e0e0e0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border: 1px solid #333;
}
body:not(.dark-mode) .card,
body:not(.dark-mode) .service-form {
    background: rgba(255, 255, 255, 0.9);
}

body.dark-mode .card p,
body.dark-mode .service-content p,
body.dark-mode .address p {
    color: #b0b0b0;
}

body.dark-mode form input,
body.dark-mode form textarea,
body.dark-mode form select {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #e0e0e0;
}

body.dark-mode .service-form h3,
body.dark-mode .service-content h1 {
    color: #ff6600;
}

body.dark-mode #qr_code_box {
    background: #2a2a2a !important;
    border-color: #444 !important;
}

body.dark-mode #qr_code_box p {
    color: #e0e0e0 !important;
}

/* Toggle Button Style */
.theme-toggle-btn {
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    background: none;
    border: none;
    outline: none;
    transition: 0.3s;
}
.theme-toggle-btn:hover {
    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
========================================= */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    header nav {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header nav a {
        margin: 5px 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 300px;
    }

    .about, .service-details, .contact {
        flex-direction: column;
        align-items: center;
    }

    .service-box, .why-box, .footer-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .footer-container {
        text-align: center;
    }
}

/* =========================================
   PAGE HERO & STANDALONE PAGE STYLES
========================================= */
.page-hero {
    padding: 140px 8% 60px;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Active Nav Link */
nav a.active {
    color: #2563eb;
    font-weight: 700;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 4px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.stat-card h3 {
    font-size: 42px;
    color: #ff6600;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

/* Mission, Vision & Values Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #2563eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.value-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .step-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.15);
}

.process-card h3 {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 60px 8%;
    border-radius: 24px;
    margin: 60px 8%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-banner p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Mode Styles for New Components */
body.dark-mode .page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0369a1 100%);
}

body.dark-mode .stat-card,
body.dark-mode .value-card,
body.dark-mode .process-card {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .stat-card p,
body.dark-mode .value-card p,
body.dark-mode .process-card p {
    color: #cbd5e1 !important;
}

body.dark-mode .value-card h3 {
    color: #f8fafc !important;
}

body.dark-mode nav a.active {
    color: #60a5fa !important;
    border-bottom-color: #60a5fa !important;
}
