/* Custom Properties */
:root {
    --csc-blue: #003366;
    --digital-orange: #ff9933;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: #333;
    line-height: 1.6;
}

/* Header & Nav */
.top-bar {
    background: var(--csc-blue);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    font-size: 0.85rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; }
.logo-csc { color: var(--csc-blue); }
.logo-hub { color: var(--digital-orange); }

.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--csc-blue); }

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?auto=format&fit=crop&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.badge {
    background: var(--digital-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero-content h1 { font-size: 3.5rem; margin: 15px 0; line-height: 1.1; }
.hero-btns { display: flex; gap: 15px; justify-content: center; margin-top: 25px; }

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary { background: var(--csc-blue); color: white; }
.btn-secondary { background: #25D366; color: white; }

/* CSC Services */
.services { padding: 80px 8%; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--csc-blue); }

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.s-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 4px solid #eee;
    transition: 0.3s;
}

.s-card:hover { border-bottom: 4px solid var(--digital-orange); transform: translateY(-10px); }
.icon-box { font-size: 2.5rem; color: var(--csc-blue); margin-bottom: 15px; }

/* Other Ventures (Sports & Taxi) */
.other-ventures { padding: 60px 8% 100px; background: #fff; }
.venture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.venture-card {
    height: 350px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.venture-card.sports { background: linear-gradient(to top, rgba(0,0,0,0.9), transparent), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?auto=format&fit=crop&w=800') center/cover; }
.venture-card.taxi { background: linear-gradient(to top, rgba(0,0,0,0.9), transparent), url('https://financialexpresswpcontent.s3.amazonaws.com/uploads/2019/07/Mahindra-Bolero-Power-660.jpg') center/cover; }

.v-content i { font-size: 2rem; color: var(--digital-orange); margin-bottom: 10px; }
.v-btn { margin-top: 15px; display: inline-block; font-weight: bold; border: 1px solid white; padding: 5px 15px; border-radius: 5px; }

footer { background: var(--dark-bg); color: #888; text-align: center; padding: 40px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
}
/* More Services Button Styling */
.more-services-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    padding: 12px 35px;
    background: transparent;
    color: var(--csc-blue);
    border: 2px solid var(--csc-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-more i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.btn-more:hover {
    background: var(--csc-blue);
    color: var(--white);
    transform: scale(1.05);
}
/* Ensure these are in your style.css */
.hidden {
    display: none !important; /* Forces it to hide */
}

.show-cards {
    display: block !important; /* Forces it to show */
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Detailed Page Styles */
.bg-light { background-color: #f0f2f5; }

.page-header {
    background: var(--csc-blue);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.container-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-category {
    margin-bottom: 50px;
}

.cat-title {
    color: var(--csc-blue);
    border-bottom: 3px solid var(--digital-orange);
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 5px;
    font-size: 1.8rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.d-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eef0f2;
}

.d-card:hover {
    border-color: var(--digital-orange);
    transform: scale(1.02);
}

.d-card i {
    font-size: 2rem;
    color: var(--digital-orange);
    margin-bottom: 10px;
}

.contact-cta {
    background: white;
    text-align: center;
    padding: 50px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}
.hidden { display: none !important; }.contact-cta {
    background: #fff;
    text-align: center;
    padding: 60px 20px; /* Increased padding for better spacing */
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--csc-blue);
}

.contact-cta p {
    margin-bottom: 25px;
    color: #666;
}

/* Specific fix for the button alignment */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary-call {
    display: inline-block; /* Essential for correct padding/width */
    background: var(--csc-blue);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: transform 0.2s;
}

.btn-primary-call:hover {
    transform: translateY(-3px);
    background: #004080;
}
/* Sports Page specific layout */
.section-title-sports {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    color: #333;
    border-left: 5px solid var(--digital-orange);
    padding-left: 15px;
}

/* FIX FOR PICTURES: Ensures all images are same size */
.img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Sets a standard landscape ratio */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents the "stretched" look */
    transition: transform 0.3s ease;
}

.d-card:hover img {
    transform: scale(1.1);
}

/* Hero for Sports */
.sports-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1471295253337-3ceaaedca402?q=80&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Contact Buttons Fix */
.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-call { background: #d9534f; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; }
.btn-wa { background: #25d366; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; }
/* Taxi Hero */
.taxi-hero {
    height: 45vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Taxi Badges */
.taxi-card {
    position: relative;
    text-align: left !important;
}

.taxi-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
}

.all-india { background: #28a745; }
.state-permit { background: #007bff; }

/* Feature List */
.taxi-features {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.taxi-features li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #555;
}

.taxi-features i {
    color: #28a745;
    margin-right: 8px;
}

.service-small i {
    font-size: 2.5rem;
    color: var(--digital-orange);
    margin-bottom: 15px;
}
/* Footer Design & Developer Credit */
.main-footer {
    background: #111; /* Deep Dark Background like Miklam Homes */
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Icons */
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-icon-link {
    width: 60px;
    height: 60px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-icon-link:hover {
    background: var(--digital-orange); /* Uses your accent color */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.whatsapp-bg:hover {
    background: #25d366 !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.business-email {
    color: #888;
    font-size: 1rem;
    margin-top: 10px;
}

/* Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid #222;
    margin: 40px 0;
}

/* Developer Credit Styling */
.footer-bottom p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.developer-credit {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.dev-name {
    color: var(--digital-orange);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.dev-contact a:hover {
    opacity: 1;
    color: var(--digital-orange);
}/* Card Layout Improvements */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.card-header i {
    font-size: 1.5rem;
    color: #ff9933;
}

.sub-text {
    font-size: 0.8rem;
    color: #888;
    margin: -10px 0 10px 0;
}

/* FIXING THE CTA SECTION OVERLAP */
.contact-cta-fixed {
    background: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-cta-fixed h3 {
    margin-bottom: 10px;
}

.contact-cta-fixed p {
    margin-bottom: 30px; /* Adds space before the button */
    color: #555;
}

.btn-call-fixed {
    background: #003366;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: block; /* Prevents text wrap issues */
    width: fit-content;
}/* Fix for the bottom margin issue */
.container-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px; /* Added 80px to the bottom padding */
}

/* Ensure the last category has space */
.service-category:last-of-type {
    margin-bottom: 100px; /* Extra space after the very last document grid */
}

/* Fix for the CTA (Call Now) section spacing */
.contact-cta-fixed {
    clear: both;
    margin-top: 50px;
    padding: 60px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}/* Fix for the bottom margin issue */
.container-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px; /* Added 80px to the bottom padding */
}

/* Ensure the last category has space */
.service-category:last-of-type {
    margin-bottom: 100px; /* Extra space after the very last document grid */
}

/* Fix for the CTA (Call Now) section spacing */
.contact-cta-fixed {
    clear: both;
    margin-top: 50px;
    padding: 60px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}.details-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the last line */
    gap: 25px;
    margin-bottom: 40px;
}

.checklist-card {
    flex: 1 1 300px; /* This allows cards to grow but keeps them around 300px */
    max-width: 380px; /* Prevents a single card from becoming too wide */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}