:root {
    --primary-green: #00C853;
    --dark-green: #00695C;
    --primary-blue: #0277BD;
    --deep-blue: #01579B;
    --energy-yellow: #FFC107;
    --dark-bg: #0a1929;
    --text-light: #E8F5E9;
    --text-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1929 0%, #1a3a52 100%);
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeInClouds 2s ease-in forwards;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    animation: float 25s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 100px;
    z-index: -1;     
}

.cloud1 { width: 200px; height: 60px; top: 15%; left: 10%; animation-delay: 0s; }
.cloud1::before { width: 100px; height: 100px; top: -50px; left: 20px; }
.cloud1::after { width: 120px; height: 90px; top: -45px; right: 20px; }

.cloud2 { width: 250px; height: 70px; top: 25%; right: 15%; animation-delay: 3s; }
.cloud2::before { width: 110px; height: 110px; top: -55px; left: 35px; }
.cloud2::after { width: 130px; height: 100px; top: -50px; right: 30px; }

.cloud3 { width: 180px; height: 55px; top: 60%; left: 20%; animation-delay: 6s; }
.cloud3::before { width: 90px; height: 90px; top: -45px; left: 25px; }
.cloud3::after { width: 100px; height: 80px; top: -40px; right: 20px; }

.cloud4 { width: 160px; height: 50px; top: 70%; right: 25%; animation-delay: 9s; }
.cloud4::before { width: 80px; height: 80px; top: -40px; left: 20px; }
.cloud4::after { width: 90px; height: 75px; top: -38px; right: 15px; }

@keyframes fadeInClouds {
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(-10px); }
    50% { transform: translateY(-25px) translateX(0); }
    75% { transform: translateY(-15px) translateX(10px); }
}

/* Buildings */
.buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    opacity: 0;
    animation: fadeInBuildings 1.5s ease-in forwards;
    animation-delay: 2s;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 8%;
}

.building {
    background: linear-gradient(180deg, 
        rgba(2, 119, 189, 0.6), 
        rgba(1, 87, 155, 0.8), 
        rgba(0, 69, 116, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        -5px 0 15px rgba(0, 0, 0, 0.2);
}

.building::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 25px solid rgba(0, 200, 83, 0.5);
}

.building::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 5%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 18px,
            rgba(255, 200, 100, 0.4) 18px,
            rgba(255, 200, 100, 0.4) 20px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 12px,
            rgba(255, 200, 100, 0.4) 12px,
            rgba(255, 200, 100, 0.4) 14px
        );
}

.building1 { width: 80px; height: 200px; }
.building2 { width: 100px; height: 280px; }
.building3 { width: 70px; height: 180px; }
.building4 { width: 90px; height: 240px; }
.building5 { width: 85px; height: 220px; }

@keyframes fadeInBuildings {
    to { opacity: 1; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/background.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInBuildings 2s ease-in forwards;
    animation-delay: 0s;
}

/* White fog overlay to create misty effect */
.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(216, 226, 233, 0.3) 0%,
        rgba(255, 255, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.4) 60%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

/* Color Bar */
.color-bar {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 12px;
    display: flex;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 3.5s;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.color-segment {
    flex: 1;
    height: 100%;
}

.segment-green { background: var(--primary-green); }
.segment-blue { background: var(--primary-blue); }
.segment-yellow { background: var(--energy-yellow); }
.segment-dark-green { background: var(--dark-green); }

/* Logo */
.logo-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    animation-delay: 4.5s;
}

.logo-image {
    background: url("/assets/images/logo.png");
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Company Name */
.company-info {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    animation-delay: 6s;
}

.company-info h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(5, 247, 106, 0.546);
}

.company-full-name {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--primary-green);
    font-weight: 300;
}

/* Tagline */
.tagline {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 7.5s;
}

.tagline p {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.6);
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(45) 7.5s forwards;
    width: 0;
    margin: 0 auto;
    border-right: 3px solid var(--primary-green);
}

@keyframes typing {
    to { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 2s ease-in forwards, bounce 2s infinite;
    animation-delay: 9.5s;
    cursor: pointer;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2.5rem;
    color: var(--primary-green);
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Content Section */
.content {
    position: relative;
    min-height: 100vh;
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a2332 100%);
}

.content-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

        /* About Section */
        .about-section {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(2, 119, 189, 0.05));
            border-left: 5px solid var(--primary-green);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
        }

        .about-section p {
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: rgba(232, 245, 233, 0.9);
        }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 200, 83, 0.1);
            border: 1px solid rgba(0, 200, 83, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            font-family: 'Oswald', sans-serif;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        /* Services Grid */
        .services-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-item {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(2, 119, 189, 0.1), rgba(0, 200, 83, 0.05));
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .service-item:hover {
            transform: translateX(10px);
            border-left-width: 8px;
            border-left-color: var(--primary-green);
            box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
        }

        .service-item h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }

        .service-item p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(232, 245, 233, 0.85);
        }

        /* Contact Section */
        .contact-section {
            grid-column: 1 / -1;
            margin-top: 3rem;
            padding: 4rem;
            background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(2, 119, 189, 0.08));
            border: 2px solid rgba(0, 200, 83, 0.3);
            text-align: center;
        }

        .contact-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            color: var(--primary-green);
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

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

        .contact-item h4 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .contact-item p {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .cta-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
            color: white;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 200, 83, 0.5);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid rgba(0, 200, 83, 0.3);
        }

footer p {
    color: rgba(232, 245, 233, 0.6);
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .company-info h1 {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    .company-full-name {
        font-size: 1rem;
    }

    .tagline p {
        font-size: 1rem;
    }

    .color-bar {
        width: 90%;
        height: 8px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .logo-container {
        top: 25%;
    }

    .content-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-section {
        padding: 2rem;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-info {
        gap: 2rem;
    }

    .stats {
        flex-direction: column;
    }

    .about-section {
        padding: 2rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .company-info h1 {
        font-size: 4rem;
        letter-spacing: 8px;
    }

    .tagline p {
        font-size: 1.8rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .color-bar {
        width: 80%;
    }

    .content-inner {
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .company-info h1 {
        font-size: 5rem;
        letter-spacing: 4px;
        padding-bottom: 35px;
    }

    .company-full-name {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .tagline p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .color-bar {
        width: 95%;
        height: 8px;
        padding-bottom: 25;
    } 

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        width: 200px;
        height: 200px;
    }

    .logo-container {
        top: 22%;
    }

    .company-info {
        top: 50%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-section p,
    .service-item p {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-item h4 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .scroll-indicator::after {
        font-size: 2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .logo-container {
        top: 20%;
    }

    .company-info {
        top: 45%;
    }

    .tagline {
        bottom: 8%;
    }

    .company-info h1 {
        font-size: 1.5rem;
    }

    .tagline p {
        font-size: 1.2rem;
    }
}

/* Large Desktop */
@media (min-width: 1920px) {
    .content-inner {
        max-width: 1600px;
    }

    .company-info h1 {
        font-size: 6rem;
    }

    .tagline p {
        font-size: 2.5rem;
    }

    .logo-image {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .service-item h3 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 4rem;
    }
}