@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8b1528; /* Maroon / Dark Red Accent */
    --accent: #00E5FF;
    --bg-gradient: linear-gradient(120deg, #fdfbfb 0%, #fcedf2 100%);
    --text-main: #444444;
    --text-dark: #111111;
    --text-light: #ffffff;
    --font-family: 'Poppins', system-ui, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(230, 0, 76, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text-main); background: var(--bg-gradient); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); }

/* Full Width Glossy Sticky Navbar */
.navbar { position: sticky; top: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 0.8rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.5); z-index: 1000; transition: all 0.3s ease; }

/* Logo Holder */
.logo { display: flex; align-items: center; }
.logo a { display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.logo a:hover { transform: scale(1.05); }
.logo img { max-height: 70px; width: auto; object-fit: contain; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; }
.menu-toggle .bar { width: 30px; height: 3px; background-color: var(--primary); transition: all 0.3s ease-in-out; border-radius: 3px; }
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Modern Navigation Links */
.nav-wrapper { display: flex; align-items: center; justify-content: flex-end; flex: 1; margin-left: 2rem; }
.nav-links { display: flex; gap: 0.5rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { color: #222222; font-weight: 800; font-family: var(--font-heading); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; padding: 0.7rem 1.4rem; border-radius: 30px; transition: all 0.3s ease; display: inline-block; }
.nav-links a:hover { color: var(--primary); background: transparent; }
.nav-links a.active { color: var(--primary); background: transparent; box-shadow: none; }

.header-cta-group { display: flex; align-items: center; gap: 1rem; }
.btn-cta { background: var(--primary); color: #ffffff; border: none; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 800; font-family: var(--font-heading); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 4px 15px rgba(139, 21, 40, 0.2); display: inline-block; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(139, 21, 40, 0.35); color: #ffffff; }

/* Global Layouts */
.container { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* Split-Screen Hero Sections */
.hero { display: flex; min-height: 80vh; overflow: hidden; align-items: center; background: url('images/WhatsApp-Image-2026-03-05-at-19.10.04-1.jpeg') no-repeat center center; background-size: cover; position: relative; z-index: 1; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: -1; }
.hero-left { flex: 1; padding: 5rem 5%; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(139, 21, 40, 0.1); color: var(--primary); border-radius: 50px; font-weight: 700; font-size: 0.85rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; width: fit-content; }
.hero-left h1 { font-size: 4.5rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-dark); line-height: 1.1; letter-spacing: -0.03em; }
.hero-left p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-main); max-width: 600px; font-weight: 500; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 0.8rem 2rem; border-radius: 8px; font-weight: 600; font-family: var(--font-heading); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: inline-block; }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(230, 0, 76, 0.2); }

/* Inner Page Headers */
.page-hero { display: flex; min-height: 40vh; overflow: hidden; border-bottom: var(--glass-border); background: url('images/WhatsApp-Image-2026-03-05-at-19.10.04-1.jpeg') no-repeat center center; background-size: cover; position: relative; z-index: 1; }
.page-hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: -1; }
.page-hero-left { flex: 1; padding: 4rem 5%; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.page-hero-left h2 { font-size: 3.5rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.breadcrumb { color: var(--text-main); font-weight: bold; margin-bottom: 1rem; font-size: 1.1rem; }
.breadcrumb span { color: var(--primary); }

/* Right Side Hero Image container */
.hero-right { flex: 1; position: relative; min-height: 350px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.magenta-semi-circle { position: relative; width: 400px; height: 400px; background: rgba(255, 255, 255, 0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); backdrop-filter: blur(12px); z-index: 2; margin: 0 auto; }
.magenta-semi-circle img { width: 65%; max-width: 250px; object-fit: contain; }

/* Decrease circle size specifically for Inner Pages */
.page-hero .magenta-semi-circle { width: 280px; height: 280px; }
.page-hero .magenta-semi-circle img { width: 75%; max-width: 200px; }

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-wrapper { 
        position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); 
        flex-direction: column; padding: 2rem 0; margin-left: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 1px solid #eee;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out; 
        justify-content: center;
    }
    .nav-wrapper.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links { flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; width: 100%; text-align: center; }
    .nav-links a { display: block; width: 100%; padding: 1rem 0; border-radius: 0; }
    .header-cta-group { margin-left: 0; }
    .hero, .page-hero { flex-direction: column; text-align: center; }
    .hero-left h1 { font-size: 3.2rem; }
    .hero-left p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .magenta-semi-circle { width: 300px; height: 300px; margin: 2rem auto; }
    .home-hero-image { max-width: 300px; margin: 2rem auto; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .split-section { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .social-links { justify-content: center; }
}
@media (max-width: 600px) {
    .hero-left h1 { font-size: 2.5rem; }
    .page-hero-left h2 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .masonry { column-count: 1; }
    .grid-2 { grid-template-columns: 1fr; }
}

/* Services & About Sections */
.about-section { padding: 5rem 2rem; text-align: center; }
.about-section h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-dark); }
.about-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: var(--text-main); }
.services-section { padding: 5rem 2rem; }
.services-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--text-dark); }
.services-section .subtitle { text-align: center; max-width: 800px; margin: -2rem auto 4rem; font-size: 1.2rem; color: var(--text-main); }

/* Services Grid Layout */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; margin-top: 2rem; }
.service-item { display: flex; flex-direction: column; align-items: center; background: var(--glass-bg); backdrop-filter: blur(12px); padding: 2rem; border-radius: 16px; border: var(--glass-border); transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: var(--glass-shadow); }
.service-item:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(230, 0, 76, 0.15); }
.service-item img { width: 140px; aspect-ratio: 1/1; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; border: 4px solid white; box-shadow: var(--glass-shadow); }
.service-item h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.service-item p { margin-bottom: 1.5rem; color: var(--text-main); }

/* Stats Section */
.stats-section { position: relative; background: rgba(230, 0, 76, 0.9); color: white; padding: 5rem 2rem; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-number { background: white; color: var(--primary); width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: bold; margin-bottom: 1.5rem; border-radius: 50%; box-shadow: var(--glass-shadow); }
.stat-box p { font-size: 1.1rem; font-weight: 500; }

/* Progress Bars (Why Choose Us) */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.blue-box { background: var(--glass-bg); backdrop-filter: blur(12px); color: var(--text-dark); padding: 3rem; border-radius: 16px; border: var(--glass-border); box-shadow: var(--glass-shadow); }
.blue-box h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.progress-bar-wrap { margin-bottom: 2rem; }
.progress-bar-wrap h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.progress-bar-wrap p { font-size: 0.95rem; margin-bottom: 1rem; color: var(--text-main); }
.progress-track { background: rgba(255,255,255,0.5); border: var(--glass-border); height: 24px; width: 100%; border-radius: 12px; overflow: hidden; }
.progress-fill { background: var(--primary); height: 100%; }

/* Cards */
.card { background: var(--glass-bg); backdrop-filter: blur(12px); border-radius: 16px; border: var(--glass-border); overflow: hidden; box-shadow: var(--glass-shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(230, 0, 76, 0.15); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 1.5rem; }
.card h3 { color: var(--text-dark); }
.card p { color: var(--text-main); }

/* Team Profile Cards */
.team-card { background: var(--glass-bg); backdrop-filter: blur(12px); border-radius: 16px; border: var(--glass-border); padding: 2.5rem 1.5rem; text-align: center; box-shadow: var(--glass-shadow); transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(139, 21, 40, 0.15); }
.team-card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; border: 4px solid #ffffff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.team-card h3 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1.4rem; }
.team-card p { color: var(--primary); font-size: 0.95rem; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* Masonry Gallery */
.masonry { column-count: 3; column-gap: 1.5rem; padding: 2rem 0; }
.masonry-item { break-inside: avoid; margin-bottom: 1.5rem; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.masonry-item img { width: 100%; display: block; border-radius: 8px; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-dark); font-weight: 500; }
.form-control { width: 100%; padding: 0.8rem; border: var(--glass-border); border-radius: 8px; background: rgba(255,255,255,0.6); color: var(--text-dark); backdrop-filter: blur(5px); }
.form-control:focus { border-color: var(--primary); background: white; outline: none; }
.btn-submit { background: var(--primary); color: white; border: none; padding: 1rem 2rem; cursor: pointer; border-radius: 8px; font-weight: bold; transition: all 0.3s ease; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(230, 0, 76, 0.2); }

/* Footer */
.footer { background: #111111; color: #cccccc; padding: 4rem 5% 1.5rem; margin-top: auto; border-top: 4px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: #ffffff; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.footer a { color: #aaaaaa; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: color 0.3s; }
.footer a:hover { color: var(--primary); }
.footer-input { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: none; border-radius: 4px; }
.footer .bottom-tag { text-align: center; border-top: 1px solid #333333; padding-top: 1.5rem; font-size: 0.9rem; color: #777777; }

/* Footer Social Links */
.social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; transition: all 0.3s ease; margin-bottom: 0 !important; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(139, 21, 40, 0.4); border-color: var(--primary); }
.social-links svg { width: 20px; height: 20px; fill: #ffffff; transition: fill 0.3s ease; }
.social-links a:hover svg { fill: white; }

/* Decorative Elements & Illustrations */
.relative-section { position: relative; z-index: 1; }
.bg-shape-1, .bg-shape-2, .bg-shape-3, .bg-shape-4, .dot-pattern { pointer-events: none; }
.bg-shape-1, .bg-shape-2 { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.4; animation: floatBlob 12s infinite alternate ease-in-out; }
.bg-shape-1 { width: 350px; height: 350px; background: var(--primary); top: -50px; left: -100px; }
.bg-shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: -50px; right: -50px; animation-delay: -6s; }

/* New Abstract Shapes */
.bg-shape-3 { position: absolute; width: 250px; height: 250px; border: 30px solid rgba(139, 21, 40, 0.05); border-radius: 50%; z-index: -1; animation: floatBlob 10s infinite alternate ease-in-out; }
.bg-shape-4 { position: absolute; width: 350px; height: 350px; background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), transparent); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; z-index: -1; animation: morphBlob 8s infinite alternate ease-in-out; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}
@keyframes morphBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translateY(0) rotate(0deg) scale(1); }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: translateY(30px) rotate(45deg) scale(1.05); }
}

/* SVG Dot Grid Pattern */
.dot-pattern { position: absolute; width: 150px; height: 150px; background-image: radial-gradient(var(--primary) 20%, transparent 20%); background-size: 20px 20px; opacity: 0.2; z-index: -1; }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}
.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}
@media (max-width: 600px) {
    .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .floating-whatsapp svg { width: 30px; height: 30px; }
}