/* =========================================
   1. VARIABLES & RESET
   ========================================= */
   :root {
    --primary-color: #E60000; /* Red from Brand Identity */
    --secondary-color: #001f3f; /* Dark Blue */
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-light { background-color: var(--bg-light); }

.font-script {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-color); /* Red to match "Desco" in PDF */
    font-weight: 400;
}

.section { padding: 80px 0; }

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #CC0000; /* Darker Red */
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #003366;
    transform: translateY(-2px);
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98); /* Slightly more opaque */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0; /* Adjusted padding */
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.logo img {
    height: 80px; /* Increased for better visibility */
    width: auto;  /* Maintain aspect ratio */
}

.logo span {
    display: flex;
    align-items: baseline;
}

.logo .highlight {
    color: #E60000; /* Red to match brand */
    font-size: 0.7em;
    margin-left: 5px;
    font-weight: 700;
    letter-spacing: 0;
}

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.nav-links a:hover { color: var(--primary-color); }

.btn-nav {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.btn-nav:hover { background: var(--primary-color); color: white !important; }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   4. HERO SLIDER
   ========================================= */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: #000; /* Fallback */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-caption {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
}

.prev-slide, .next-slide {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover { color: var(--white); transform: scale(1.1); }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover { background: var(--primary-color); transform: scale(1.2); }

/* Animations Keyframes repeated for context/safety if missing */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.delay-3 { animation-delay: 0.6s; }

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-section .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-img, .col-text { flex: 1; }

.img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-wrapper img { width: 100%; transition: var(--transition); }
.img-wrapper:hover img { transform: scale(1.05); }

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text { font-size: 0.8rem; font-weight: 600; }

.stats-grid {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.stat-item p { font-size: 0.9rem; font-weight: 600; color: var(--light-text); }

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img { transform: scale(1.1); }

.icon-box {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-body { padding: 30px 20px 20px; }

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-body p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover { gap: 10px; }

/* =========================================
   7. FEATURES & GALLERY
   ========================================= */
.features-section {
    background: var(--secondary-color);
    color: var(--white);
}

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

.feature-box {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover { background: rgba(255,255,255,0.1); }

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover img { filter: brightness(0.8); }

/* =========================================
   8. FOOTER
   ========================================= */
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer {
    background: #111;
    color: #bbb;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-col h3 { color: var(--white); margin-bottom: 20px; font-family: var(--font-heading); }

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover { background: var(--primary-color); }

.footer-bottom { text-align: center; font-size: 0.9rem; }

/* =========================================
   9. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    
    .about-section .row, .contact-section .row {
        flex-direction: column;
    }
    
    .img-wrapper { margin-bottom: 30px; }
}

/* =========================================
   10. NEW SECTIONS (Mission, Founder, Clients)
   ========================================= */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.mvv-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.mvv-card p { color: var(--light-text); }

.values-list li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.values-list strong { color: var(--secondary-color); }

.founder-section {
    padding: 80px 0;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-quote {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.founder-quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.founder-quote .fa-quote-left { float: left; margin-right: 15px; margin-top: -10px; }
.founder-quote .fa-quote-right { float: right; margin-left: 15px; margin-bottom: -10px; }

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.client-item {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.client-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}