@charset "utf-8";

/*==================================================
PT SHAMBHU MEDIA GROUP
MAIN CSS
==================================================*/

:root{
    --primary:#000;
    --secondary:#FCB100;
    --dark:#111111;
    --white:#ffffff;
    --light:#f8f9fa;
    --text:#666;
}

/*==================================================
GENERAL
==================================================*/

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    line-height:1.8;
    background:#fff;
    padding-top:100px;
    overflow-x:hidden;
}

.section{
    padding:90px 0;
}

.section-title{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-sub{
    max-width:760px;
    margin:auto;
    color:#777;
}

img{
    max-width:100%;
    height:auto;
}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#111;

    color:#fff;

    height:40px;

    line-height:40px;

    font-size:13px;

    z-index:1040;

}

.top-bar a{

    color:#fff;

}

.top-bar a:hover{

    color:var(--secondary);

}

.top-bar i{

    color:var(--secondary);

    margin-right:6px;

}

/*====================================
NAVBAR
====================================*/

.navbar-main{

top:38px;

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

backdrop-filter:blur(12px);

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

padding:14px 0;

transition:.35s;

}

.site-logo{

height:70px;

width:auto;

transition:.3s;

}

.navbar-nav .nav-item{

margin-left:18px;

}

.nav-link{

position:relative;

font-size:15px;

font-weight:600;

color:#0F4749 !important;

padding:10px 0 !important;

text-transform:uppercase;

letter-spacing:.5px;

transition:.3s;

}

.nav-link:before{

content:"";

position:absolute;

left:0;

bottom:0;

width:0;

height:3px;

background:#FCB100;

transition:.35s;

border-radius:20px;

}

.nav-link:hover{

color:#FCB100 !important;

}

.nav-link:hover:before,

.nav-link.active:before{

width:100%;

}

.nav-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 28px;

background:#FCB100;

color:#111;

border-radius:40px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.nav-btn:hover{

background:#0F4749;

color:#fff;

text-decoration:none;

transform:translateY(-2px);

box-shadow:0 12px 25px rgba(15,71,73,.25);

}

.navbar-toggler{

border:none;

outline:none;

font-size:24px;

color:#0F4749;

}

.navbar-toggler:focus{

outline:none;

box-shadow:none;

}

@media(max-width:991px){

.navbar-main{

padding:12px 0;

}

.site-logo{

height:58px;

}

.navbar-collapse{

background:#fff;

padding:20px;

margin-top:15px;

border-radius:15px;

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

}

.navbar-nav .nav-item{

margin:0;

}

.nav-link{

padding:12px 0 !important;

}

.nav-btn{

margin-top:15px;

width:100%;

}

}

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

.btn-primary{

    background:var(--secondary);

    border:2px solid var(--secondary);

    color:#111;

    border-radius:40px;

    padding:12px 34px;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

.btn-outline-dark{

    border:2px solid #fff;

    color:#fff;

    border-radius:40px;

    padding:12px 34px;

}

.btn-outline-dark:hover{

    background:var(--secondary);

    border-color:var(--secondary);

    color:#111;

}

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

.hero-modern{

position:relative;

height:100vh;

min-height:820px;

display:flex;

align-items:center;

background:url("images/banner.jpg") center center;

background-size:cover;

overflow:hidden;

}

.hero-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

rgba(15,71,73,.90),

rgba(15,71,73,.75),

rgba(0,0,0,.55)

);

}

.hero-modern .container{

position:relative;

z-index:2;

}

.hero-badge{

display:inline-flex;

align-items:center;

background:rgba(252,177,0,.18);

border:1px solid rgba(252,177,0,.35);

padding:12px 22px;

border-radius:40px;

color:#FCB100;

font-weight:700;

letter-spacing:1px;

margin-bottom:30px;

}

.hero-badge i{

margin-right:10px;

}

.hero-title{

font-size:72px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

.hero-title span{

color:#FCB100;

}

.hero-subtitle{

font-size:20px;

line-height:1.9;

color:#e7e7e7;

max-width:760px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

flex-wrap:wrap;

gap:18px;

}

.btn-hero{

padding:18px 40px;

background:#FCB100;

color:#111;

border-radius:50px;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.btn-hero i{

margin-left:12px;

}

.btn-hero:hover{

background:#fff;

color:#111;

text-decoration:none;

transform:translateY(-3px);

}

.btn-outline-hero{

padding:18px 40px;

border:2px solid #fff;

border-radius:50px;

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.btn-outline-hero:hover{

background:#fff;

color:#111;

text-decoration:none;

}

.hero-counter{

display:flex;

margin-top:70px;

gap:30px;

}

.counter-box{

padding-right:35px;

border-right:1px solid rgba(255,255,255,.25);

}

.counter-box:last-child{

border:none;

}

.counter-box h3{

font-size:42px;

font-weight:800;

color:#FCB100;

margin-bottom:5px;

}

.counter-box p{

color:#fff;

margin:0;

letter-spacing:1px;

}

.hero-wave{

position:absolute;

bottom:0;

left:0;

width:100%;

line-height:0;

}

.hero-wave svg{

width:100%;

height:90px;

display:block;

}

@media(max-width:991px){

.hero-modern{

min-height:700px;

}

.hero-title{

font-size:50px;

}

.hero-counter{

flex-wrap:wrap;

}

}

@media(max-width:768px){

.hero-modern{

text-align:center;

min-height:650px;

padding-top:80px;

}

.hero-title{

font-size:38px;

}

.hero-subtitle{

font-size:17px;

}

.hero-buttons{

justify-content:center;

}

.hero-counter{

justify-content:center;

gap:20px;

margin-top:50px;

}

.counter-box{

border:none;

padding:0;

}

}
/*==================================================
ABOUT
==================================================*/

.about-text{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.about-img-circle{

    width:520px;

    height:520px;

    margin:auto;

    overflow:hidden;

    border-radius:50%;

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

}

.about-img-circle img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-box{

    background:#fff;

    padding:40px;

    border-radius:18px;

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

    text-align:center;

    transition:.4s;

    height:100%;

}

.about-box:hover{

    transform:translateY(-10px);

}

.about-box i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:var(--secondary);

    color:var(--primary);

    font-size:34px;

    margin-bottom:25px;

}

.about-box h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.about-box p{

    color:#666;

}

/*==================================================
HERO TEXT
==================================================*/

.hero-title{
    font-size:62px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    max-width:760px;
}

.hero-subtitle{
    font-size:20px;
    color:rgba(255,255,255,.90);
    line-height:1.9;
    max-width:720px;
    margin-bottom:35px;
}

.hero-img{
    width:100%;
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/*==================================================
RESPONSIVE HERO
==================================================*/

@media (max-width:991px){

.hero-modern{
    min-height:700px;
    padding:90px 0;
}

.hero-title{
    font-size:46px;
}

.hero-subtitle{
    font-size:18px;
}

}

@media (max-width:767px){

.hero-modern{
    min-height:600px;
    text-align:center;
}

.hero-title{
    font-size:34px;
}

.hero-subtitle{
    font-size:16px;
    margin:auto auto 30px;
}

.hero-modern .btn{
    margin-bottom:12px;
}

}

/*==================================================
ABOUT IMAGE
==================================================*/

.about-img-circle{
    width:520px;
    height:520px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:10px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.about-img-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.about-img-circle:hover img{
    transform:scale(1.08);
}

@media (max-width:991px){

.about-img-circle{
    width:420px;
    height:420px;
    margin-top:40px;
}

}

@media (max-width:767px){

.about-img-circle{
    width:280px;
    height:280px;
}

}

/*==================================================
SCROLL TO TOP
==================================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#FCB100;
    color:#111;
    font-size:18px;
    cursor:pointer;
    display:none;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.35s;
}

#topBtn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-5px);
}

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

.about-section{

padding:100px 0;

background:#ffffff;

}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#FCB100;

color:#111;

font-size:13px;

font-weight:700;

border-radius:50px;

letter-spacing:1px;

}

.about-image-wrap{

position:relative;

overflow:hidden;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-image{

width:100%;

height:620px;

object-fit:cover;

transition:.5s;

}

.about-image:hover{

transform:scale(1.05);

}

.experience-box{

position:absolute;

left:30px;

bottom:30px;

background:#0F4749;

color:#fff;

padding:25px 35px;

border-radius:18px;

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

}

.experience-box h2{

margin:0;

font-size:34px;

font-weight:800;

color:#FCB100;

}

.experience-box p{

margin:0;

font-size:16px;

}

.about-text{

font-size:16px;

line-height:1.9;

color:#666;

margin-bottom:20px;

}

.feature-item{

margin-bottom:18px;

font-size:16px;

font-weight:600;

color:#333;

}

.feature-item i{

color:#FCB100;

margin-right:10px;

font-size:18px;

}

.btn-about{

display:inline-block;

margin-top:25px;

padding:15px 35px;

background:#0F4749;

color:#fff;

border-radius:50px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.btn-about:hover{

background:#FCB100;

color:#111;

text-decoration:none;

}

@media(max-width:991px){

.about-image{

height:420px;

}

.experience-box{

left:20px;

bottom:20px;

padding:18px 25px;

}

}

@media(max-width:767px){

.about-section{

padding:70px 0;

}

.about-image{

height:320px;

}

.experience-box{

position:relative;

left:auto;

bottom:auto;

margin:20px;

}

}

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

.site-footer{
    background:#000;
    color:#fff;
    padding:70px 0 25px;
}

.footer-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
}

.footer-col{
    flex:1;
    min-width:260px;
}

.footer-logo{
    max-width:220px;
    margin-bottom:25px;
}

.footer-title{
    color:#FCB100;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-text{
    color:#ddd;
    line-height:1.9;
    margin-bottom:15px;
}

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

.footer-links li{
    margin-bottom:12px;
}

.footer-links a,
.footer-text a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-text a:hover{
    color:#FCB100;
    padding-left:6px;
}

.footer-divider{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.footer-bottom{
    color:#ccc;
    text-align:center;
    font-size:14px;
}

@media(max-width:991px){

.footer-row{
    flex-direction:column;
}

.footer-col{
    width:100%;
}

}

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

.contact-section{

padding:100px 0;

background:#f8f9fb;

}

.contact-tag{

display:inline-block;

background:#FCB100;

color:#111;

padding:8px 22px;

border-radius:50px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

}

.contact-wrapper{

background:#fff;

border-radius:22px;

overflow:hidden;

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

}

.contact-info{

background:#000;

color:#fff;

padding:60px 45px;

height:100%;

}

.contact-info h3{

font-weight:700;

margin-bottom:15px;

}

.contact-intro{

opacity:.8;

margin-bottom:40px;

line-height:1.8;

}

.contact-item{

display:flex;

margin-bottom:30px;

align-items:flex-start;

}

.contact-item:last-child{

margin-bottom:0;

}

.contact-item .icon{

width:55px;

height:55px;

border-radius:50%;

background:#FCB100;

display:flex;

align-items:center;

justify-content:center;

color:#111;

font-size:20px;

margin-right:18px;

flex-shrink:0;

}

.contact-item h6{

font-weight:600;

margin-bottom:8px;

}

.contact-item p{

margin:0;

opacity:.9;

line-height:1.8;

}

.contact-item a{

color:#fff;

text-decoration:none;

opacity:.9;

}

.contact-item a:hover{

color:#FCB100;

}

.contact-form-box{

padding:60px;

background:#fff;

}

.contact-form-box h3{

font-weight:700;

color:#000;

}

.contact-form-box .form-control{

height:56px;

border-radius:12px;

border:1px solid #ddd;

padding:15px 20px;

box-shadow:none;

}

.contact-form-box textarea.form-control{

height:180px;

resize:none;

}

.contact-form-box .form-control:focus{

border-color:#FCB100;

box-shadow:0 0 0 4px rgba(252,177,0,.15);

}

.btn-send{

background:#FCB100;

color:#111;

padding:15px 38px;

border:none;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.btn-send i{

margin-right:10px;

}

.btn-send:hover{

background:#000;

color:#fff;

}

@media(max-width:991px){

.contact-info{

padding:40px;

}

.contact-form-box{

padding:40px;

}

}

@media(max-width:767px){

.contact-section{

padding:70px 0;

}

.contact-info{

padding:35px 25px;

}

.contact-form-box{

padding:35px 25px;

}

}


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

.services-section{

padding:100px 0;

background:#f7f9fb;

}

.service-card{

position:relative;

background:#fff;

padding:40px 35px;

border-radius:22px;

overflow:hidden;

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

transition:.35s;

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.service-card:before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:#FCB100;

transition:.35s;

}

.service-card:hover:before{

height:100%;

opacity:.04;

}

.service-icon{

width:75px;

height:75px;

background:#FCB100;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#0F4749;

margin-bottom:25px;

transition:.35s;

}

.service-card:hover .service-icon{

background:#0F4749;

color:#fff;

transform:rotate(-10deg);

}

.service-number{

position:absolute;

right:30px;

top:30px;

font-size:42px;

font-weight:800;

color:#eeeeee;

}

.service-card h4{

font-weight:700;

color:#0F4749;

margin-bottom:18px;

}

.service-card p{

color:#666;

line-height:1.9;

font-size:15px;

margin-bottom:25px;

}

.service-card a{

font-weight:700;

color:#FCB100;

text-decoration:none;

}

.service-card a i{

margin-left:8px;

transition:.3s;

}

.service-card:hover a i{

transform:translateX(6px);

}

@media(max-width:991px){

.service-card{

padding:35px 30px;

}

}

@media(max-width:768px){

.services-section{

padding:70px 0;

}

}
