/* CSS Variables defining the Brand Identity */
:root {
    /* Brand Colors */
    --deep-blue: #0A3D80;
    --deep-blue-light: #0C4E9C;
    --green: #11823B;
    --green-light: #189e49;
    --orange: #F39C12;
    --yellow: #F1C40F;
    
    /* Backgrounds & Text */
    --bg-light: #F4F7FB;
    --bg-white: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(10, 61, 128, 0.05);
    --shadow-md: 0 4px 15px rgba(10, 61, 128, 0.08);
    --shadow-lg: 0 10px 30px rgba(10, 61, 128, 0.12);
    --shadow-hover: 0 15px 40px rgba(10, 61, 128, 0.18);
    
    /* Transition */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--deep-blue);
    font-weight: 700;
    line-height: 1.2;
}

.text-blue { color: var(--deep-blue) !important; }
.text-green { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }

.bg-dark { background-color: var(--deep-blue) !important; color: white; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-blue { background-color: var(--deep-blue); }
.bg-green { background-color: var(--green); }
.bg-orange { background-color: var(--orange); }

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.mt-4 {
    margin-top: 2rem;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    border-radius: 2px;
}

.section-title.text-left h2::after {
    left: 0;
    transform: none;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--deep-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--deep-blue);
    color: var(--deep-blue);
}

.btn-outline:hover {
    background-color: var(--deep-blue);
    color: white;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn i {
    margin-left: 8px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    letter-spacing: 1px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text .highlight {
    color: var(--orange);
}

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

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--deep-blue);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--deep-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(243, 156, 18, 0.05), transparent 50%),
                radial-gradient(circle at left bottom, rgba(10, 61, 128, 0.05), transparent 50%);
    z-index: -1;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(10, 61, 128, 0.1);
    color: var(--deep-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--deep-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Glassmorphism Elements in Hero */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 61, 128, 0.1);
    padding: 30px;
}

.main-glass-card {
    width: 100%;
    max-width: 400px;
    z-index: 2;
}

.glass-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.bar {
    flex: 1;
    background-color: var(--deep-blue-light);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 { height: 40%; animation-delay: 0.1s; }
.bar-2 { height: 60%; animation-delay: 0.3s; }
.bar-3 { height: 80%; background-color: var(--green); animation-delay: 0.5s; }
.bar-4 { height: 100%; background-color: var(--orange); animation-delay: 0.7s; }

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.small-glass-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    z-index: 3;
}

.small-glass-card i {
    font-size: 2rem;
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 61, 128, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    transition: var(--transition);
}

.icon-alt {
    color: var(--green);
    background-color: rgba(17, 130, 59, 0.05);
}

.service-card:hover .service-icon {
    background-color: var(--deep-blue);
    color: white;
}

.service-card:hover .icon-alt {
    background-color: var(--green);
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
}

/* Why Choose Us */
.why-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-image, .why-content {
    flex: 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    transform: rotate(45deg);
    bottom: -100px;
    right: -50px;
    background: rgba(243, 156, 18, 0.2);
}

.trust-badge {
    text-align: center;
    color: white;
    z-index: 2;
}

.trust-badge h3 {
    font-size: 4rem;
    color: white;
    margin-bottom: 5px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(17, 130, 59, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--bg-light);
}

.step-icon-inner {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-blue);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    position: relative;
    top: 40px;
    z-index: 1;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    color: rgba(10, 61, 128, 0.05);
}

.about-para {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 30px;
    font-size: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.reviewer-info h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.contact-map {
    flex: 1.2;
    padding: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 45px;
    height: 45px;
    background-color: white;
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: #051A36;
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: pointer;
    background-color: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

/* Lightbox-style hover effect */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 61, 128, 0);
    transition: background-color 0.4s ease;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    background-color: rgba(10, 61, 128, 0.2);
}

.footer-brand p {
    color: #9CA3AF;
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-links h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: #9CA3AF;
}

.footer-links ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    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;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; }
    .step-connector { display: none; }
    .step { width: 50%; flex: none; margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .header-container { position: relative; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        opacity: 0;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .d-mobile-none { display: none; }
    .mobile-toggle { display: block; }

    .hero-container { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { justify-content: center; flex-direction: column; }
    
    .why-container, .contact-container { flex-direction: column; }
    
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    
    .contact-info { padding: 40px 20px; }
    .contact-item { justify-content: center; text-align: left; }
}

@media (max-width: 480px) {
    .section-title h2 { font-size: 2rem; }
    .step { width: 100%; }
    .about-text-box { padding: 30px 20px; }
}
