/* ================================
   BODY OFFSET (TOPBAR + NAV)
================================ */
body{
    font-family: var(--body-font);
    padding-top: 20px;
    font-family: var(--body-font);
}

/* TOP BAR*/
.topbar{
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 13px;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
}

.topbar i{
    margin-right: 6px;
}

.topbar a{
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.topbar a:hover{
    color: var(--primary-color);
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icons a{
    margin-left: 15px;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover{
    transform: translateY(-2px);
}

/* NAVBAR*/
.navbar{
    background: var(--white-color);
    position: fixed;
    top: 40px; /* height of topbar */
    width: 100%;
    z-index: 1049;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img{
    height: 55px;
}

.navbar-nav .nav-link{
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 20px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover{
    color: var(--primary-color);
}

/* CTA BUTTON */
.btn-primary{
    background: var(--primary-color);
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover{
    background: #e85d00;
}

/*    HAMBURGER CUSTOM STYLE */
.custom-toggler{
    border: none;
}

.navbar-toggler-icon{
    background-image: none;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after{
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
}

.navbar-toggler-icon::before{
    top: -8px;
}

.navbar-toggler-icon::after{
    top: 8px;
}

/* ================================
   DROPDOWN STYLING
================================ */
.navbar .dropdown{
    position: relative;
}

.navbar-nav .dropdown-menu{
    left: 0;
    right: auto;
}

.dropdown-menu{
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.dropdown-item{
    padding: 10px 20px;
    transition: 0.3s ease;
}

.dropdown-item:hover{
    background: var(--primary-color);
    color: #fff;
}
/* ================================
   HERO SECTION
================================ */

.hero-section{
    position: relative;
    margin-top: 110px; /* Adjust based on header height */
}

.hero-slide{
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay{
      position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.20) 70%,
        rgba(0,0,0,0) 100%
    );
}
.hero-content{
    position: relative;
    color: #fff;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-logo{
    height: 90px;
}

.hero-content h1{
    font-size: 64px;        /* Bigger */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content h5{
    font-size: 22px;
    font-weight: 500;
}

.hero-tagline{
    font-size: 20px;
    margin-top: 15px;
}

.carousel-control-prev,
.carousel-control-next{
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size: 70% 70%;
}
.carousel-indicators{
    bottom: 30px;
}

.carousel-indicators [data-bs-target]{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    border: none;
    margin: 0 6px;
    transition: 0.3s ease;
}

.carousel-indicators .active{
    background-color: var(--primary-color);
    transform: scale(1.3);
}
/* BOOKING MODAL */

#bookingModal .modal-content{
    border-radius:12px;
    border:none;
    box-shadow:0 10px 35px rgba(0,0,0,0.2);
}

#bookingModal .modal-header{
    background:#0d6efd;
    color:#fff;
    border-top-left-radius:12px;
    border-top-right-radius:12px;
}

#bookingModal .modal-title{
    font-weight:600;
    font-size:20px;
}
.btn-primary-custom{
    background:#ffc107;
    border:none;
    color:#000;
    padding:12px;
    font-weight:600;
    border-radius:8px;
    transition:0.3s;
}

.btn-primary-custom:hover{
    background:#e0a800;
}
.modal.fade .modal-dialog{
    transform:translateY(-50px);
    transition:all 0.3s ease;
}

.modal.show .modal-dialog{
    transform:translateY(0);
}
/* FOOTER */

.footer-cta{
    background:#ffc107;
    padding:25px 0;
}

.footer-cta h4{
    font-weight:600;
    color:#000;
}

.footer-cta .btn{
    background:#0f172a;   /* dark navy */
    color:#fff;
    border:none;
    padding:10px 24px;
    font-weight:500;
    border-radius:6px;
    transition:0.3s;
}

.footer-cta .btn:hover{
    background:#1e293b;
}
.main-footer{
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 0;
}

.footer-logo{
    height: 60px;
}

.footer-title{
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a{
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-links a:hover{
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-about p{
    line-height: 1.7;
}

.footer-social a{
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s ease;
}

.footer-social a:hover{
    color: var(--primary-color);
}

/* Bottom Bar */
.footer-bottom{
    background: #0b1220;
    padding: 15px 0;
    margin-top: 40px;
}

.footer-bottom p{
    margin: 0;
    font-size: 14px;
}
.consultation-btn{
    padding:12px 25px;
    font-weight:600;
    border-radius:8px;
}
/* ABOUT SECTION */

.about-section{
    padding:80px 0;
    background:#f9f9f9;
}

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

.about-img img{
    width:80%;
    max-width:450px;
}

.about-content h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:15px;
    color:#555;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

.about-btn:hover{
    background:#000;
}
/* SERVICES */

.services-section{
padding:80px 0;
background:#f4f6f9;
text-align:center;
}

.section-title{
font-size:36px;
font-weight:700;
margin-bottom:50px;
}

/* SERVICE CARD */

.service-box{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.4s;
}

.service-box img{
width:100%;
height:200px;
object-fit:cover;
transition:0.4s;
}

.service-box h5{
padding:18px;
font-size:18px;
font-weight:600;
}

/* HOVER */

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-box:hover img{
transform:scale(1.08);
}
/*In House Team*/
.team-section{
padding:80px 0;
background:#f8f9fa;
}

.section-title{
font-weight:700;
margin-bottom:20px;
}

.team-box{
padding:30px;
margin-bottom:25px;
background:#fff;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.team-box:hover{
transform:translateY(-5px);
}

.team-icon{
font-size:40px;
margin-bottom:15px;
color:#ff7a00;
}
