/* =====================================
   SRI SASTHA ENTERPRISES WEBSITE
   PREMIUM ROYAL BLUE + GOLD THEME
===================================== */


/* GLOBAL SETTINGS */

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


body{

    font-family:'Segoe UI', Arial, sans-serif;
    line-height:1.6;
    color:#333;
    background:#ffffff;

}


html{

    scroll-behavior:smooth;

}



/* =====================================
   HEADER
===================================== */


.header{

    width:100%;
    background:#002366;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,0.2);

}



.logo-area{

    display:flex;
    align-items:center;

}

.logo{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-text h1{
    margin:0;
    color:#ffffff;
    font-size:38px;
}

.brand-text p{
    margin-top:5px;
    color:#d4af37;
    font-weight:bold;
}




/* =====================================
   NAVIGATION MENU
===================================== */


.navbar{

    display:flex;
    gap:25px;

}



.navbar a{

    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;

}



.navbar a:hover{

    color:#d4af37;

}





/* =====================================
   HERO SECTION
===================================== */


.hero{

    min-height:600px;

    background:

    linear-gradient(
    rgba(0,35,102,0.75),
    rgba(0,35,102,0.75)
    ),

    url("../images/banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

}



.hero-content{

    max-width:800px;

}



.hero-content h2{

    font-size:55px;
    font-weight:700;
    margin-bottom:20px;

}



.hero-content p{

    font-size:22px;
    margin-bottom:35px;

}




/* =====================================
   BUTTONS
===================================== */


.btn{

    display:inline-block;
    padding:14px 30px;
    margin:10px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;

}



.call-btn{

    background:#d4af37;
    color:#002366;

}



.whatsapp-btn{

    background:#25D366;
    color:white;

}



.btn:hover{

    transform:translateY(-5px);

}



/* =====================================
   SECTION COMMON STYLE
===================================== */


section{

    padding:70px 50px;

}



.section-title{

    text-align:center;
    margin-bottom:40px;

}



.section-title h2{

    color:#002366;
    font-size:36px;
    margin-bottom:10px;

}



.section-title p{

    color:#666;

}





/* =====================================
   ABOUT SECTION
===================================== */


.about-content{

    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;

}


.about-content p{

    margin-bottom:15px;

}

/* =====================================
   SERVICES SECTION
===================================== */


.services-section{

    background:#f8f9fc;

}



.service-container{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
	align-items:stretch;
    gap:25px;

}



.service-card{

    width:300px;

    background:#fff;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.10);

    padding:25px;

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);

}



.service-icon{

    font-size:22px;
    font-weight:bold;
    color:#d4af37;
    margin-bottom:15px;

}


.service-card h3{

    color:#002366;

    margin-bottom:15px;

    min-height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

}


.service-card p{

    color:#555;

}

/* =====================================
   GALLERY IMAGES
===================================== */

/* Gallery Image Box */

.gallery-image-box{

    width:100%;

    height:220px;

    overflow:hidden;

    border-radius:10px;

    margin-bottom:18px;

}


/* Gallery Image */

.gallery-image{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}




/* =====================================
   WHY CHOOSE US
===================================== */


.why-section{

    background:white;

}



.why-container{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;

}



.why-box{

    width:260px;
    padding:25px;

    background:#002366;

    color:white;

    text-align:center;

    border-radius:15px;

}



.why-box h3{

    color:#d4af37;
    margin-bottom:15px;

}





/* =====================================
   BUSINESS STATISTICS
===================================== */


.stats-section{

    background:#f8f9fc;

}



.stats-container{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;

}



.stat-box{

    width:220px;

    text-align:center;

    padding:30px;

    background:white;

    border-radius:15px;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.1);

}



.stat-box h3{

    font-size:45px;
    color:#002366;

}



.stat-box p{

    color:#555;

}





/* =====================================
   CONTACT SECTION
===================================== */


.contact-section{

    background:white;

}



.contact-container{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:25px;

}



.contact-box{

    width:260px;

    padding:25px;

    background:#f8f9fc;

    text-align:center;

    border-radius:15px;

    border-top:5px solid #d4af37;

}



.contact-box h3{

    color:#002366;

    margin-bottom:10px;

}



.contact-buttons{

    text-align:center;

    margin-top:30px;

}





/* =====================================
   FOOTER
===================================== */


.footer{

    background:#002366;

    color:white;

    text-align:center;

    padding:40px 20px;

}



.footer h3{

    color:#d4af37;

    font-size:28px;

}



.footer-links{

    margin:20px 0;

}



.footer-links a{

    color:white;

    text-decoration:none;

    margin:0 15px;

}



.footer-links a:hover{

    color:#d4af37;

}



.copyright{

    margin-top:20px;

    font-size:14px;

}





/* =====================================
   FLOATING WHATSAPP
===================================== */


.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    z-index:999;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.3);

}




/* =====================================
   MOBILE RESPONSIVE
===================================== */


@media(max-width:768px){



.header{

    flex-direction:column;

    padding:15px;

}



.navbar{

    margin-top:15px;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}



.logo-area{

    flex-direction:column;

    text-align:center;

}



.hero{

    min-height:500px;

}



.hero-content h2{

    font-size:35px;

}



.hero-content p{

    font-size:18px;

}



section{

    padding:45px 20px;

}



.service-card,
.why-box,
.contact-box,
.stat-box{

    width:90%;

}



.section-title h2{

    font-size:28px;

}



}

.footer-links{

    text-align:center;
    margin-bottom:15px;

}


.footer-links a{

    color:white;
    text-decoration:none;
    margin:0 10px;
    font-size:14px;

}


.footer-links a:hover{

    color:#d4af37;

}

