html,
body {
  height: 100%;
 font-family: 'Calibri', Arial, sans-serif !important;
  color: #333 !important;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #11111194;
  font-weight: 400;
 font-family: Verdana, Geneva, Tahoma, sans-serif!important;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-family: 'Calibri', sans-serif !important;
  color: #111111;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 15px 0;
}

a {
  font-family: 'Calibri', sans-serif !important;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d5ad4d; /* your gold accent */
  text-decoration: none;
}

img {
  max-width: 100%;
}




.features-section {
   background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
        url('../img/web/chat1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0; 
}

.feature-box {
    transition: all 0.4s ease;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #7a1f2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 0 0 6px rgba(133, 37, 50, 0.2);
    transition: transform 0.4s ease;
}

/* 🔥 Zoom Out Effect */
.feature-box:hover .icon-circle {
    transform: scale(0.85);
}

.feature-box h5 {
    font-weight: 600;
    font-size: 15px;
    color: #d5ad4d;
}
section.features-section.py-5 {
    margin-top: 40px;
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

/* feature end */
/*=========================================== Text ================================================*/
.quote-text {
    position: relative;
    max-width: 900px;
    margin: auto;
    
}

.quote-heading {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
}

.quote-heading strong {
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffff;
}

.quote-icon {
    font-size: 100px;
    position: absolute;
    color: rgba(255,255,255,0.25);
}

.quote-icon.left {
    top: -30px;
    left: -20px;
    color: #d5ad4d;
}

.quote-icon.right {
    bottom: -60px;
    right: -20px;
    color: #d5ad4d;
}




.vm-row.right {
    margin-top: -40px;
}

.vm-row {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 80px;
}

.vm-circle {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 50%;
  border: 8px solid #7a1f2b;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* REMOVE negative margins completely */
.vm-row.left .vm-content {
  padding-left: 0px;   /* circle space */
}

.vm-row.right .vm-content {
  padding-right: 0px;  /* circle space */
}

/* Proper spacing instead of overlap */
.vm-row.left {
  gap: 0px;
}

.vm-row.right {
  gap: 0px;
}

.vm-content {
  flex: 1;
  position: relative;
}

/* Title attach effect without hiding text */
.vm-title {
  background: #7a1f2b;
  color: #fff;
  padding: 15px 30px;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  border-radius: 12px 12px ;
}

.vm-desc {
  border: 1px solid #333;
  padding: 25px;
  background: #fff;
  line-height: 1.8;
  font-size: 16px;
  border-radius: 0 12px 12px 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Right side align */
.vm-row.right .vm-content {
  text-align: right;
 overflow: visible !important;
}

/* Responsive */
@media (max-width: 991px) {
  .vm-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .vm-row.right {
    flex-direction: column-reverse;
  }

  .vm-content {
    width: 100%;
  }
  .vm-row.right .vm-content {
  text-align: center;
 overflow: visible !important;
}
}

.vm-row,
.vm-content {
  overflow: visible !important;
}


/* About Banner text */

.banner-ban {
    position: relative;
}

.banner-banner1 {
    width: 100%;
    height: 500px;   /* adjust if needed */
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.banner-text h1 {
    font-size:  30px;
    font-weight: 700;
    color: #fff;
}

.banner-text p {
    font-size: 18px;
    color: #fff;
}

/*======================================== Gallery page css ==========================================*/

.gallery-section {
    background: #efe6d2; /* light beige like image */
}

.gallery-box {
    background: #f6f0e3;
    padding: 20px 10px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.gallery-img {
    max-height: 400px;
    transition: transform 0.4s ease;
}

/* 🔥 Zoom Out Effect */
.gallery-box:hover .gallery-img {
    transform: scale(0.9);
}

/* home team button */
a:hover {
  background:#d4af37 !important;
  color:#000 !important;
}


/*============================================ contact page css ===========================*/
.contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header .subtitle {
  color: #7a1f2b;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-header h2 {
  font-weight: 700;
  margin-top: 10px;
}

.contact-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #7a1f2b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.contact-card a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* .contact-card a:hover {
  color: #d5ad4d;
} */

.appointment-section {
  background: #f4f6f9;
  padding: 70px 0;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  border-radius: 20px;
}

.form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  height: 100%;
}

.form-wrapper h2 {
  font-weight: 700;
  color: #7a1f2b;
  margin-bottom: 35px;
  font-size: 38px;
}

.form-control {
  background: #f1f1f1;
  border: none;
  border-radius: 15px;
  padding: 18px 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-control:focus {
  box-shadow: none;
  background: #e9ecef;
}

.btn-send {
  background: #7a1f2b;
  color: #fff;
  border-radius: 15px;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  transition: 0.3s;
}

.btn-send:hover {
  background: #162c6b;
}

@media (max-width: 991px) {
  .map-box iframe {
    min-height: 400px;
  }

  .form-wrapper {
    padding: 30px;
  }

  .form-wrapper h2 {
    font-size: 28px;
  }
}

/*========================================== product pages css ====================================*/

/* SECTION */
 
.product-banner{
    background: #f8f6f2;
    padding: 80px 20px;
    position: relative;
}

/* Optional light overlay */
.product-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
}

.product-banner .container{
    position: relative;
    z-index: 2;
}

.main-title{
    font-size: 35px;
    font-weight: 800;
    color: #2212a5;
    line-height: 1.2;
}

.sub-title{
    font-size: 32px;
    font-weight: 600;
    color: #6b3b1f;
    margin-top: 15px;
}

/* Responsive */
@media(max-width:768px){
    .main-title{
        font-size: 28px;
    }
    .sub-title{
        font-size: 20px;
    }
}

.spec-section{
    background: #f8f6f2;
}

/* Package Table (Red Border) */
.package-table{
    border: 2px solid #e91e63;
}

.package-table th,
.package-table td{
    border: 2px solid #e91e63 !important;
    font-weight: 600;
    padding: 12px;
}

/* Specification Table (Black Border) */
.spec-table{
    border: 2px solid #000;
}

.spec-table th,
.spec-table td{
    border: 1.5px solid #fff !important;
    padding: 12px;
    font-weight: 600;
}

.spec-table th{
    font-size: 18px;
}

/* Ideal Box Styling */
.ideal-box{
    background: #4b1d12;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 4px solid #f4c542;
    position: relative;
}

.ideal-box h3{
    color: #ffd54f;
    font-weight: 700;
    margin-bottom: 10px;
}

.ideal-box p{
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}

/* Responsive */
@media(max-width:768px){
    .ideal-box{
        font-size: 16px;
    }
}

.product-highlight{
    background: #f4f2ed;
    padding: 80px 0;
}

.highlight-text{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    color: #3b2c1b;
}

.benefit-card{
    text-align: center;
    margin-bottom: 30px;
}

.benefit-circle{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #6b3b1f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 38px;
    color: #2a1fa8;
    background: #ffffff;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-circle{
    background: #6b3b1f;
    color: #ffffff;
    transform: translateY(-6px);
}

.benefit-title{
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px){
    .highlight-text{
        font-size: 15px;
    }
}


/*============================== Team css ==================================*/

.team-section{
    background:#f8f9fa !important;
    padding:80px 0;
}

/* Image */
.team-img{
    width:70%;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    transition:0.3s;
}

/* 👉 Add top margin only in medium screen */
@media (min-width:768px) and (max-width:991px){
    .team-img{
        margin-top:40px;
    }
}

/* Name */
.team-name{
    margin-top:25px;
    font-weight:600;
    font-size:24px;
    color:#6b3b1f;   /* Blue Color */
}

/* Paragraph Text */
.info-box p{
    color: white;
    font-size:16px;
    line-height:1.7;
}

/* Gold Button */
.btn-gold{
    background: #b8964d;
    color:#ffffff;
    padding:12px 30px;
    border:none;
    border-radius:6px;
    font-weight:500;
    margin-top:20px;
    transition:0.3s;
}

.btn-gold:hover{
    background:#6b3b1f;
    color:#ffffff;
}

/* Blue Button */
.btn-blue{
    background:#b8964d;
    color:#ffffff;
    padding:12px 30px;
    border:none;
    border-radius:6px;
    font-weight:500;
    margin-top:20px;
    transition:0.3s;
}

.btn-blue:hover{
    background:#6b3b1f;
    color:#ffffff;
}

/* Info Box */
.info-box{
    background:#ffffff;
    margin-top:25px;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    text-align:left;
}


/* History page css */

.journey-section{
    background: #ffffff; 
    background-size: cover;
    background-position: center;
    color:#d4af37;
    padding:80px 0 120px;
    position:relative;
}

/* Heading */
.journey-title{
    font-size:60px;
    font-weight:700;
    color:#4b1d12;
    text-align:center;
    letter-spacing:2px;
}

.journey-subtitle{
    text-align:center;
    font-style:italic;
    font-size:28px;
    /* margin-bottom:10px; */
}

/* Paragraph */
.journey-text{
    font-size:18px;
    line-height:1.8;
    margin-top:30px;
}

/* Right Side Royal Image */
.royal-img{
    max-width:100%;
    height:auto;
}

/* Product Section */
.product-section{
    padding:60px 0;
    text-align:center;
}

/* Product Image */
.product-img{
    width:100%;
    max-width:250px;
    transition:0.3s;
}

.product-img:hover{
    transform:translateY(-10px);
}

/* Responsive */
@media(max-width:768px){
    .journey-title{
        font-size:40px;
    }
    .journey-subtitle{
        font-size:22px;
    }
}

/* Section Background */
.rice-section{
    background: url('../img/web/instagallery\ \(3\).jpg') center/cover no-repeat;
    background-attachment: fixed;  
    position: relative;
    padding: 100px 0;
    color: #fff;
}

/* Dark Overlay */
.rice-section::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.55);
}

.rice-content{
    position: relative;
    z-index: 2;
}
.transparent-box{
    background: rgba(255, 0, 0, 0.6);  /* Red with transparency */
    padding: 30px;
    border-radius: 15px;
    color: #fff;
}

/* Main Title */
.rice-title{
    font-size: 70px;
    font-weight: 700;
    color: #e61c4d;
    letter-spacing: 2px;
}

.rice-subtitle{
    font-size: 32px;
    margin-bottom: 50px;
    color: #ffff;
}

/* Info Box */
.info-box{
    background: linear-gradient(135deg, #e61c4d, #7a1f2b);
    padding: 35px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.info-box:hover{
    transform: translateY(-8px);
}

.info-title{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text{
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:768px){
    .rice-title{
        font-size: 45px;
    }
    .rice-subtitle{
        font-size: 22px;
    }
}























