:root {
    --deep-navy: #003366;
    --royal-blue: #0073CF;
    --slate-grey: #4A4A4A;
    --electric-cyan: #00E5FF;
    --silver: #C0C0C0;
    --text-light: #F0F4F8;
    --text-dark: #333333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    /* Using Outfit for both for a modern look */
}

.loader-logo {
    height: 80px;
    width: auto;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep-navy);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 51, 102, 0.8);
    backdrop-filter: blur(10px);
    transition: padding 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--electric-cyan);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #004080, #001a33);
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://loremflickr.com/1920/1080/abstract,blue,technology,clean') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
    mix-blend-mode: overlay;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    /* JS will animate */
    transform: translateY(30px);
}

.highlight {
    color: var(--electric-cyan);
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 2rem;
    opacity: 0;
    /* JS will animate */
    transform: translateY(20px);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--royal-blue);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 115, 207, 0.4);
    opacity: 0;
    /* JS will animate */
    transform: translateY(20px);
}

.cta-button:hover {
    background: var(--electric-cyan);
    color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background: var(--slate-grey);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--electric-cyan);
}

.animate-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.stats-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--royal-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
    margin-top: 0.5rem;
}

.visual-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--deep-navy), var(--royal-blue));
    border: 2px solid var(--electric-cyan);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(0, 51, 102, 0.5);
}

/* Services Section */
.services-section {
    padding: 8rem 5%;
    background: #001a33;
}

.center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--electric-cyan);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--electric-cyan);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--silver);
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--electric-cyan);
    color: var(--electric-cyan);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    /* Matching card radius better */
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-btn:hover {
    background: var(--electric-cyan);
    color: var(--deep-navy);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: #e3e3e3;
}

/* Floating Actions Redesign */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.float-pill:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-float {
    background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
}

.float-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* New Footer */
.main-footer {
    background: #000c1a;
    padding: 4rem 5% 2rem;
    color: var(--silver);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--electric-cyan);
}

.footer-logo {
    font-size: 2rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    display: block;
    font-weight: 800;
}

.footer-links li {
    list-style: none;
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--silver);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--electric-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-icon:hover {
    background: var(--electric-cyan);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .floating-actions {
        right: 1rem;
        bottom: 1rem;
    }

    .float-pill span {
        display: none;
        /* Hide text on small screens if needed, or keep it */
    }

    .float-pill {
        padding: 12px;
        border-radius: 50%;
    }
}