:root {
    --primary-green: #2e7d32;
    --dark-blue: #0f2b48;
    --accent-gold: #f9a825;
    --light-bg: #f4f7f6;
    --text-dark: #333;
}

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

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Navigation */
header {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo span { 
    color: var(--primary-green); 
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    margin-left: 20px;
    font-weight: 600;
}

.nav-links .demo-link {
    color: var(--primary-green);
}

/* Language Selector Styling */
.lang-switcher select {
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    color: var(--dark-blue);
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}





/* ==========================================
   COMBINED & OPTIMIZED HERO & LOGO STYLES 
   ========================================== */
.hero {
    /* Background with rich overlay texture */
    background: linear-gradient(135deg, rgba(15,43,72,0.95) 50%, rgba(46,125,50,0.85)), 
                url('https://images.unsplash.com/photo-1592417817098-8f3d6eb18865?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    color: #fff;
    
    /* Layout properties */
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;  
    
    /* Tightened top padding to lift the logo right up against the header navigation */
    padding: 15px 5% 100px; 
}

/* Logo Wrapper Context */
.hero-logo-container {
    margin-top: 0;       
    margin-bottom: 25px; /* Creates healthy space between your logo and the h1 title */
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Logo Image Sizing & High-Definition Adaptability */
.hero-logo {
    width: 210px;        /* Slightly optimized layout prominence */
    height: auto;        
    max-width: 100%;     
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.25)); /* Makes the logo pop on dark background textures */
}

/* Typography elements */
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Overrides for Mobile Screens */
@media (max-width: 768px) {
    .hero {
        padding: 10px 5% 50px; /* Reduces extra dead space on mobile phone layouts */
    }
    .hero h1 {
        font-size: 2rem;       /* Keeps the header title from wrapping poorly on small screens */
    }
    .hero-logo {
        width: 160px;          /* Clean scaling so it sits perfectly proportions-wise on mobile device frames */
    }
}

.cta-btn {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;

    /* Adds safety margin underneath the button itself */
    margin-bottom: 20px;
}

.cta-btn:hover { 
    background-color: #fff; 
    color: var(--primary-green); 
}

/* Calculator Section */
.calculator-section {
    padding: 0 5%;
}

.calculator-container {
    background: #fff;
    max-width: 800px;
    margin: -50px auto 50px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.calculator-container h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group select, 
.form-group input[type="range"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.calc-result {
    background: #e8f5e9;
    padding: 20px;
    border-left: 5px solid var(--primary-green);
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.calc-result h3 { 
    color: var(--primary-green); 
    font-size: 1.5rem; 
}

.savings-text {
    margin-top: 10px; 
    font-weight: 600; 
    color: var(--dark-blue);
}


/* Premium Products Showcase */
.premium-products {
    padding: 80px 5%;
    background-color: #f8faf9;
    overflow: hidden;
}

.showcase-header {
    margin-bottom: 60px;
}

.drone-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Space between the two drones */
}

/* Staggered Row Layout */
.drone-model-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(15, 43, 72, 0.06);
    border: 1px solid #e1ebe1;
}

/* Reverses the layout for the second drone on Desktop */
.reverse-layout {
    flex-direction: row-reverse;
}

/* Image Visual Effects */
.drone-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.drone-img {
    width: 100%;
    max-width: 450px;
    z-index: 2;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

.drone-model-card:hover .drone-img {
    transform: translateY(-15px) scale(1.03); /* Floating hover effect */
}

/* Glowing Backgrounds behind transparent drone */
.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    opacity: 0.2;
}

.classic-glow { background: var(--primary-green); }
.pro-glow { background: var(--accent-gold); }

/* Badges */
.dgca-badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pro-badge {
    background: #fff8e1;
    color: #ff8f00;
    border: 1px solid #ffecb3;
}

/* Text and Tech Specs Details */
.drone-details {
    flex: 1;
}

.drone-details h3 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.model-target {
    color: #546e7a;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* The Dashboard Spec Grid (Replacing Bullets) */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.spec-item {
    background: #f4f7f6;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #37474f;
    font-weight: 600;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.2s ease;
}

.spec-item:hover {
    transform: translateX(5px);
    background: #e8ebea;
}

.spec-icon {
    font-size: 1.3rem;
}

/* The WhatsApp Action Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebc5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .drone-model-card, .reverse-layout {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .dgca-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    padding: 12px 25px;
    font-weight: 700;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float svg {
    display: inline-block; 
    vertical-align: middle;
}

/* Responsive Design */
@media(max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
}




/* Footer Styles */
footer {
    background-color: var(--dark-blue);
    color: #ffffff;
    padding-top: 0;
    margin-top: 60px;
    border-top: 5px solid var(--primary-green);
}

/* Sliding Government Scheme Ticker */
.scheme-ticker {
    background: var(--accent-gold);
    color: var(--dark-blue);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: tickerAnimation 25s linear infinite;
}

@keyframes tickerAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Footer Layout Structure */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5% 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.brand-col .logo {
    color: #fff;
    margin-bottom: 15px;
}

.brand-desc {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-bottom: 20px;
}





/* Social Media Links Layout */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

/* Base styling for all social circles */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #cfd8dc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Universal SVG sizing correction inside circles */
.social-icon svg {
    display: inline-block;
    vertical-align: middle;
}

/* Individual Platform Hover Effects */
.social-icon.insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(214, 36, 159, 0.3);
}

.social-icon.fb:hover {
    background-color: #1877f2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-icon.yt:hover {
    background-color: #ff0000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-icon.ln:hover {
    background-color: #0077b5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}




.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-col p {
    font-size: 0.95rem;
    color: #cfd8dc;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Bottom Bar Credits Area */
.footer-bottom {
    background-color: #0a1e32;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.85rem;
    color: #90a4ae;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}






/* About Us Styles */
.about-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    align-items: center;
}

/* Left Visual Branding Accent Panel */
.about-visual {
    background: linear-gradient(135deg, var(--dark-blue), #1a3e61);
    padding: 40px;
    border-radius: 12px;
    color: #ffffff;
    border-bottom: 6px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(15, 43, 72, 0.1);
}

.experience-badge {
    background-color: var(--primary-green);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.about-subtext {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
}

/* Right Content Panel Styling */
.section-title-left {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.about-story {
    font-size: 1.05rem;
    color: #455a64;
    line-height: 1.8;
}

.about-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 50px 0;
}

/* Mission & Vision Grid Layout */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: #f9fbf9;
    border: 1px solid #e1ebe1;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.08);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mv-card h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 0.98rem;
    color: #546e7a;
    line-height: 1.7;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .about-section { padding: 50px 5%; }
    .about-grid { gap: 30px; }
    .about-visual { padding: 30px; }
}




/* Benefits Section Layout */
.benefits-section {
    padding: 80px 5%;
    background-color: #f4f7f6;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-subtitle {
    text-align: center;
    color: #546e7a;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Scrollable Container Wrapper for mobile optimization */
.matrix-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.comparison-matrix {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px; /* Prevents text squeezing on tiny layouts */
    text-align: left;
}

.comparison-matrix th, 
.comparison-matrix td {
    padding: 18px 25px;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-matrix th {
    background-color: var(--dark-blue);
    color: #ffffff;
    font-weight: 700;
}

.comparison-matrix th.old-way { background-color: #37474f; }
.comparison-matrix th.drone-way { background-color: var(--primary-green); }

.feature-name {
    font-weight: 700;
    color: var(--dark-blue);
    background-color: #fafafa;
}

.old-way {
    color: #c62828;
    background-color: #fffde7;
    font-weight: 600;
}

.drone-way {
    color: #2e7d32;
    background-color: #e8f5e9;
    font-weight: 700;
}

/* Hover Rows Effect */
.comparison-matrix tr:hover td {
    filter: brightness(0.98);
}

/* Bottom Metrics Badges Layout */
.benefits-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.badge-card {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.badge-card h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.badge-card p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
}







/* Free Demo Booking Section Styles */
.demo-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f4f7f6 0%, #e8ebea 100%);
}

.demo-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 43, 72, 0.08);
    border-top: 6px solid var(--primary-green);
}

/* Header Text Layout */
.demo-header {
    text-align: center;
    margin-bottom: 35px;
}

.demo-badge {
    display: inline-block;
    background-color: #fff3e0;
    color: #e65100;
    font-weight: 700;
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px dashed #ffb74d;
}

.demo-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.demo-header p {
    color: #546e7a;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Matrix Control Grid */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Beautiful Label Elements Styling */
.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.required {
    color: #d32f2f;
}

.optional-tag {
    font-size: 0.8rem;
    color: #78909c;
    font-weight: 500;
}

/* Standardized Field Input Styling Elements */
.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #ccd7cc;
    border-radius: 8px;
    background-color: #fafafa;
    color: var(--dark-blue);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

/* Premium Dynamic Animated Submit Action Button */
.form-submit-container {
    text-align: center;
    margin-top: 15px;
}

.btn-submit-demo {
    background: linear-gradient(135deg, var(--primary-green) 0%, #256329 100%);
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.btn-submit-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    filter: brightness(1.05);
}

/* Adaptive Form Styling Constraints for Small Screens */
@media (max-width: 600px) {
    .demo-container { padding: 25px 20px; }
    .demo-header h2 { font-size: 1.7rem; }
    .btn-submit-demo { width: 100%; justify-content: center; }
}





/* Premium Service Hub Styles */
.premium-services {
    padding: 80px 5%;
    background-color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 50px;
}

/* Modern Grid Configuration */
.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Premium Card Wrapper Design */
.service-hub-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Top Image Aspect Ratio Enforcer */
.service-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #eceff1;
}

.hub-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image perfectly proportioned without squishing */
    transition: transform 0.5s ease;
}

/* Floating Technical Badges */
.service-badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 43, 72, 0.85);
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bottom Content Block */
.service-hub-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
}

/* Elevated Abstract Floating Icon */
.service-icon-accent {
    position: absolute;
    top: -25px;
    left: 25px;
    background: var(--primary-green);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    color: #ffffff;
    z-index: 2;
}

.service-hub-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin: 10px 0 12px 0;
    font-weight: 700;
}

.service-hub-content p {
    font-size: 0.92rem;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

/* Interactive Hover States (The Competitor Killer Effects) */
.service-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 43, 72, 0.12);
}

.service-hub-card:hover .hub-img {
    transform: scale(1.08); /* High-end micro-zoom */
}

.service-hub-card:hover .service-hub-content {
    border-color: var(--primary-green); /* Bottom active glowing line */
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .services-hub-grid {
        gap: 25px;
    }
    .service-image-box {
        height: 200px;
    }
}








