:root{
    --aqua:#00bcd4;
    --aqua-dark:#0097a7;
    --navy:#0f172a;
    --text:#263238;
    --muted:#607d8b;
    --light:#f8fafc;
    --white:#ffffff;
    --shadow:0 14px 35px rgba(15,23,42,.12);
    --radius:20px;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.text-justify{
    text-align:justify;
}

.object-cover{
    object-fit:cover;
}

.section-padding{
    padding:40px 0;
}

.bg-light-custom{
    background:var(--light);
}

/* Navbar */
.main-navbar{
    background:rgba(15,23,42,.96);
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.brand-logo{
    font-weight:800;
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff!important;
}

.brand-logo .material-icons{
    color:var(--aqua);
}

.navbar .nav-link{
    color:#e2e8f0!important;
    font-weight:600;
    margin:0 6px;
    transition:.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color:var(--aqua)!important;
}

.nav-btn{
    background:var(--aqua);
    color:#fff!important;
    border-radius:30px;
    padding:8px 18px!important;
}

.nav-btn:hover,
.nav-btn.active{
    background:var(--aqua-dark);
    color:#fff!important;
}

/* Home Hero Slider */
.hero-slider .carousel-item{
    height:88vh;
    min-height:520px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(15,23,42,.82),rgba(15,23,42,.35));
}

.hero-content{
    position:relative;
    z-index:2;
    height:88vh;
    min-height:520px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
    max-width:850px;
}

.hero-content h1{
    font-size:clamp(2.3rem,5vw,4.8rem);
    font-weight:900;
    line-height:1.1;
}

.hero-content p{
    font-size:1.2rem;
    max-width:680px;
    margin:20px 0 28px;
}

/* Buttons */
.btn-primary-custom{
    background:var(--aqua);
    color:#fff;
    border:0;
    border-radius:40px;
    padding:12px 28px;
    font-weight:700;
    box-shadow:0 10px 22px rgba(0,188,212,.28);
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--aqua-dark);
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline-custom{
    border:2px solid var(--aqua);
    color:var(--aqua-dark);
    border-radius:40px;
    padding:10px 24px;
    font-weight:700;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:var(--aqua);
    color:#fff;
    transform:translateY(-3px);
}

.btn-light-custom{
    background:#fff;
    color:var(--navy);
    border-radius:40px;
    padding:12px 28px;
    font-weight:800;
}

/* Common Sections */
.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 45px;
}

.section-title h2,
.content-card h2{
    color:var(--navy);
    font-weight:850;
}

.section-tag{
    display:inline-block;
    color:var(--aqua-dark);
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.rounded-img{
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

/* Cards */
.content-card{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:36px;
    height:100%;
    transition:.3s;
}

.content-card:hover{
    transform:translateY(-5px);
}

.service-card,
.feature-card{
    background:#fff;
    border-radius:var(--radius);
    padding:34px 28px;
    height:100%;
    box-shadow:0 8px 25px rgba(15,23,42,.08);
    transition:.35s;
    border:1px solid rgba(0,188,212,.08);
}

.service-card:hover,
.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.service-card .material-icons,
.feature-card .material-icons,
.icon-big{
    font-size:46px;
    color:var(--aqua);
    margin-bottom:15px;
}

.service-card h4,
.feature-card h5{
    color:var(--navy);
    font-weight:800;
}

/* Home Gallery */
.gallery-grid img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(15,23,42,.12);
    transition:.4s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.04);
    filter:brightness(.9);
}

/* CTA */
.cta-section{
    padding:90px 0;
    color:#fff;
    background:linear-gradient(135deg,rgba(0,188,212,.92),rgba(15,23,42,.94)),url("../images/hero2.jpg") center/cover fixed;
}

.cta-section h2{
    font-weight:900;
    font-size:clamp(2rem,4vw,3.2rem);
}

/* Gallery Banner */
.gallery-banner-image{
    position:relative;
    width:100%;
    height:420px;
    background:url("../images/i2.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.gallery-banner-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.gallery-banner-image .banner-overlay{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.gallery-banner-image h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:800;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

/* Gallery Page Cards */
.gallery-section{
    padding:80px 0;
    background:#fff;
}

.gallery-section .col-sm-6,
.gallery-section .col-lg-4{
    display:flex;
}

.gallery-card{
    width:100%;
    height:340px;
    background:#fff;
    border-radius:24px;
    padding:14px;
    border:1px solid rgba(0,188,212,0.18);
    box-shadow:0 12px 30px rgba(15,23,42,0.12);
    overflow:hidden;
    transition:.35s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,0.20);
}

.gallery-img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#eefcff;
    border-radius:18px;
    padding:8px;
    display:block;
    cursor:pointer;
}

/* Popup */
.gallery-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:9999;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.gallery-popup img{
    max-width:90%;
    max-height:85vh;
    object-fit:contain;
    border-radius:12px;
    background:#fff;
    padding:8px;
}

.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:42px;
    font-weight:bold;
    cursor:pointer;
}

.popup-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:var(--aqua);
    color:#fff;
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}

.prev-btn{
    left:30px;
}

.next-btn{
    right:30px;
}

/* Footer */
.main-footer{
    background:#101a2f;
    color:#cbd5e1;
    padding:70px 0 45px;
}

.main-footer h4,
.main-footer h5{
    color:#fff;
    font-weight:850;
    margin-bottom:20px;
}

.main-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.main-footer li{
    margin-bottom:10px;
}

.main-footer a{
    color:#cbd5e1;
    transition:.3s;
}

.main-footer a:hover{
    color:var(--aqua);
}

.main-footer p{
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.main-footer .material-icons{
    font-size:20px;
    color:var(--aqua);
}

/* Social Icons */
.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff!important;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.social-icons .facebook,
.social-icons a:has(.fa-facebook-f){
    background:#1877F2;
}

.social-icons .instagram,
.social-icons a:has(.fa-instagram){
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.social-icons .linkedin,
.social-icons a:has(.fa-linkedin-in){
    background:#0A66C2;
}

.social-icons a:hover{
    transform:translateY(-5px) scale(1.08);
}

.sub-footer{
    background:#07101f;
    color:#cbd5e1;
    padding:18px 0;
    text-align:center;
}

.sub-footer p{
    margin:0;
}

/* Responsive */
@media(max-width:991px){
    .section-padding{
        padding:65px 0;
    }

    .hero-slider .carousel-item,
    .hero-content{
        height:72vh;
        min-height:470px;
    }

    .content-card{
        padding:26px;
    }

    .gallery-card{
        height:310px;
    }
}

@media(max-width:768px){
    .hero-slider .carousel-item,
    .hero-content{
        height:70vh;
        min-height:450px;
    }

    .hero-content{
        text-align:center;
        align-items:center;
        padding:0 20px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .gallery-banner-image{
        height:300px;
    }

    .gallery-banner-image h1{
        font-size:2.2rem;
    }

    .gallery-card{
        height:280px;
    }
}

@media(max-width:576px){
    .gallery-card{
        height:260px;
    }

    .main-footer,
    .sub-footer{
        text-align:center;
    }

    .main-footer p{
        justify-content:center;
    }

    .social-icons{
        justify-content:center;
    }

    .gallery-grid img{
        height:190px;
    }
}
/* About Page Banner */
.about-banner{
    position:relative;
    width:100%;
    height:420px;
    background:url("../images/sru.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.about-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.about-banner .banner-overlay{
    position:relative;
    z-index:2;
    width:100%;
    padding:20px;
}

.about-banner h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:800;
    margin:0;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.about-content{
    max-width:900px;
    margin:0 auto;
}

.about-content p{
    text-align:justify;
    font-size:18px;
    line-height:1.9;
}

/* About Section */
.about-main-img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.about-heading{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin:15px 0 25px;
    line-height:1.2;
}

.about-content{
    max-width:100%;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    text-align:justify;
    margin-bottom:20px;
    color:#263238;
}

.section-tag{
    color:#0097a7;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

@media(max-width:991px){

    .about-main-img{
        height:350px;
    }

    .about-heading{
        font-size:34px;
        text-align:center;
    }

    .about-content{
        text-align:center;
    }

    .about-content p{
        text-align:left;
    }
}

@media(max-width:576px){

    .about-main-img{
        height:250px;
    }

    .about-heading{
        font-size:28px;
    }

    .about-content p{
        font-size:16px;
    }
}

/* Services Banner */
.service-banner-image{
    position:relative;
    width:100%;
    height:420px;
    background:url("../images/sbanner.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.service-banner-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.service-banner-image .banner-overlay{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-banner-image h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:15px;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.service-banner-image p{
    color:#fff;
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
}

/* Service Page Cards */
.service-img-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 14px 35px rgba(15,23,42,.12);
    overflow:hidden;
    height:100%;
    transition:.35s;
}

.service-img-card:hover{
    transform:translateY(-8px);
}

.service-img-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    object-position:center;
    display:block;
}

.service-img-card div{
    padding:28px;
}

.service-img-card .material-icons{
    font-size:42px;
    color:var(--aqua);
}

.service-img-card h4{
    font-weight:800;
    color:var(--navy);
    margin-top:10px;
}

/* Mobile Service Banner */
@media(max-width:768px){
    .service-banner-image{
        height:300px;
    }

    .service-banner-image h1{
        font-size:2.2rem;
    }

    .service-banner-image p{
        font-size:1rem;
        padding:0 15px;
    }

    .service-img-card img{
        height:220px;
    }
}


/* Contact Page Banner */
.contact-banner-image{
    position:relative;
    width:100%;
    height:420px;
    background:url("../images/cbanner.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.contact-banner-image .banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-banner-image .container{
    position:relative;
    z-index:2;
}

.contact-banner-image h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:15px;
    text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.contact-banner-image p{
    color:#fff;
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
}

/* Contact Page Cards */
.content-card p a{
    color:var(--aqua-dark);
    font-weight:600;
}

.quick-card{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:18px;
    padding:18px 20px;
    color:var(--navy);
    font-weight:800;
    box-shadow:0 8px 25px rgba(15,23,42,.08);
    transition:.3s;
}

.quick-card:hover{
    background:var(--aqua);
    color:#fff;
    transform:translateY(-5px);
}

/* Forms */
.form-control,
.form-select{
    border-radius:12px;
    padding:13px;
    border:1px solid #dbe7ee;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--aqua);
    box-shadow:0 0 0 .2rem rgba(0,188,212,.15);
}

/* Map */
.map-box iframe{
    width:100%;
    height:380px;
    border:0;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* WhatsApp Floating Icon */
.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    z-index:9999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
    background:#1ebe5d;
}

@media(max-width:768px){
    .contact-banner-image{
        height:300px;
    }

    .contact-banner-image h1{
        font-size:2.2rem;
    }

    .contact-banner-image p{
        font-size:1rem;
        padding:0 15px;
    }

    .map-box iframe{
        height:300px;
    }
}

.about-company-section{
padding:60px 0;
}

.about-image-wrapper{
position:relative;
}

.about-main-img{
width:100%;
height:480px;
object-fit:cover;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-badge{
position:absolute;
left:20px;
bottom:20px;
background:#00bcd4;
color:#fff;
padding:12px 20px;
border-radius:50px;
font-weight:700;
box-shadow:0 8px 20px rgba(0,188,212,.35);
}

.about-badge i{
margin-right:8px;
}

.about-tag{
display:inline-block;
color:#0097a7;
font-size:18px;
font-weight:800;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:15px;
}

.about-heading{
font-size:48px;
font-weight:800;
line-height:1.2;
color:#0f172a;
margin-bottom:20px;
}

.about-heading span{
color:#00bcd4;
}

.about-intro{
font-size:21px;
color:#455a64;
margin-bottom:20px;
line-height:1.8;
}

.about-content p{
font-size:17px;
line-height:1.9;
text-align:justify;
margin-bottom:15px;
}

.about-features{
margin-top:25px;
}

.feature-item{
margin-bottom:12px;
font-weight:600;
color:#263238;
}

.feature-item i{
color:#00bcd4;
margin-right:10px;
}

@media(max-width:991px){


.about-main-img{
    height:350px;
}

.about-heading{
    font-size:36px;
}


}

@media(max-width:576px){


.about-main-img{
    height:250px;
}

.about-heading{
    font-size:28px;
}

.about-intro{
    font-size:17px;
}


}

/* Contact Section Fix */

.content-card{
    height:auto !important;
    min-height:auto !important;
    padding:30px;
}

.content-card h2,
.content-card h3{
    margin-bottom:20px;
}

.content-card p{
    margin-bottom:15px;
}

.quick-card{
    padding:15px 20px;
}

.section-padding{
    padding:50px 0;
}

/* Remove extra space below left card */
.col-lg-5 .content-card{
    margin-bottom:0;
}

/* Mobile */
@media(max-width:991px){

    .content-card{
        padding:25px;
    }

    .section-padding{
        padding:40px 0;
    }
}
