:root {
    --bg-dark-green: #0a2617;
    --text-white: #ffffff;
    --btn-light-green: #cbf4cb;
    --btn-text: #051c10;
    --logo-bg: #1e5231;
    --logo-border: #2e7a49;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Video */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    filter: brightness(0.9) contrast(1.1); /* Slight enhancement */
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark-green);
    opacity: 0.75; /* Let the Pexels video show clearly */
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply; /* Helps the video blend beautifully with the dark green */
}

/* Header */
.header {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    background: #ffffff; /* White background to match the logo JPG */
    padding: 5px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: logoLoop 4s ease-in-out infinite; /* Continuous loop animation */
}

@keyframes logoLoop {
    0% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 35px rgba(107, 186, 112, 0.3); /* Subtle green glow at peak */
    }
    100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
}

.logo-container:hover {
    transform: scale(1.05);
}

.main-logo {
    height: 80px; /* Increased size for visibility */
    width: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 10%;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.btn-primary {
    display: inline-block;
    background-color: var(--btn-light-green);
    color: var(--btn-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 18px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.3s forwards;
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(203, 244, 203, 0.3);
}

/* Hero Visual Area */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.blocks-container {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.9) translateX(30px);
    animation: slideIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards, floatElement 6s ease-in-out infinite alternate 1.5s;
}

.sustainability-image {
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(203, 244, 203, 0.1);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.5s ease;
}

.sustainability-image:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 40px 70px rgba(0,0,0,0.7), 0 0 60px rgba(203, 244, 203, 0.2);
}

.blocks-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(203,244,203,0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

.factory-silhouette {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="50" width="20" height="50" fill="%23143822"/><rect x="30" y="30" width="20" height="70" fill="%23143822"/><rect x="50" y="60" width="20" height="40" fill="%23143822"/><polygon points="70,70 90,40 90,100 70,100" fill="%23143822"/></svg>') no-repeat bottom right;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    animation: slideUp 1.5s ease 0.8s forwards;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatElement {
    0% {
        transform: scale(1) translateY(0px) rotate(0deg);
    }
    100% {
        transform: scale(1.02) translateY(-15px) rotate(1deg);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.4;
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .sustainability-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 5%;
    }
    .hero-content {
        margin-bottom: 3rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-visual {
        justify-content: center;
    }
    .sustainability-image {
        max-width: 300px;
    }
    .header {
        top: 20px;
    }
}

/* CEO Section */
.ceo-section {
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    position: relative;
    z-index: 10;
}

.ceo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
}

.ceo-content {
    flex: 1;
}

.ceo-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #000000;
}

.ceo-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333333;
    max-width: 500px;
}

.ceo-name {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: right;
    max-width: 500px;
}

.ceo-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .ceo-container {
        flex-direction: column;
        text-align: center;
    }
    .ceo-text, .ceo-name {
        max-width: 100%;
        text-align: center;
    }
    .ceo-heading {
        font-size: 2.5rem;
    }
}

/* Scroll Animations */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Page 2 Specific Animations & Effects */
.ceo-image-wrapper {
    position: relative;
}

.image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(10, 38, 23, 0.08) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

.ceo-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.ceo-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.animate-float {
    animation: floatElement 6s ease-in-out infinite alternate;
}

/* Services Section (Page 3) */
.services-section {
    background-color: var(--bg-dark-green);
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.services-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -2;
}

.services-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-green);
    opacity: 0.85; /* Darken the video heavily to keep focus on cards */
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.services-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--btn-light-green); /* Light green to match the design */
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

/* Subtle background glow behind the heading */
.services-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(circle, rgba(203, 244, 203, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #ffffff;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border-radius: 8px; /* Softer radius for a premium look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Float animation strictly on hover */
.service-card:hover {
    animation: hoverFloat 1.5s ease-in-out infinite alternate;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 3px var(--btn-light-green); /* Upgraded border glow on hover */
    cursor: default;
}

@keyframes hoverFloat {
    0% { transform: translateY(-5px); }
    100% { transform: translateY(-20px); }
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    background-color: #2a3a30; 
    overflow: hidden;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-card:hover .card-image {
    transform: scale(1.05); /* Slight image zoom on hover */
}

.card-content {
    padding: 30px 25px;
    text-align: center;
    color: #051c10;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f9fdfa 100%);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #334d3d;
    font-weight: 500;
}

/* Why Us Section (Page 4) */
.why-us-section {
    background-color: #f4f7f5; /* Premium off-white theme */
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.why-us-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #051c10;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    perspective: 1000px; /* Enable 3D space */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

/* 3D Spinning Border Circle */
.circle-3d {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 30px;
    transform-style: preserve-3d;
    transition: transform 0.1s; /* Smooth 3D tilt tracking */
}

.circle-3d::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #1e5231, #69d469, #cbf4cb, #1e5231);
    animation: spinGradient 4s linear infinite;
    z-index: -1;
    box-shadow: 0 15px 35px rgba(30, 82, 49, 0.4);
}

.circle-content {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateZ(30px); /* Pops out in 3D */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: #1e5231;
    transition: transform 0.3s ease, color 0.3s ease;
}

.circle-3d:hover .feature-icon {
    transform: scale(1.15) translateZ(40px);
    color: #69d469;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #051c10;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a6654;
    font-weight: 500;
}

@keyframes spinGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1000px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-heading { font-size: 2.8rem; }
    .about-cta-text { font-size: 1.5rem; }
    .about-cta-btns { flex-direction: column; }
}

/* ======================= */
/* 3D About Us Button      */
/* ======================= */
.about-btn {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(203,244,203,0.12), rgba(30,82,49,0.35));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(203,244,203,0.2);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 800px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: btnFloat 3s ease-in-out infinite alternate, btnGlow 4s ease-in-out infinite alternate;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.about-btn:hover {
    background: linear-gradient(135deg, rgba(203,244,203,0.3), rgba(30,82,49,0.55));
    transform: perspective(800px) rotateX(-5deg) rotateY(10deg) translateY(-3px) scale(1.08);
    box-shadow: 0 15px 40px rgba(107,186,112,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    border-color: rgba(203,244,203,0.45);
}

.about-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(203,244,203,0.2);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.about-btn:hover .about-btn-icon {
    transform: rotateY(180deg);
    background: rgba(203,244,203,0.35);
}

.about-btn-text {
    transform: translateZ(10px);
}

@keyframes btnFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

@keyframes btnGlow {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); }
    100% { box-shadow: 0 8px 25px rgba(107,186,112,0.2), inset 0 1px 0 rgba(255,255,255,0.15); }
}

/* ======================= */
/* Section 5: About Us     */
/* ======================= */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.about-section {
    background-color: transparent; /* Removed gradient to show video */
    color: #e8e3dc;
    padding: 120px 8% 100px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-green);
    opacity: 0.88;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Animated floating orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.about-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107,186,112,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbDrift1 12s ease-in-out infinite alternate;
}

.about-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(203,244,203,0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: orbDrift2 15s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.2); }
}

@keyframes orbDrift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(1.15); }
}

.about-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image: radial-gradient(rgba(203,244,203,0.8) 1px, transparent 1px);
    background-size: 35px 35px;
    animation: panParticles 30s linear infinite;
    pointer-events: none;
}

@keyframes panParticles {
    0% { background-position: 0 0; }
    100% { background-position: 140px 140px; }
}

.about-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
    color: rgba(203,244,203,0.15);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 8px;
    line-height: 1;
}

.about-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--btn-light-green);
    margin-top: -30px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.about-tagline {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(203,244,203,0.5);
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 80px;
    perspective: 1200px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(203,244,203,0.08);
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.about-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(107,186,112,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about-card:hover .about-card-glow {
    opacity: 1;
}

.about-card:hover {
    border-color: rgba(203,244,203,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(107,186,112,0.08);
}

.about-card-icon {
    width: 36px;
    height: 36px;
    color: var(--btn-light-green);
    margin-bottom: 18px;
    display: block;
    transform: translateZ(25px);
    opacity: 0.8;
}

.about-card:hover .about-card-icon {
    opacity: 1;
}

.about-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    transform: translateZ(18px);
    letter-spacing: -0.3px;
}

.about-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    transform: translateZ(10px);
}

.about-card p strong {
    color: rgba(203,244,203,0.85);
}

.about-story-card {
    grid-column: span 2;
}

.about-diff-card {
    grid-column: span 2;
}

/* CTA inside About */
.about-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.about-cta-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 25px;
}

.about-cta-btn-primary,
.about-cta-btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.about-cta-btn-primary {
    background: linear-gradient(135deg, var(--btn-light-green), #6bba70);
    color: #0a2617;
    box-shadow: 0 8px 20px rgba(107,186,112,0.25);
}

.about-cta-btn-primary:hover {
    background: linear-gradient(135deg, #ffffff, #e8fde8);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(107,186,112,0.4);
}

.about-cta-btn-secondary {
    background: transparent;
    color: var(--btn-light-green);
    border: 1.5px solid rgba(203,244,203,0.3);
}

.about-cta-btn-secondary:hover {
    background: rgba(203,244,203,0.06);
    transform: translateY(-4px);
    border-color: rgba(203,244,203,0.5);
}
/* Section 6: Contact Us - Redesign */
.contact-section {
    min-height: 100vh;
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #05140a;
}

.contact-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, transparent 0%, #05140a 70%);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.contact-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
}

.contact-subtitle {
    font-size: 1.4rem;
    color: rgba(203, 244, 203, 0.8);
    margin-bottom: 60px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #6bba70;
}

.premium-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    color: #05140a;
    padding: 24px 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-contact-btn:hover {
    background: #cbf4cb;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 186, 112, 0.3);
}

.premium-contact-btn i {
    width: 24px;
    height: 24px;
}

.social-glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 40px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.whatsapp-tile {
    grid-column: span 2; /* Make WhatsApp span the full width of the second row */
}

.social-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-tile:hover {
    background: rgba(107, 186, 112, 0.15);
    border-color: rgba(107, 186, 112, 0.4);
    transform: translateY(-5px);
}

.whatsapp-tile:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.4);
}

.whatsapp-tile:hover i {
    color: #25d366;
}


.social-tile i {
    width: 28px;
    height: 28px;
    color: #6bba70;
}

.social-tile span {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
}

.contact-footer {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-title { font-size: 3rem; }
    .contact-card { padding: 40px; }
}


.about-cta-micro {
    color: rgba(255,255,255,0.3);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* ======================= */
/* Comprehensive Mobile UI */
/* ======================= */

/* Tablets & Small Laptops (Max 992px) */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-story-card, .about-diff-card {
        grid-column: span 2;
    }
}

/* Phones & Small Tablets (Max 768px) */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        top: 20px;
        right: 20px;
    }
    .main-logo {
        height: 50px; /* Smaller logo for mobile */
    }
    .logo-container {
        padding: 4px;
        border-radius: 8px;
    }
    .about-btn {
        top: 20px;
        left: 20px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .about-btn-icon {
        width: 24px;
        height: 24px;
    }

    /* General Padding */
    .hero-section {
        padding: 0 5%;
    }
    .ceo-section, .services-section, .why-us-section, .about-section, .contact-section {
        padding: 80px 5%;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
        margin-top: 60px; /* Push down below absolute buttons */
    }
    .btn-primary {
        padding: 15px 30px;
        font-size: 0.85rem;
    }

    /* CEO Section */
    .ceo-heading {
        font-size: 2.5rem;
    }
    .ceo-text {
        font-size: 1.1rem;
    }

    /* Services Section */
    .services-heading, .why-us-heading, .about-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .card-image-wrapper {
        height: 200px;
    }
    .service-card {
        width: 100%;
        max-width: 400px;
    }

    /* Why Us Section */
    .circle-3d {
        width: 200px;
        height: 200px;
    }
    .feature-item {
        margin-bottom: 40px;
    }

    /* About Section */
    .about-subheading {
        font-size: 1.8rem;
    }
    .about-tagline {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .about-story-card, .about-diff-card {
        grid-column: span 1;
    }
    .about-card {
        padding: 25px 20px;
    }
    .about-cta-text {
        font-size: 1.8rem;
    }
    .about-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .about-cta-btn-primary, .about-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Contact Section */
    .contact-title {
        font-size: 3rem;
    }
    .contact-subtitle {
        font-size: 1.2rem;
    }
    .contact-value {
        font-size: 1.4rem;
    }
    .social-glass-card {
        padding: 25px;
    }
    .social-grid {
        grid-template-columns: 1fr; /* Stack social tiles on phones */
    }
    .whatsapp-tile {
        grid-column: span 1;
    }
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* Small Phones (Max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .main-logo {
        height: 40px;
    }
    .ceo-heading {
        font-size: 2rem;
    }
    .services-heading, .why-us-heading, .about-heading {
        font-size: 2rem;
    }
    .contact-title {
        font-size: 2.5rem;
    }
    .premium-contact-btn {
        padding: 18px 25px;
        font-size: 1rem;
    }
}

