/* Everest Metal - Bright Corporate Theme (minimal & cleaned) */
:root{
  --bg:#ffffff;
  --text:#222;
  --muted:#666;
  --accent:#1565c0; /* steel-blue accent */
  --card:#fafafa;
  --shadow: 0 6px 18px rgba(21,101,192,0.08);
  --radius:8px;
  --font-sans: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:var(--font-sans);background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased}
.container{max-width:1180px;margin:0 auto;padding:0 15px}

/* Top bar */
.top-bar{background:#ff9700;border-bottom:1px solid #eee;font-size:14px}
.top-bar .top-left,.top-bar .top-right{display:inline-block;padding:8px 0;color:var(--muted)}
.top-bar .top-right{float:right}

/* navbar */
.navbar-shadow{box-shadow:var(--shadow);border-bottom-left-radius:0;border-bottom-right-radius:0}
.brand-logo{height:46px}

/* hero - uses CSS background images that were previously defined in original CSS */
.hero{background:url('../images/banner1.jpg') center/cover no-repeat;padding:80px 0;color:#fff}
.hero .hero-inner{background:rgba(0,0,0,0.25);padding:40px;border-radius:10px;display:inline-block}
.hero h1{font-size:48px;margin:0 0 10px;font-weight:600;letter-spacing:2px}
.hero .lead{opacity:0.95;margin-bottom:18px}

/* About */
.about{padding:36px 0;font-size:15px;line-height:1.65}
.about h4{color:var(--accent);font-weight:600}

/* CTA */
.cta{background:linear-gradient(90deg, rgba(21,101,192,0.12), rgba(21,101,192,0.06));padding:34px 0;margin-top:20px;text-align:center;border-radius:6px}

/* testimonial area - keep ser-one / ser-two / ser-three images as requested */
.ser-one{background:url('../images/aa1.jpg') center/cover no-repeat;height:260px;border-radius:8px;position:relative;overflow:hidden}
.ser-two{background:url('../images/aa2.jpg') center/cover no-repeat;height:260px;border-radius:8px}
.ser-three{background:url('../images/aa3.jpg') center/cover no-repeat;height:260px;border-radius:8px}
.testimonial .overlay-text{position:absolute;left:20px;bottom:20px;color:#fff;background:rgba(0,0,0,0.45);padding:14px;border-radius:6px;max-width:80%}

/* stat cards */
.card{border:1px solid #eee;box-shadow:none;border-radius:8px}
.stat-number{color:var(--accent);font-weight:700;text-align:center}

/* brands */
.brands{padding:40px 0;text-align:center}
.brand-logos img{max-height:60px;margin:0 18px;opacity:0.9;vertical-align:middle}

/* footer */
.site-footer{background:#111827;color:#fff;padding:36px 0;margin-top:40px}
.site-footer a{color:#fff}
.site-footer .footer-about h5{font-weight:700}

/* small helpers & responsiveness */
@media(max-width:767px){
  .hero{padding:48px 0}
  .hero h1{font-size:30px}
  .brand-logos img{max-height:48px;margin:8px}
  .top-bar .top-right{float:none;text-align:right}
}

/*Slider controls*/
/* FULL WIDTH */
#homeCarousel .carousel-item img {
  height: 40%;
  object-fit: cover;
}

/* 3D Flip Animation */
/* Full banner height */


/* Custom Nav Icons */
.carousel-nav-icon {
    font-size: 32px;
    padding: 12px 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #222;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease-in-out;
}

.carousel-nav-icon:hover {
    background: #0066CC;
    color: #fff;
    transform: scale(1.1);
}
/********** 3D Spin Flip Enhanced Animation **********/
.flip-carousel .carousel-inner {
    perspective: 2500px;
}

.flip-carousel .carousel-item {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
    backface-visibility: hidden;
    transition:
        transform 1.2s cubic-bezier(0.42, 0, 0.3, 1.2),
        opacity 0.9s ease-in-out;
}

.flip-carousel .carousel-item-next.carousel-item-start {
    transform: rotateY(0deg) scale(0.9);
    opacity: 0;
}

.flip-carousel .carousel-item-prev.carousel-item-end {
    transform: rotateY(180deg) scale(0.9);
    opacity: 0;
}

.flip-carousel .carousel-item.active {
    transform: rotateY(0deg) scale(1.05);
    opacity: 1;
}


/* Hide the default background icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Custom icon styles */
.carousel-control-prev i,
.carousel-control-next i {
    font-size: 22px;
    color: #222;
    transition: 0.3s;
}

/* Button base */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease-in-out, background .3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Show only on hover */
#homeCarousel:hover .carousel-control-prev,
#homeCarousel:hover .carousel-control-next {
    opacity: 1;
}

/* Hover animation */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #007bff;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: #fff;
    transform: scale(1.2);
}


/* Bullet Styling */
.custom-indicators {
    position: absolute;
    bottom: 20px; /* Adjust position on banner image */
    left: 35%;
    transform: translateX(-50%);
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    background: #ffffffcc;
    border-radius: 40%;
    margin: 0 6px;
    border: none;
    transition: 0.3s ease-in-out;
}

.custom-indicators button:hover {
    background: #007bff;
    transform: scale(1.25);
}

.custom-indicators .active {
    background: #007bff;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
}


/*border shadow*/
.about_border{
  border: 6px solid #ffffff; /* White clean border */
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  overflow: hidden; /* Smooth rounded edges */
  margin-top: 0;
  align-content: center;
}
.about_border p{
  margin-left: 2em;
  margin-right: 2em;
}

.bg-section {
    background-image: url('../images/booking.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.10);
}
.bg-top-section {
    background-image: url('../images/bgtop.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.10);
}

.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-link:hover {
    background: #005fcc;
    box-shadow: 0 6px 18px rgba(0,123,255,0.3);
    color: #fff !important;
}

.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #007bff;
    color: #007bff !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-outline:hover {
    background: #007bff;
    color: #ffffff !important;
}


.testimonial-section {
    background: #0d2d62; /* Your theme dark blue */
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    max-width: 650px;
    margin: auto;
}

.testimonial-img {
 
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid #0d2d62;
    
}

.testimonial-text {
    color: #000;
    font-size: 17px;
    line-height: 1.6;
}

/* Indicators */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.carousel-indicators .active {
    background: #ffcc00;
}

/* Hide controls until hover */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
}

.logo-slide-track {
  display: flex;
  width: calc(200px * 10); /* 10 logos total */
  animation: scroll 20s linear infinite;
}

.logo-slide {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
 
  transition: 0.3s;
}

.logo-slide img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 5)); } /* move 5 logos */
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

.whatsapp-icon {
    color: #fff;
}

.btn-custom {
    background: #1f1f1f;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1f1f1f;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.btn-custom:hover {
    background: transparent;
    color: #1f1f1f !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
