﻿/********** Template CSS **********/
:root {
    --primary: #C69F54;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}

.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: flex;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

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

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: var(--primary);
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../pics/c1.png) center center no-repeat;
     
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: radial-gradient(circle at center, rgba(85, 45, 10, 0.72), rgba(0, 0, 0, 0.7)), url(../pics/c3.png) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/offer.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img { 
    background: linear-gradient(rgba(66, 0, 0, 0.47), rgba(87, 39, 14, 0.68)), url(../pics/b1.png) center center no-repeat;
    background-size: cover;
}

/* Slider Container */
.clean-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000; /* prevents white flash */
}

/* Slides Wrapper */
.slides-wrapper {
    width: 100%;
}

/* Slide */
.slide {
    display: none;
    width: 100%;
    animation: smoothFade 0.9s ease-in-out;
}

.slide.active {
    display: block;
}

/* Image – FULL WIDTH, FULL IMAGE */
.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* FULL IMAGE ALWAYS */
}

/* Animation */
@keyframes smoothFade {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    font-size: 34px;
    padding: 6px 14px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.05);
}

.nav-btn.prev {
    left: 12px;
}

.nav-btn.next {
    right: 12px;
}

/* Mobile – SAME LOOK */
@media (max-width: 768px) {
    .nav-btn {
        font-size: 26px;
        padding: 5px 12px;
    }
}
/* Section */
.ticker-section {
    width: 100%;
    background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
    padding: 5px 0;
    overflow: hidden;
}

/* Wrapper */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Ticker */
.ticker {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: scrollLoop 45s linear infinite;
}

/* Faster on mobile */
@media (max-width: 768px) {
    .ticker {
        animation-duration: 30s;
    }
}

/* Pause on Hover */
.ticker-section:hover .ticker {
    animation-play-state: paused;
}

/* Text */
.ticker span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 70px;
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #feca57,
        #48dbfb,
        #1dd1a1,
        #ff6b6b
    );
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
}

/* Mobile text */
@media (max-width: 768px) {
    .ticker span {
        font-size: 15px;
        margin-right: 50px;
    }
}

/* 🔁 CONTINUOUS LOOP */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% }
    100% { background-position: 300% }
}

.terms-side-layout {
    background: #f8f9fa;
}

.terms-nav ul li {
    margin-bottom: 3px;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
}

.terms-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

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

.terms-block {
    margin-bottom: 30px;
}

.terms-block h5 {
    color: var(--primary);
    margin-bottom: 10px;
}

.terms-block ul {
    padding-left: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .terms-nav {
        margin-bottom: 20px;
    }
}
/* Mobile Login / Register Buttons */
@media (max-width: 991px) {

    .mobile-auth-buttons {
        display: flex !important;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 10px 15px 15px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-auth-buttons .btn {
        font-size: 15px;
        padding: 10px;
    }
}
