/* Color Palette & Variables */
:root {
    --brand-green: #00A54F;
    --brand-red: #f10707;
    --brand-black: #1A1A1A;
    --brand-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(255, 255, 255, 0.08);
    --shadow-hover: 0 15px 45px rgba(0, 165, 79, 0.2);
}

*{
    a{
        text-decoration: none;
        color: var(--brand-black);
    }
}

body { font-family: 'Segoe UI', Roboto, sans-serif; overflow-x: hidden; }

/* Navigation */
.top-bar { font-size: 0.9rem; background: var(--brand-white); color: var(--brand-black) !important; }
.navbar { transition: all 0.3s ease; }
.nav-link { font-weight: 500; text-transform: uppercase; margin: 0 10px; }
.nav-link:hover { color: var(--brand-green) !important; }

/* Hero Video */
.hero-video-container {
    height: 80vh;
    overflow: hidden;
    position: relative;
}
.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
}

h2{
        color: var(--brand-green);

}

/* Services Cards & Hover Effects */
.service-card {
    border: none;
    border-radius: 12px;
    background: var(--brand-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon-box {
    width: 70px; height: 70px;
    background: rgba(0, 165, 79, 0.2);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card h4{
    text-align: center;
    color:  var(--brand-red);
    font-weight: bold;
}

.service-card:hover .icon-box {
    background: var(--brand-green);
    color: white;
}

/* Why Choose Us List */
.why-list li {
    list-style: none;
    padding: 10px 0;
    font-weight: 500;
}
.why-list li i {
    color: var(--brand-green);
    margin-right: 10px;
}

/* Buttons */
.btn-orange {
    background: var(--brand-green);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    border: none;
    transition: 0.3s;
}
.btn-orange:hover {
    background: var(--brand-black);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 165, 79, 0.2);
}

.rdso-doc-link {
    display: inline-block;
    background: #164162;
    color: #fff !important;
    font-weight: 600;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    text-decoration: none !important;
    letter-spacing: 0.3px;
}


  /* Gallery */
        .gallery{
            display:grid;
            grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
            gap:20px;
            max-width:1200px;
            margin:auto;
        }

        .gallery img{
            width:100%;
            height:250px;
            object-fit:cover;
            border-radius:12px;
            cursor:pointer;
            transition:0.3s;
            box-shadow:0 5px 15px rgba(0,0,0,0.15);
        }

        .gallery img:hover{
            transform:scale(1.03);
        }

        /* Popup */
        .popup{
            position:fixed;
            top:0;
            left:0;
            width:100%;
            height:100%;
            background:rgba(0,0,0,0.9);
            display:none;
            justify-content:center;
            align-items:center;
            z-index:1000;
        }

        .popup img{
            max-width:85%;
            max-height:85%;
            border-radius:10px;
            animation:zoom 0.3s ease;
        }

        @keyframes zoom{
            from{
                transform:scale(0.7);
            }
            to{
                transform:scale(1);
            }
        }

        /* Buttons */
        .popup button{
            position:absolute;
            background:rgba(255,255,255,0.2);
            border:none;
            color:#fff;
            font-size:30px;
            width:55px;
            height:55px;
            border-radius:50%;
            cursor:pointer;
            transition:0.3s;
        }

        .popup button:hover{
            background:#fff;
            color:#000;
        }

        .close-btn{
            top:80px;
            right:25px;
            font-size:40px;
        }

        .prev-btn{
            left:30px;
            top:50%;
            transform:translateY(-50%);
        }

        .next-btn{
            right:30px;
            top:50%;
            transform:translateY(-50%);
        }

        @media(max-width:768px){
            .popup img{
                max-width:95%;
            }

            .popup button{
                width:45px;
                height:45px;
                font-size:24px;
            }
        }