/*==================================================
SHIVAY CORPORATION
Main Stylesheet
==================================================*/


/*==================================================
GOOGLE FONT
==================================================*/

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#555;
    background:#ffffff;
    overflow-x:hidden;
}


/*==================================================
RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

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

section{
    position:relative;
}

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


/*==================================================
COLORS
==================================================

Primary Blue : #0B2C55
Gold         : #D4A437
Light BG     : #F8F9FA
Text         : #555555
Heading      : #1F2937

==================================================*/


/*==================================================
TYPOGRAPHY
==================================================*/

.section-subtitle{

    display:inline-block;

    color:#D4A437;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-size:14px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0B2C55;

    line-height:1.3;

    margin-bottom:25px;

}

.section-text{

    font-size:17px;

    color:#666;

    line-height:1.9;

}


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

.btn-primary-custom{

    display:inline-block;

    background:#D4A437;

    color:#fff;

    padding:14px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

    border:2px solid #D4A437;

}

.btn-primary-custom:hover{

    background:#b98c24;

    border-color:#b98c24;

    color:#fff;

}


.btn-outline-custom{

    display:inline-block;

    margin-left:15px;

    padding:14px 34px;

    border:2px solid #fff;

    color:#fff;

    border-radius:8px;

    font-weight:600;

}

.btn-outline-custom:hover{

    background:#fff;

    color:#0B2C55;

}


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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#ffffff;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.navbar{

    padding:15px 0;

}

.logo{

    height:65px;

    width:auto;

}

.navbar-nav .nav-link{

    color:#0B2C55;

    font-weight:500;

    margin:0 10px;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:#D4A437;

}

.navbar-nav .nav-link.active{

    color:#D4A437;

}

.btn-contact{

    background:#D4A437;

    color:#fff;

    padding:12px 28px;

    border-radius:8px;

    font-weight:600;

}

.btn-contact:hover{

    background:#0B2C55;

    color:#fff;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url('../images/home/hero-banner.jpg') center center/cover no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        rgba(11,44,85,.92) 0%,
        rgba(11,44,85,.82) 45%,
        rgba(11,44,85,.45) 100%
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#ffffff;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:500;

    margin-bottom:25px;

    border:1px solid rgba(255,255,255,.2);

}

.hero-title{

    color:#ffffff;

    font-size:62px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-title span{

    color:#D4A437;

}

.hero-description{

    color:#ffffff;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;

    opacity:.95;

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:15px 34px;

    border-radius:8px;

    font-weight:600;

}

.hero-scroll{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:3;

    color:#ffffff;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    animation:scrollMove 2s infinite;

}

.hero-scroll span{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero-scroll i{

    font-size:22px;

}

@keyframes scrollMove{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,10px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

/*==================================================
COMPANY INTRO
==================================================*/

.company-intro{

    background:#ffffff;

}

.intro-image{

    position:relative;

}

.intro-image img{

    width:100%;

    border-radius:20px;

    object-fit:cover;

    transition:.4s ease;

    box-shadow:0 15px 45px rgba(0,0,0,.12);

}

.intro-image img:hover{

    transform:scale(1.02);

}

.company-intro .section-title{

    max-width:600px;

}

.company-intro .section-text{

    margin-bottom:20px;

}

.company-intro .btn-primary-custom{

    margin-top:15px;

}

/*==================================================
HIGHLIGHTS
==================================================*/

.highlights{

    background:#f8f9fa;

}

.highlight-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:15px;

    height:100%;

    text-align:center;

    transition:.35s ease;

    border:1px solid #ececec;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.highlight-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0B2C55;

    display:flex;

    justify-content:center;

    align-items:center;

}

.highlight-icon i{

    color:#D4A437;

    font-size:34px;

}

.highlight-card h4{

    color:#0B2C55;

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;

}

.highlight-card p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
WHAT WE MANUFACTURE
==================================================*/

.products-overview{

    background:#ffffff;

}

.product-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.product-content{

    padding:30px;

}

.product-content h4{

    color:#0B2C55;

    font-size:24px;

    font-weight:600;

    margin-bottom:15px;

}

.product-content p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;

}

/*==================================================
WHY PARTNER WITH SHIVAY
==================================================*/

.why-choose{

    background:#f8f9fa;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    object-fit:cover;

    transition:.4s;

}

.why-image img:hover{

    transform:scale(1.02);

}

.why-list{

    margin-top:35px;

}

.why-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.why-item:last-child{

    margin-bottom:0;

}

.why-item i{

    color:#D4A437;

    font-size:24px;

    margin-top:3px;

}

.why-item h5{

    color:#0B2C55;

    font-size:21px;

    font-weight:600;

    margin-bottom:8px;

}

.why-item p{

    color:#666;

    margin-bottom:0;

    line-height:1.8;

}



/*==================================================
ABOUT PREVIEW
==================================================*/

.about-preview{

    background:#ffffff;

}

.about-preview-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.counter-box{

    background:#0B2C55;

    color:#ffffff;

    padding:30px 20px;

    text-align:center;

    border-radius:15px;

    height:100%;

    transition:.35s;

}

.counter-box:hover{

    background:#D4A437;

    transform:translateY(-6px);

}

.counter-box h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;

    color:#ffffff;

}

.counter-box p{

    margin:0;

    font-size:15px;

    line-height:1.6;

}



/*==================================================
SERVICES PREVIEW
==================================================*/

.services-preview{

    background:#f8f9fa;

}

.service-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-icon{

    width:70px;

    height:70px;

    background:#0B2C55;

    color:#D4A437;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.service-icon i{

    font-size:28px;

}

.service-content h4{

    color:#0B2C55;

    font-size:24px;

    font-weight:600;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.service-content a{

    color:#0B2C55;

    font-weight:600;

}

.service-content a:hover{

    color:#D4A437;

}

.service-content a i{

    margin-left:8px;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{

    position:relative;

    padding:100px 0;

    background:
        linear-gradient(rgba(11,44,85,.90), rgba(11,44,85,.90)),
        url('../images/home/cta-background.jpg') center center/cover no-repeat;

}

.cta-box{

    padding:70px 60px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.10);

}

.cta-title{

    color:#ffffff;

    font-size:44px;

    font-weight:700;

    margin:20px 0;

    line-height:1.3;

}

.cta-text{

    color:rgba(255,255,255,.90);

    font-size:18px;

    max-width:760px;

    margin:0 auto 40px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-light-custom{

    background:#D4A437;

    color:#ffffff;

    border:2px solid #D4A437;

    padding:15px 36px;

    border-radius:8px;

    font-weight:600;

}

.btn-light-custom:hover{

    background:#ffffff;

    color:#0B2C55;

    border-color:#ffffff;

}

.btn-outline-light-custom{

    border:2px solid #ffffff;

    color:#ffffff;

    padding:15px 36px;

    border-radius:8px;

    font-weight:600;

}

.btn-outline-light-custom:hover{

    background:#ffffff;

    color:#0B2C55;

}



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

.footer{

    background:#081f3d;

    color:#d6dbe4;

    padding-top:80px;

}

.footer-logo{

    max-width:220px;

    margin-bottom:25px;

}

.footer-about{

    line-height:1.9;

    margin-bottom:30px;

    color:#c7cfdb;

}

.footer h4{

    color:#ffffff;

    font-size:22px;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#c7cfdb;

    transition:.3s;

}

.footer-links a:hover{

    color:#D4A437;

    padding-left:6px;

}

.footer p{

    color:#c7cfdb;

    line-height:1.9;

}

.footer-email{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-email i{

    color:#D4A437;

    font-size:20px;

    margin-top:3px;

}

.footer-email a{

    color:#c7cfdb;

}

.footer-email a:hover{

    color:#D4A437;

}

.footer-divider{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.12);

}

.footer-bottom{

    padding-bottom:30px;

}

.footer-bottom p{

    margin:0;

    color:#aeb8c6;

    font-size:15px;

}



/*==================================================
UTILITY
==================================================*/

.rounded-4{

    border-radius:20px !important;

}

.shadow-lg{

    box-shadow:0 20px 45px rgba(0,0,0,.15) !important;
}

.text-gold{

    color:#D4A437;

}

.bg-light-section{

    background:#f8f9fa;
}

/*==================================================
HEADER SCROLL EFFECT
==================================================*/

.header{

    transition:all .35s ease;

}

.header.header-scrolled{

    background:#ffffff;

    padding:0;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.btn-primary-custom {
    background: #d8a12d;
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: #0f2d5c;
    color: #fff;
}

.btn-outline-primary-custom {
    border: 2px solid #0f2d5c;
    color: #0f2d5c;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-outline-primary-custom:hover {
    background: #0f2d5c;
    color: #fff;
}