:root{
    --primary-color:#c3b27a;
    --dark:#1f2937;
    --light:#1a3d53;
    --light-bg:#1a3d53;
    --white: #ffffff;
    --nav-button:#3d301d;  /* Brand primary */
    --secondary-color: #1a3d53;  /* Accent color */
    --white: #ffffff;
    --text-color: #333333;        /* General text */
    --bg-secondary: #1a3d53;      /* For price or stat backgrounds */
  
}

/* HEADER WITH BACKGROUND IMAGE */
.header-bg {
    position: relative;
    background: url('../../img/carousel-2.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px; /* increased padding for big header */
    margin-bottom: 50px;
    overflow: hidden;
}

.header-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* dark overlay for readability */
    z-index: 1;
}

.header-bg .header-content {
    position: relative;
    z-index: 2;
}

/* HEADER TEXT */
.header-bg h1 {
    font-size: 60px; /* larger title */
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.header-bg p {
    font-size: 24px; /* larger subtitle */
    font-weight: 400;
}

/* RESPONSIVE */
@media(max-width:991px){
    .header-bg h1 {
        font-size: 40px;
    }
    .header-bg p {
        font-size: 18px;
    }
} 
/* SECTION */
.intro-section{
    padding:80px 0;
    background:#f5f7fb;
}

/* MAIN CARD */
.intro-card{
    /* background:#fff; */
    border-radius:1px;
    overflow:hidden;
    /* box-shadow:0 20px 60px rgba(0,0,0,0.08); */
}

/* IMAGE */
.intro-image{
    height:100%;
}

.intro-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */
.intro-content{
    padding:60px;
}

.intro-small-title{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--primary-color);
    font-weight:600;
}

.intro-content h2{
    font-size:36px;
    font-weight:700;
    margin:15px 0 20px;
    color:var(--bs-dark);
}

.intro-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* LIST */
.intro-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.intro-list li{
    margin-bottom:10px;
    font-size:16px;
}

.intro-list i{
    color:var(--secondary-color);
    margin-right:8px;
}

/* RESPONSIVE */
@media (max-width:991px){

.intro-content{
    padding:40px;
}

.intro-content h2{
    font-size:28px;
}

.intro-image{
    height:350px;
}

}


/* vision and mission styling */

.vision-mission-section{
    padding:80px 0;
    background:#fff;
}

/* MAIN CARD */
.vm-card{

    border-radius:1px;
    overflow:hidden;
    /* box-shadow:0 25px 70px rgba(0,0,0,0.08); */
}

/* IMAGE */
.vm-image-wrapper{
    height:100%;
}

.vm-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */
.vm-content{
    padding:60px;
}

.section-title{
    font-size:34px;
    font-weight:700;
}

/* Vision + Mission */
.vm-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.vm-icon{
    width:40px;
    height:40px;
    color:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:15px;
    font-size:18px;
}

/* Core values */
.values-list{
    list-style:none;
    padding:0;
}

.values-list li{
    margin-bottom:10px;
    font-size:15px;
}

.values-list i{
    color:var(--secondary-color);
    margin-right:8px;
}

/* Add subtle premium feel */
.vm-card{
    border-radius: 1px;
  
  
}

/* Icon enhancement */
.vm-icon{
    background: rgba(var(--bs-primary-rgb), 0.1);
}

/* Title refinement */
.section-title{
    color: var(--bs-dark);
    letter-spacing: -0.5px;
}

/* Responsive */
@media(max-width:991px){

.vm-content{
    padding:40px;
}

.vm-image-wrapper{
    height:320px;
}

}



.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark));
    border-radius: 20px;
    padding: 60px 30px;
    color: var(--bs-light);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bs-light);
}

.cta-text {
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--bs-light);
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
}

/* Primary button stays from Bootstrap root */
.cta-buttons .btn-primary {
    background: var(--bs-light);
    color: var(--secondary-color);
    border: none;

}

.cta-buttons .btn-primary:hover {
    background: var(--primary-color);
    color: var(--bs-light);
}

/* Outline button */
.btn-outline-light {
    border: 1px solid var(--bs-light);
    color: var(--bs-light);
}

.btn-outline-light:hover {
    background: var(--bs-light);
    color: var(--secondary-color);
}