/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #3f51b5;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #3f51b5, #2196f3);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #3f51b5;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #3f51b5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
/* BLUE + GOLD PREMIUM HERO THEME */
/* ULTRA PREMIUM HERO 2025 */
.hero-section {
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3a 50%, #16213e 100%),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=90') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.08;
    animation: noise 8s steps(10) infinite;
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    /* ... more steps for smooth grain movement */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 172, 254, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Premium Badge */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge-premium i {
    font-size: 20px;
    color: #ffd700;
}

/* Animated Title */
.hero-title-premium {
    font-family: 'Raleway', sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 25px;
    color: white;
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease forwards;
}

.line:nth-child(1) { animation-delay: 0.6s; }
.line:nth-child(2) { animation-delay: 0.9s; }
.line:nth-child(3) { animation-delay: 1.2s; }

.gradient-text {
    background: linear-gradient(90deg, #ffd700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes revealText {
    to { opacity: 1; transform: translateY(0); }
}

/* Tagline */
.hero-tagline-premium {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1.5s both;
}

/* Trust Badges - Glassmorphism */
.trust-badges {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    animation: fadeInUp 1s ease 1.8s both;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 160px;
    transition: all 0.4s ease;
}

.badge-glass:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.15);
    border-color: #ffd700;
}

.badge-glass i {
    font-size: 32px;
    color: #ffd700;
}

.badge-num {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.badge-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Buttons */
.hero-buttons-premium {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: fadeInUp 1s ease 2s both;
}

.cta-primary, .cta-secondary {
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a1a3a;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: white;
    color: #1a1a3a;
    border-color: white;
}

/* Floating Quote */
.floating-quote {
    margin-top: 50px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-left: 4px solid #ffd700;
    border-radius: 0 15px 15px 0;
    max-width: 500px;
    animation: fadeInUp 1s ease 2.3s both;
}

.floating-quote i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 22px;
}

.floating-quote p {
    font-style: italic;
    font-size: 18px;
    color: #ffd700;
}

/* Floating Security Icons */
.hero-floating-icons {
    position: relative;
    height: 500px;
}

.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffd700;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.float-icon:nth-child(1) { top: 10%; right: 20%; }
.float-icon:nth-child(2) { top: 30%; left: 10%; }
.float-icon:nth-child(3) { bottom: 20%; right: 30%; }
.float-icon:nth-child(4) { top: 60%; right: 5%; }
.float-icon:nth-child(5) { bottom: 40%; left: 15%; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-floating-icons { display: none; }
    .hero-title-premium { font-size: 52px; }
    .trust-badges { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-title-premium { font-size: 44px; }
    .hero-tagline-premium { font-size: 18px; }
    .hero-buttons-premium { flex-direction: column; align-items: center; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Styling */
.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
}

.highlight {
    color: #ffd700;
    text-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
}

.hero-tagline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Quote Box - Gold Accent */
.quote-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
    border-left: 5px solid #ffd700;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: -18px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #ffd700;
    color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #f8f9fa;
}

.quote-author {
    color: #ffd700;
    font-weight: 700;
    font-size: 17px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.cta-button:hover::before { left: 100%; }

.cta-button.primary {
    background: white;
    color: #1a237e;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffd700;
}

.cta-button.secondary:hover {
    background: #ffd700;
    color: #1a237e;
    transform: translateY(-4px);
}

/* Image Side */
.hero-image {
    position: relative;
}

.image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover .main-image {
    transform: scale(1.06);
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(48, 63, 159, 0.3), rgba(33, 150, 243, 0.2));
}

/* Floating Icons - Gold & Blue Gradient */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a237e;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    animation: floatElement 5s infinite ease-in-out;
}

.floating-element.element-1 { top: 10%; left: -20px; animation-delay: 0s; background: linear-gradient(135deg, #ffd700, #ffb300); }
.floating-element.element-2 { top: 45%; right: -25px; animation-delay: 1.2s; background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
.floating-element.element-3 { bottom: 15%; left: 10%; animation-delay: 2.4s; background: linear-gradient(135deg, #4facfe, #00f2fe); color: white; }
.floating-element.element-4 { bottom: 35%; right: 5%; animation-delay: 3.6s; background: linear-gradient(135deg, #43e97b, #38f9d7); color: white; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 15px;
    animation: bounce 2.5s infinite;
}

.mouse {
    width: 34px;
    height: 55px;
    border: 3px solid white;
    border-radius: 25px;
    margin: 0 auto 12px;
}

.wheel {
    width: 6px;
    height: 12px;
    background: #ffd700;
    border-radius: 3px;
    margin: 10px auto;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-title { font-size: 48px; }
    .hero-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .hero-tagline { font-size: 17px; }
    .quote-text { font-size: 20px; }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #3f51b5, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3f51b5, #2196f3);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #3f51b5, #2196f3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #2196f3, #3f51b5);
}

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    border: 2px solid #3f51b5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.service-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.service-features i {
    color: #4CAF50;
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f51b5;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(63, 81, 181, 0.3);
    animation: badgeFloat 3s infinite ease-in-out;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.text {
    font-size: 14px;
    opacity: 0.9;
}

.about-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #edf2f7;
    transform: translateX(10px);
}

.feature i {
    font-size: 24px;
    color: #3f51b5;
    margin-top: 5px;
}

.feature h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature p {
    color: #666;
    font-size: 14px;
}

/* Contact Section */
/* CONTACT SECTION - PERFECT ALIGNMENT & NO EXTRA SPACE */
.contact-section {
    padding: 120px 0 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(63,81,181,0.15);
}

.contact-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
}

.contact-details h3 {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-details h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p,
.contact-details a {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #3f51b5;
}

.map-container {
    position: relative;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    margin-top: 100px;
}

.map-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(63,81,181,0.92);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.map-overlay i {
    font-size: 48px;
    margin-bottom: 12px;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

/* Quick Enquiry Form - No Extra Bottom Space */
.contact-form-side {
    display: flex;
    justify-content: flex-start;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    width: 100%;
    border: 1px solid #e2e8f0;
}

.form-header h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 52px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3f51b5;
    box-shadow: 0 0 0 4px rgba(63,81,181,0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(63,81,181,0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #aaa;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    background: #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-col {
    animation: fadeInUp 0.6s ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
}

.footer-logo-text h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 2px;
}

.footer-logo-text p {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 2px;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #3f51b5, #2196f3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 12px;
    color: #3f51b5;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #3f51b5;
    font-size: 18px;
    margin-top: 3px;
}

.contact-item p,
.contact-item a {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.footer-bottom {
    background: #111;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-bottom strong {
    color: white;
}

.developer-note {
    margin-top: 10px;
    color: #666;
    font-size: 13px;
}

.developer-note i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3f51b5, #2196f3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(63, 81, 181, 0.3);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(63, 81, 181, 0.4);
}

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .contact-form {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
    }
}
/* Navigation Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* For smaller screens */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}


/* Premium Stats Section Styling */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

.stats-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
}

.stats-section .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 20px 20px 0 0;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin: 10px 0;
    line-height: 1;
}

.stat-number .plus,
.stat-number .small {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 10px 0;
}

.stat-desc {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-section { padding: 70px 15px; }
    .stats-section .section-title { font-size: 2.3rem; }
    .stat-number { font-size: 3.8rem; }
    .stat-number .plus, .stat-number .small { font-size: 2rem; }
    .stats-grid { gap: 25px; }
}
/* ================================
   FOOTER STYLES
================================== */

.footer {
    background: #1b1b1b;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Top row */
.footer-top {
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon i {
    font-size: 35px;
    color: #e74c3c;
}

.footer-logo-text h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

/* RIGHT SIDE SOCIAL ICONS */
.footer-right-social a {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    transition: .3s;
}

.footer-right-social a:hover {
    color: #e74c3c;
}

/* MAIN CONTENT GRID */
.footer-content {
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e74c3c;
}

/* Quick Links */
.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* Contact */
.footer-contact li {
    list-style: none;
    margin-bottom: 8px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: #e74c3c;
}

/* QR Code */
.qr-box img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

/* Bottom */
.footer-bottom {
    background: #111;
    text-align: center;
    padding: 15px 0;
    color: #aaa;
}

.footer-bottom strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Floating Social Bar */
.floating-social-bar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 12, 12, 0.4);
}

.social-icon.whatsapp { background: #25D366; }
.social-icon.phone { background: #007bff; }
.social-icon.back-top { background: linear-gradient(135deg, #3f51b5, #2196f3); opacity: 0; visibility: hidden; }
.social-icon.back-top.show { opacity: 1; visibility: visible; }
/* PROFESSIONAL HERO - MATCHES YOUR CURRENT BLUE + GOLD THEME */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(48, 63, 159, 0.98), rgba(33, 150, 243, 0.95)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,215,0,0.12), transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.3));
    pointer-events: none;
}

.hero-content-pro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255,215,0,0.3);
    margin-bottom: 25px;
}

.hero-badge i { font-size: 20px; }

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 20px 0;
}

.gold-text {
    color: #ffd700;
    text-shadow: 0 4px 20px rgba(255,215,0,0.4);
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(206, 57, 57, 0.95);
    line-height: 1.8;
    margin: 25px auto;
    max-width: 900px;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    min-width: 200px;
}

.trust-item i {
    font-size: 32px;
    color: #ffd700;
}

.trust-item strong {
    font-size: 20px;
    color: white;
}

.trust-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.btn-primary {
    background: white;
    color: #1a237e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1a237e;
}

/* Quote Box */
.quote-box {
    margin: 60px auto 0;
    max-width: 700px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-left: 5px solid #ffd700;
    border-radius: 0 16px 16px 0;
}

.quote-box i {
    color: #ffd700;
    font-size: 28px;
    margin-right: 15px;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    color: #ffd700;
    margin: 0;
    display: inline;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-down p { font-size: 14px; margin-top: 10px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 48px; }
    .trust-row { gap: 20px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 17px; }
    .trust-row { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #3f51b5;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #3f51b5, #2196f3);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #3f51b5;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #3f51b5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

/* PROFESSIONAL HERO - MATCHES YOUR CURRENT BLUE + GOLD THEME */

/* HERO SECTION – YOUR LOGO AS FULL BACKGROUND + ONLY 25% LIGHT DARK TINT */
.hero-section {
    min-height: 100vh;
    background:lavender, url('logo.jpeg') center/cover no-repeat fixed;   /* ← LOGO IS HERE */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* This is the 25% dark overlay you asked for (keeps text readable) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.25);   /* ← 25% dark tint */
    z-index: 1;
    pointer-events: none;
}

/* Make sure all your text stays on top of the overlay */
.hero-content-pro,
.hero-badge,
.hero-title,
.hero-subtitle,
.trust-row,
.hero-buttons,
.quote-box,
.scroll-down {
    position: relative;
    z-index: 2;
}

/* Remove any old dark blue overlays (very important!) */
.hero-bg,
.hero-overlay {
    display: none !important;
}
.hero-content-pro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffd700;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255,215,0,0.3);
    margin-bottom: 25px;
}

.hero-badge i { font-size: 20px; }

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1.15;
    margin: 20px 0;
}

.gold-text {
    color: #ffd700;
    text-shadow: 0 4px 20px rgba(255,215,0,0.4);
}

.hero-subtitle {
    font-size: 19px;
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin: 25px auto;
    max-width: 900px;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    min-width: 200px;
}

.trust-item i {
    font-size: 32px;
    color: #ffd700;
}

.trust-item strong {
    font-size: 20px;
    color: white;
}

.trust-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.btn-primary {
    background: white;
    color: #1a237e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1a237e;
}

/* Quote Box */
.quote-box {
    margin: 60px auto 0;
    max-width: 700px;
    padding: 30px;
    background: rgba(14, 13, 13, 0.1);
    backdrop-filter: blur(15px);
    border-left: 5px solid #ffd700;
    border-radius: 0 16px 16px 0;
}

.quote-box i {
    color: #ffd700;
    font-size: 28px;
    margin-right: 15px;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    color: #ffd700;
    margin: 0;
    display: inline;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-down p { font-size: 14px; margin-top: 10px; }

@media (max-width: 992px) {
    .hero-title { font-size: 48px; }
    .trust-row { gap: 20px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 17px; }
    .trust-row { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Add other services CSS if truncated in original; assuming it's here */

/* Contact Section */
/* Add contact CSS if needed; assuming it's in original but truncated */

/* Footer */
.footer {
    background: #1b1b1b;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-top {
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2267e7;
}

.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #196ce7;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #473ce7;
    font-size: 18px;
    margin-top: 3px;
}

.contact-item p,
.contact-item a {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 15px 0;
    color: #aaa;
}

.footer-bottom strong {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Floating Social Bar */
.floating-social-bar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.social-icon {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.social-icon.youtube { background: #FF0000; }
.social-icon.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.facebook { background: #1877F2; }
.social-icon.phone { background: #007bff; }
.social-icon.whatsapp { background: #25D366; }
.social-icon.back-top { background: linear-gradient(135deg, #3f51b5, #2196f3); opacity: 0; visibility: hidden; }
.social-icon.back-top.show { opacity: 1; visibility: visible; }

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .contact-form {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        justify-content: center;
    }
}


/* GALLERY SECTION - MATCHES YOUR DESIGN PERFECTLY */
.gallery-section {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.8), rgba(33, 150, 243, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: white;
}

/* LIGHTBOX - FULLSCREEN IMAGE */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#lightbox-img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #1a237e;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    background: white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -10px;
        right: -10px;
    }
}


/* PROFESSIONAL LIGHTBOX - IMAGE APP STYLE (Like Instagram/WhatsApp) */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    transition: transform 0.4s ease;
}

/* Professional Arrow Buttons - Large & Elegant */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-arrow:hover {
    background: #ffd700;
    color: #1a237e;
    border-color: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Close Button - Gold Circle */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #1a237e;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    z-index: 11;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

/* Image Counter - Bottom Center */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* INSURANCE SECTION - PREMIUM & PROFESSIONAL */
.insurance-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.insurance-banner {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.insurance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insurance-logo {
    text-align: center;
}

.insurance-brand-logo {
    width: 400px;
    height: auto;
    margin-bottom: 15px;
}

.tagline-small {
    font-size: 14px;
    color: #666;
    font-style: italic;
    letter-spacing: 1px;
}

.insurance-message h3 {
    font-size: 24px;
    color: #3f51b5;
    margin-bottom: 10px;
}

.insurance-message h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a237e;
    margin: 15px 0 20px;
}

.insurance-message p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.insurance-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-4px);
}

.insurance-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Insurance Gallery */
.insurance-gallery {
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 50px;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ins-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.ins-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 81, 181, 0.2);
}

.ins-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ins-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .insurance-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .insurance-message h2 {
        font-size: 36px;
    }
    .insurance-cta {
        justify-content: center;
    }
    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .insurance-banner {
        padding: 40px 20px;
    }
    .insurance-message h2 {
        font-size: 32px;
    }
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ins-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }
}
/* === SECURA SYSTEMS PREMIUM NAVBAR – FULLY RESPONSIVE === */
#navbar {
  position: fixed !important;
  top: 0; left: 0; width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  padding: 18px 0;
  font-family: 'Poppins', sans-serif;
}

#navbar.scrolled {
  padding: 12px 0;
  background: white !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-image {
  height: 55px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 40px;
}

.nav-link {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FFD700; /* Gold */
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: #FFD700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Yellow Call Button */
.top-call-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000 !important;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Mobile Menu */
@media (max-width: 992px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.6rem;
    padding: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideDown 0.6s forwards;
  }

  .nav-links.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
  .nav-links.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
  .nav-links.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
  .nav-links.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
  .nav-links.active .nav-link:nth-child(6) { animation-delay: 0.6s; }

  .top-call-btn {
    margin-top: 30px;
    font-size: 1.4rem;
    padding: 16px 40px;
    animation-delay: 0.8s !important;
  }

  @keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
  }
}

body.menu-open {
  overflow: hidden;
}
/* ===============================
   INSURANCE SECTION – MOBILE ONLY
   =============================== */
@media (max-width: 768px) {

  /* Section spacing */
  .insurance-section {
    padding: 40px 15px;
  }

  /* Header text */
  .section-title {
    font-size: 22px;
    text-align: center;
  }

  .section-subtitle {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }

  /* Main banner layout */
  .insurance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* Logo */
  .insurance-brand-logo {
    max-width: 140px;
    height: auto;
  }

  .tagline-small {
    font-size: 13px;
  }

  /* Message text */
  .insurance-message h3 {
    font-size: 16px;
  }

  .insurance-message h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .insurance-message p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CTA buttons – single row, smaller */
  .insurance-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .insurance-cta a {
    font-size: 13px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  /* Gallery title */
  .gallery-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Image grid – 2 per row */
  .insurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ins-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}


/* ===============================
   MOBILE FIX – TEXT & CTA BUTTONS
   =============================== */
@media (max-width: 768px) {

  /* Fix overall text alignment */
  .insurance-message {
    text-align: center;
    padding: 0 10px;
  }

  .insurance-message h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .insurance-message h2 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .insurance-message p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  /* CTA buttons – TWO LINES */
  .insurance-cta {
    display: flex;
    flex-direction: column;   /* 🔑 two lines */
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .insurance-cta a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 30px;
    white-space: nowrap;
  }

}
