/* ========================================
   GADI SECURITY - Main Stylesheet
   ======================================== */

/* Variables */
:root {
    --primary-blue: #1E4D8C;
    --light-blue: #5BA4E0;
    --dark-blue: #0D2B4E;
    --accent-red: #DC3545;
    --accent-red-dark: #C41E3A;
    --gold: #D2A837;
    --dark-gray: #212529;
    --medium-gray: #6C757D;
    --light-gray: #F8F9FA;
    --border-gray: #E9ECEF;
    --white: #FFFFFF;
    --black: #000000;

    --font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

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

.btn-primary:hover {
    background-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--dark-blue);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin: 0;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-desktop a {
    padding: 8px 16px;
    font-weight: 500;
    color: var(--dark-gray);
    border-radius: 4px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--accent-red);
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border-gray);
}

.nav-mobile a {
    padding: 12px 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-gray);
}

.nav-mobile a.active {
    color: var(--accent-red);
}

.nav-mobile .btn {
    margin-top: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
    background-color: #0D2B4E;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg,
        rgba(13, 43, 78, 0.85) 0%,
        rgba(30, 77, 140, 0.75) 30%,
        rgba(30, 77, 140, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%);
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 60px 0 80px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero .subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8972E 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(210, 168, 55, 0.4);
    z-index: 4;
    border: 4px solid rgba(255,255,255,0.2);
}

.hero-badge .number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.hero-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */
.certifications {
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    padding: 48px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.cert-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(30, 77, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon i {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.cert-item h4 {
    font-size: 0.9rem;
    margin: 0;
}

.cert-item p {
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin: 0;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(90deg, var(--gold) 0%, #E6C34D 100%);
    border-radius: 8px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-strip-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-strip-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-strip-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.cta-strip h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
}

.cta-strip p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.cta-strip .btn:hover {
    background-color: var(--dark-blue);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.service-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--primary-blue);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-red);
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    background-color: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath d='M100 20 C 60 40, 30 80, 20 140 C 15 170, 25 200, 50 220 Q 75 200, 100 160 Q 125 200, 150 220 C 175 200, 185 170, 180 140 C 170 80, 140 40, 100 20' stroke='white' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.stats::before {
    left: -100px;
}

.stats::after {
    right: -100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients {
    background-color: var(--light-gray);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.client-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.client-card:hover {
    box-shadow: var(--shadow-md);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.client-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.client-card h3 {
    font-size: 1rem;
    margin: 0;
}

.client-list {
    list-style: none;
}

.client-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.client-list li i {
    font-size: 0.7rem;
}

.client-more {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--medium-gray);
    padding-top: 8px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 16px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-box::before {
    background-color: var(--light-blue);
    top: -100px;
    left: -100px;
}

.cta-box::after {
    background-color: var(--gold);
    bottom: -100px;
    right: -100px;
}

.cta-box h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   PAGE BANNER
   ======================================== */
.page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    margin-top: 76px;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 77, 140, 0.95) 0%, rgba(13, 43, 78, 0.9) 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.mv-card {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    border-left: 4px solid var(--primary-blue);
}

.mv-card h3 {
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 77, 140, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--accent-red);
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-content p,
.info-content a {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.info-content a:hover {
    color: var(--accent-red);
}

.map-container {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-main {
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-gray);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 i {
    color: var(--accent-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 56px;
    height: 56px;
}

.footer-logo .logo-text h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin: 0;
}

.footer-logo .logo-text span {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.footer-badges .badge i {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--primary-blue);
    margin: 0;
}

.footer-address {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.address-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    color: var(--accent-red);
}

.footer-address p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-address p:first-child {
    font-weight: 600;
    color: var(--dark-gray);
}

.footer-address p:last-child {
    color: var(--medium-gray);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-red);
}

.map-link:hover {
    text-decoration: underline;
}

.footer-contact .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact .contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    color: var(--accent-red);
}

.footer-contact a {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

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

.social-links a:hover {
    background-color: var(--accent-red);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #E9ECEF;
    border-top: 1px solid var(--border-gray);
    padding: 16px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.footer-links a:hover {
    color: var(--accent-red);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-mobile.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 40px 0 60px;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(13, 43, 78, 0.8) 0%,
            rgba(30, 77, 140, 0.7) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    }

    .services-grid,
    .clients-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-content {
        flex-direction: column;
    }

    .page-banner-overlay {
        width: 100%;
        clip-path: none;
        padding-left: 5%;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}

/* ========================================
   NEW HOMEPAGE SECTIONS
   ======================================== */

/* Hero Enhancements */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

.hero-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    z-index: 10;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Section Label */
.section-label {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.text-blue {
    color: var(--primary-blue);
}

/* About Preview Section */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.exp-years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.about-content-home h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.about-content-home .lead {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.about-feature i {
    color: var(--accent-red);
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

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

.about-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-contact span {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: block;
}

.about-contact strong {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Services Section Enhancements */
.services-section {
    background: var(--light-gray);
}

.service-features-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-gray);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

/* Personnel Section */
.personnel-section {
    background: var(--white);
}

.personnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.personnel-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.personnel-card:hover {
    background: var(--white);
    border-color: var(--border-gray);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.personnel-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.personnel-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.personnel-card p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Stats Section Enhancements */
.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(210, 168, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stats-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
}

.stats-badge i {
    color: var(--gold);
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.why-features {
    margin-top: 32px;
}

.why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

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

.why-feature p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: var(--accent-red);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.why-choose-badge i {
    font-size: 1.5rem;
}

.why-choose-badge span {
    font-weight: 600;
}

/* Clients Section Enhancements */
.client-count {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.clients-cta {
    text-align: center;
    margin-top: 40px;
}

/* Leadership Section */
.leadership-section {
    background: var(--light-gray);
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.leader-image {
    flex-shrink: 0;
}

.leader-placeholder {
    width: 180px;
    height: 180px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.leader-placeholder i {
    font-size: 5rem;
    color: var(--white);
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.leader-title {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.leader-nepali {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.leader-quote {
    font-style: italic;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.leader-info > p:last-child {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Contact Strip */
.contact-strip {
    background: var(--primary-blue);
    padding: 48px 0;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.contact-strip-item {
    display: flex;
    gap: 16px;
    color: var(--white);
}

.contact-strip-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-strip-icon i {
    font-size: 1.25rem;
    color: var(--gold);
}

.contact-strip-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-strip-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* CTA Enhancements */
.cta-email {
    margin-top: 24px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* ========================================
   NEW RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        order: -1;
    }

    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }

    .personnel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-features-strip {
        gap: 24px;
    }

    .personnel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .contact-strip-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-badges {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-badge {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
    }

    .why-choose-image img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        left: -15px;
    }

    .exp-years {
        font-size: 2rem;
    }

    .personnel-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .service-features-strip {
        flex-direction: column;
        align-items: center;
    }
}
