
/* Add this to your style.css, preferably after the body styles */
body {
    overflow: visible !important;
    visibility: visible !important;
}

.preloader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --accent-color: #ffd700;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
   
}

html {
    scroll-behavior: smooth;
}



/* ========================================
   ANIMATED BACKGROUND
======================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.03;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation: float 15s infinite ease-in-out 2s;
}

.shape3 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: 30%;
    animation: float 18s infinite ease-in-out 4s;
}

.shape4 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 20%;
    animation: float 22s infinite ease-in-out 1s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

/* ========================================
   NAVIGATION
======================================== */
nav {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1600210492493-0946911123ea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glitch {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    animation: glitchAnimation 10s infinite;
}

@keyframes glitchAnimation {
    0%, 90%, 100% {
        transform: translate(0);
    }
    91% {
        transform: translate(-2px, 2px);
    }
    92% {
        transform: translate(2px, -2px);
    }
    93% {
        transform: translate(-2px, -2px);
    }
}

.fade-in-up {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s;
}

.cta-button:hover .button-shine {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1.5s forwards;
    opacity: 0;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 30px; }
}

/* ========================================
   SECTION STYLES
======================================== */
section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.title-number {
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    font-weight: bold;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto;
    animation: expandWidth 1s ease;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

/* ========================================
   ABOUT SECTION
======================================== */
#about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    color: #666;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    height: 450px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 60, 114, 0.2), rgba(42, 82, 152, 0.2));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-frame:hover::before {
    opacity: 1;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 250px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.1;
}

/* ========================================
   CONTACT SECTION
======================================== */
#contact {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact .section-title {
    color: white;
}

#contact .section-title::after {
    background: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.form-group:focus-within .input-border {
    width: 100%;
}

.submit-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.btn-arrow {
    transition: transform 0.3s;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(10px);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%) contrast(1.2);
    transition: filter 0.3s;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: #0d1b2a;
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: #1e3c72;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    animation: fadeInUp 0.8s ease forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-description {
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.3);
}

.footer-tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* ========================================
   REVEAL ANIMATION
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0s);
}

/* ========================================
   UTILITY ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 60, 114, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav ul.active {
        max-height: 300px;
    }

    nav ul li {
        padding: 0.8rem 2rem;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .fade-in-up {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .title-number {
        font-size: 3rem;
    }
    .hero {
        background-attachment: scroll;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .image-frame {
        height: 300px;
    }
}

/* ======================================== */
/* SERVICE CARD IMAGE LAYOUT - NEW */
/* ======================================== */
.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 280px;
}

/* Mobile: stack image on top */
@media (max-width: 768px) {
    .service-card {
        grid-template-columns: 1fr;
    }
    .service-image {
        height: 250px;
    }
    .service-content {
        padding: 2rem;
        text-align: center;
    }
}

/* ======================================== */
/* FULL FOOTER - NEW (matches your theme perfectly) */
/* ======================================== */
footer {
    background: #0d1b2a;
    color: white;
    position: relative;
    margin-top: 5rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: #1e3c72;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 5rem 0 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2.2rem;
}

.footer-description {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-icon {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

.footer-tagline {
    color: var(--accent-color);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* About Section Image Fix */
.about-image .image-frame {
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

.about-image .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image .image-frame:hover img {
    transform: scale(1.08);
}

.about-image .image-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(30,60,114,0.3), rgba(42,82,152,0.2));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.about-image .image-frame:hover::before {
    opacity: 1;
}

/* ==================== LOGO STYLING ==================== */
.logo-img {
    height: 55px;              /* Perfect size for navbar */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
}

/* Footer Logo */
.footer-logo-img {
    height: 70px;              /* Slightly larger in footer */
    width: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    .footer-logo-img {
        height: 60px;
    }
}

/* Optional: If you want the logo centered with text below (like your original design) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: bold;
}

/* Remove old emoji if you don't want text next to logo */
.logo a {
    display: flex;
    align-items: center;
}

/* ======================================== */
/* FLOATING SOCIAL BAR - FINAL VERSION     */
/* ======================================== */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.floating-social a,
.floating-social button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-social.visible a,
.floating-social.visible button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Back to Top - Gold */
.back-to-top {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    font-weight: bold;
}

.back-to-top:hover {
    transform: translateY(-10px) scale(1.12);
    box-shadow: 0 15px 35px rgba(255,215,0,0.5);
}

/* Social Colors */
.social-float.whatsapp   { background: #25D366; }
.social-float.facebook   { background: #1877F2; }
.social-float.instagram  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-float.youtube    { background: #FF0000; }
.social-float.linkedin   { background: #0A66C2; }

.social-float:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Staggered animation */
.floating-social.visible .back-to-top { transition-delay: 0.1s; }
.floating-social.visible .whatsapp     { transition-delay: 0.2s; }
.floating-social.visible .facebook     { transition-delay: 0.3s; }
.floating-social.visible .instagram    { transition-delay: 0.4s; }
.floating-social.visible .youtube      { transition-delay: 0.5s; }
.floating-social.visible .linkedin     { transition-delay: 0.6s; }
/* ======================================== */
/* PROFESSIONAL FOOTER - FINAL & CLEAN     */
/* ======================================== */
footer {
    background: #0d1b2a;
    color: white;
    position: relative;
    margin-top: auto;
    padding-top: 5rem;
}

.footer-wave svg {
    height: 100px;
    fill: #1e3c72;
    width: calc(100% + 1.3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding: 3rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1.8rem;
    font-size: 1.35rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

/* Bottom Section with Centered Logo */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Enhanced 3-Column Service Grid - Looks Premium */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Optional: Make cards slightly taller and more elegant */
.service-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18) !important;
}

.service-image img {
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 1.8rem 1.5rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
}

/* Clean Text-Only Service Cards - 3×5 Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    display: block;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}
/* Lightbox - Fully Working */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    cursor: default;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

.form-group { margin-bottom: 1.5rem; }
.box.form-control { padding: 1rem; border-radius: 8px; border: 1px solid #ccc; width: 100%; }
.captcha-group { align-items: center; }
.captcha-group small { font-size: 0.8rem; }
.submit-btn:disabled { opacity: 0.7; }


  .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Add this at the very end of your style.css file */
body, html {
    overflow: visible !important;
}

.preloader {
    display: none !important;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}
/* CONTACT ITEM BOX */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 35px;
    background: rgba(255,255,255,0.07);
    border-radius: 15px;
    margin-bottom: 25px;
    gap: 35px;
}

/* LEFT TITLE (Person, Location, Mail, Phone) */
.contact-item .contact-icon,
.contact-left {
    font-size: 32px;
    font-weight: 600;
    color: #ffde59;
    min-width: 160px;       /* This makes all titles align exactly */
}

/* RIGHT CONTENT */
.contact-item div {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.contact-item a {
    color: #ffde59;
    text-decoration: none;
}


/* Fix Contact Item Layout on Mobile */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;      /* stack items */
        align-items: flex-start;     /* align left */
        gap: 5px;                    /* reduce large spacing */
    }

    .contact-item .contact-icon {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .contact-item div {
        margin-left: 0 !important;   /* remove horizontal push */
    }
}


/* Footer Contact - Match Screenshot Layout */
@media (max-width: 768px) {

    .footer-column {
        width: 100%;
    }

    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .footer-icon {
        font-size: 22px;
        color: #ffd22c !important;   /* same yellow icon color as shown */
        min-width: 25px;             /* keeps icons aligned */
    }

    .footer-contact a,
    .footer-contact li {
        color: #ffffff !important;   /* clean white text like screenshot */
        font-size: 15px;
        text-decoration: none;
    }

    .footer-contact li a:hover {
        text-decoration: underline;
    }
}
/* Remove underline from floating icons */
.floating-social a {
    text-decoration: none !important;
}

/* Call icon color & style */
.social-float.call {
    background: #28a745;  /* green */
    color: #fff;
}

/* Hover fix (optional) */
.social-float.call:hover {
    background: #1e7e34;
    color: #fff;
}


