:root {
  --primary-dark: #1a3009;
  --primary-light: #2d5016;
  --accent-gold: #fca311;
  --dark-bg: #1a1a1a;
  --forest-green: #0d4620;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  color: #333 !important;
}

.nav-link:hover {
  color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgb(9 10 9 / 55%) 0%, rgb(15 16 15 / 67%) 100%);
    z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Buttons */
.btn-warning {
  background-color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: #1a1a1a !important;
}

.btn-warning:hover {
  background-color: #e59200 !important;
  border-color: #e59200 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.btn-outline-dark {
  border: 2px solid #333;
}

.btn-outline-dark:hover {
  background-color: #333;
  color: white;
  transform: translateY(-2px);
}

/* Stats Section */
.display-5 {
  font-weight: 700;
  color: var(--accent-gold);
}

/* Partner Logos */
.partner-logo {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Expansion Cards */
.expansion-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 300px;
  transition: all 0.3s ease;
}

.expansion-card:hover {
  transform: scale(1.03);
}

.expansion-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  transition: all 0.3s ease;
}

.expansion-card:hover .expansion-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

/* Cards */
.card {
  transition: all 0.3s ease;
  border-radius: 8px;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

.card:hover {
	transform: translateY(-25px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  
}

.card-title {
  color: #1a1a1a;
}

/* Story Thumbnails */
.story-thumbnail {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.story-thumbnail:hover {
  transform: scale(1.05);
}

.story-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(252, 163, 17, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.story-thumbnail:hover::before {
  opacity: 1;
}

/* Footer */
.text-light-emphasis {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-light-emphasis a:hover {
  color: var(--accent-gold) !important;
}

 

.overlay{
    position:absolute;
    inset:0;
    background:rgba(18,60,20,0.65);
}

.content{
    position:absolute;
    top:50%;
    left:70px;
    transform:translateY(-50%);
    color:#fff;
    max-width:900px;
    z-index:2;
}

.content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.content h2{
    font-size:60px;
    font-weight:700;
    margin-bottom:25px;
}

.content p{
    font-size:28px;
    margin-bottom:35px;
}

.btn {
    display: inline-block;
    background: #f9a602;
    color: #111;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

.btn:hover{
    background:#ffb300;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:10;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
    z-index:10;
}

.dot{
    display:inline-block;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    opacity:0.4;
    margin:0 5px;
    cursor:pointer;
}

.dot.active{
    opacity:1;
    background:#f9a602;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    top: 40% !important;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
.w-100 {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
}

/* Dark Green Overlay */
.brandSwiper {
    width: 100%;
    padding: 40px 0;
}

.brand-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.brand-box img {
    width: 100%;
    max-width: 220px;
    height: 160px;
    object-fit: contain;

    /* grayscale default */
    filter: grayscale(100%);
    transition: 0.4s ease;

    opacity: 0.7;
}

/* hover → color */
.brand-box img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}



/*Slide*/

.blog .carousel-indicators {
	left: 0;
	top: auto;
    bottom: -40px;

}

/* The colour of the indicators */
.blog .carousel-indicators li {
    background: #a3a3a3;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.blog .carousel-indicators .active {
background: #707070;
}

.mediasliderimage{
   display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #333;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color:#1BBD36;
}
.eckcon:hover .overlay {
  opacity: 1;
}
.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}



.logo-marquee {
    overflow: hidden;
    width: 100%;
     padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* pause on hover */
.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 120px;
    width: 180px;
    object-fit: contain;

    filter: grayscale(100%);
    transition: 0.3s;
}

.marquee-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*Slide*/

.hero-overlay { 
   /*background: linear-gradient(135deg, rgba(26, 48, 9, 0.85) 0%, rgba(45, 80, 22, 0.85) 100%),url(<?php echo $bn_path;?>) no-repeat; */
   background: linear-gradient(135deg, rgba(26, 48, 9, 0.85) 0%, rgba(45, 80, 22, 0.85) 100%) no-repeat;
	 object-fit:cover !important;
	 width:100% !important; 
    z-index: 2; 
	height:240px !important;
  } 

   .table-custom {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.table-custom thead {
    background: #0d6efd;
    color: #fff;
}

.table-custom th,
.table-custom td {
    padding: 18px;
    vertical-align: middle;
}

.table-custom tbody tr:hover {
    background: #f1f5ff;
    transition: .3s;
}

.package-name {
    font-weight: 600;
}

.badge-early {
    background: #198754;
}

.badge-mid {
    background: #fd7e14;
}

.badge-onspot {
    background: #dc3545;
}

@media(max-width:768px){

    .content{
        left:25px;
        right:25px;
    }

    .content h1{
        font-size:40px;
    }

    .content h2{
        font-size:34px;
    }

    .content p{
        font-size:20px;
    }

    .btn{
        font-size:18px;
        padding:14px 28px;
    }
}
