:root {
    --primary-blue: #1a4a76;
    --primary-dark-blue: #0b2b4a;
    --primary-green: #4CAF50;
    --primary-red: #E53935;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f8fbff;
    --border-color: #eeeeee;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(26, 74, 118, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark-blue);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background-color: #3d8c40;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

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

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

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

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

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Topbar */
.topbar {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.emergency-call {
    background-color: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.emergency-call:hover { color:white; background:#c62828;}

/* Header Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-icon {
    font-size: 32px;
    color: var(--primary-red);
}

.logo-text h1 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-dark-blue);
}

/* Footer */
.footer {
    background-color: #0b1a2a;
    color: #a0b2c6;
    padding: 70px 0 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-col h2 span {
    color: var(--primary-green);
}

.brand-col p {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

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

.footer-col ul li a {
    color: #a0b2c6;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 2px;
}

.footer-bottom {
    background-color: #06111d;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Base Page Padding */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: white;
}

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

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: var(--shadow-md);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    .navbar {
        top: 80px;
        height: calc(100vh - 80px);
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* Home Section Styles */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 43, 74, 0.9) 0%, rgba(26, 74, 118, 0.8) 100%), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2053&auto=format&fit=crop') no-repeat center center/cover;
    color: white;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-content h1 span {
    color: var(--primary-green);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1.4s ease;
}

.hero-btns .btn-outline {
    border-color: white;
    color: white;
}

.hero-btns .btn-outline:hover {
    background: white;
    color: var(--primary-dark-blue);
}

/* Features */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.feature-card:nth-child(2) {
    border-bottom-color: var(--primary-green);
}

.feature-card:nth-child(3) {
    border-bottom-color: var(--primary-red);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card:nth-child(2) i { color: var(--primary-green); }
.feature-card:nth-child(3) i { color: var(--primary-red); }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

/* About Home */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-img img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h4 {
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.check-list {
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-green);
    font-size: 20px;
}

/* Call to action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Testimonial */
.testimonial-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-box i.bxs-quote-alt-left {
    font-size: 60px;
    color: rgba(76, 175, 80, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content {
    font-size: 20px;
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark-blue);
    font-size: 18px;
}

.testimonial-role {
    color: var(--primary-green);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-home {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 40px;
    }
}
}
