/* FOOTER MAIN */

.footer{
background:#0e0e0e;
color:#ccc;
padding-top:60px;
}
.img-sty img {
  display: block;
  margin: auto !important;
}
.social-icon {
  color: #000 !important;
  background-color: #f4b400 !important;
  border-color: #f4b400 !important;
  width: 36px;
  height: 36px;
  display: inline-block;
  text-align: center;
  line-height: 36px;}

.tx-ft{line-height: 21px;
  font-size: 14px;}
.blk-bg{background-color: #000;}
.srv-col .card{  background-color: #0f0f0e; color:#fff; position: relative;}
.srv-col .btn{ background-color: #ff5722; color: #fff;}
.org-lg{color: #f8b717 !important; font-weight: 700;}
.underline {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 2px;
  text-decoration-color:#f8b717;
  text-underline-offset: 6px; /* controls gap */
  font-style: italic;
  font-weight: bold;
  color: #f8b717;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding:5px 0; margin-bottom: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}
.lt-org-text {
  color: #f2b317 !important;
  font-weight: 600 !important;
  margin-top: 20px !important;
}
/* Image container */
.prodimg {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Image zoom effect */
.prodimg img {
  width: 100%;
  transition: transform 0.5s ease;
}

/* Dark overlay */
.opcity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

/* Title text */
.img-title {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* Hover effects */
.prodimg:hover img {
  transform: scale(1.1);
}

.prodimg:hover .opcity::before {
  opacity: 1;
}

.prodimg:hover .img-title {
  opacity: 1;
  transform: translateY(0);
}
/* FOOTER BOTTOM */

.footer-bottom{
margin-top:40px;
text-align:center;
border-top:1px solid #222;
padding:15px 10px;
font-size:13px;
color:#888;
}

/* RESPONSIVE */

@media(max-width:768px){
  .cta-banner .cta-left{display: none;}
 

.footer{
text-align:center;
}

.footer-col{
margin-bottom:20px;
}

.socials a{
display:block;
margin:5px 0;
}

}
/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', sans-serif;
}

body{
  font-family: "Open Sans", sans-serif; font-size: 14px;
}

/* HEADER */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
position:absolute;
top:0;  width: 100%;
/* background:#111; */
box-shadow:0 2px 10px rgba(0,0,0,0.05);
z-index:1000;
}
#nav .call-btn {
  background-color: #ff5722; /* standout color */
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
}

#nav .call-btn:hover {
  background-color: #e64a19;
}

.logo{
font-size:22px;
font-weight:bold;
color:#2e7d32;
}

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;padding: 8px 5px;
}

/* MOBILE MENU */
.menu-toggle{
display:none; color:#f8b717;
font-size:26px;
cursor:pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero .swiper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .swiper-slide {
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6); /* dark overlay */
  z-index: 2;
}

.hero-box {
  position: relative;
  z-index: 3; text-align: left;
}
/* 
.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1490645935967-10de6ba17061') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}*/
.hero-box{
  background:rgba(0,0,0,0.55);
  padding:30px;
}



.btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#4caf50;
color:white;
border-radius:6px;
text-decoration:none;
}

/* SECTION */
/* section{
padding:80px 8%;
text-align:center;
} */

h2{
font-size:32px;
margin-bottom:40px;
}

/* SERVICES */
.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:10px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* MENU */
.menu{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.menu-item{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 12px rgba(0,0,0,0.08);
}

.menu-item img{
width:100%;
height:160px;
object-fit:cover;
}

.menu-item h3{
padding:10px;
}

/* ABOUT */
.about{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:40px;
text-align:left;
}

.about img{
width:100%;
max-width:400px;
border-radius:12px;
}

/* TESTIMONIAL */
.testimonial{
background:#4caf50;
color:white;
padding:60px;
border-radius:12px;
max-width:700px;
margin:auto;
}

/* CONTACT */
.rac_booking_wrapper {
    position: relative;
    overflow: hidden;
    /* background-color: #000; */
    /* background-position: center; color: #fff; */
    padding: 80px 0 0;
}
.rac_booking_box {
  border: 1px solid #ccc;
  background-color: rgb(255, 252, 251);
  border-radius: var(--rac-border-radius);
  padding: 30px 10px 35px;
    padding-right: 10px;
    padding-left: 10px;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: 10px 10px 10px #f4efef;
}
.info-wrap a{color: #0f0e0e; text-decoration: none;}
.info-wrap .fa{ color: #cd5734;}
.form-group input, .form-group textarea {
  position: relative;
  width: 100%;
  /* background-color: #0000002b; */
  border: 1px solid #b8b6b6;
  min-height: 45px;
  padding: 0 15px;
  border-radius: 5px;
  color: #0d0d0d !important;
  font-size: 14px;
  appearance: none;
}
.form-control::placeholder {
  color: rgb(10, 10, 10) !important;
}
form{
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input, textarea{
padding:12px;
border-radius:6px;
border:1px solid #ccc;
}

button{
padding:12px;
background:#4caf50;
color:white;
border:none;
border-radius:6px;
}

/* FOOTER */
footer{
background:#111;
color:white;
padding:20px;
}
footer .lk-txt{color: #bbb !important; font-size: 14px; text-decoration: none;}
footer .lk-txt:hover{color:#ff5722 !important;}
.fg-icon { padding-right:5px; color: #ff5722;}
/* MOBILE */
@media(max-width:768px){

nav{
display:none;
position:absolute;
top:60px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:20px 0;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:28px;
}

.about{
flex-direction:column;
text-align:center;
}

}
/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI', sans-serif;
scroll-behavior:smooth;
}

body{
background:#f6fbf7;
color:#333;
}

/* HEADER */

.logo{
font-size:22px;
font-weight:bold;
color:#2e7d32;
}

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:#fff;
font-weight:600;
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}
nav a:hover{ color: #f8b717;}
.image-banner {
  padding: 40px;
  background: #000; /* black background like your image */
}

.banner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.banner-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  border: 5px solid #f8b717;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left large image spans full height */
.banner-item.large {
  grid-row: 1 / 3;
}

/* Right images */
.banner-item.small {
  height: 100%;
}
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .banner-item.large {
    grid-row: auto;
  }
}
/* HERO */
.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('img/banner2.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

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

.hero p{
margin-top:10px;
font-size:16px;
}

.hero .btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#cd5734;
color:white;
border-radius:30px;
text-decoration:none;
transition:0.3s;
}

.hero .btn:hover{
background:#af3e1b;
}

.org-text{color: #af3e1b !important;}
/* SECTION */
/* section{
padding:100px 8%;
text-align:center;
} */


/* BACKGROUND COLOR BLOBS */
.bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 5%, #ff7b6b, transparent 35%),
    radial-gradient(circle at 75% 65%, #ffb86b, transparent 40%);
  filter: blur(140px);
  opacity: 0.25;
}

/* CARD */
.card {
  position: relative;
  width:100%;
  padding: 48px 42px;
  background: var(--card-bg);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
}

/* NOISE */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* NAME */
.name {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding-top: 20px;
}
.name span {
  display: block;
  background: linear-gradient(120deg, #fff2cc, #ffd699, #fff2cc);
  -webkit-background-clip: text;
  color: transparent;
}

/* ROLE */
.role {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* DIVIDER + DOT */
.divider {
  margin: 15px 0 18px;
  height: 1px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  opacity: 0.2;
}
.accent-dot {
  width: 6px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.7;
}

/* INFO */
.info {
  display: grid;
  gap: 16px;
}
.item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  cursor: default;
}
.icon {
  width: 14px; margin:5px 10px 0 0;
  height: 14px;
  fill: none;
  stroke: url(#accent-gradient);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.dbox .text p span{margin-right: 5px;   font-weight: 700;}
.item span {
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}
.item span::before {
  content: "—";
  position: absolute;
  left: -20px;
  opacity: 0;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  color: transparent;
  transition: opacity 0.3s ease;
}
.item:hover .icon {
  opacity: 0;
}
.item:hover span::before {
  opacity: 1;
}
.item:hover span {
  color: #fff;
}

/* WATERMARK */
.watermark {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.035);
  transform: rotate(-8deg);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* COLOR SPLASH RIGHT TOP */
.color-splash {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at 30% 30%,
    #ff7b6b,
    #ffb86b 60%,
    transparent 70%
  );
  opacity: 0.35;
  filter: blur(60px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.btn2{
display:inline-block;
margin-top:0px;
padding:12px 30px;
background:#cd5734;
color:white;
border-radius:30px;
text-decoration:none;
transition:0.3s; font-weight: 600;
}
h2{
font-size:34px;
margin-bottom:40px;
}
.bg-clr{ background: #3b4b00;}
.about-col {width: 100%; background: #000; color:#fff;}
/* .about-col img{margin: 2%; border:5px solid #d76b06; } */
.about-col p{ color: #ccc;}
/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:10px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

/* MENU IMAGE CARDS */
.menu-card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

/* TESTIMONIAL */
.testimonial{
max-width:600px;
margin:auto;
font-style:italic;
}

/* PRICING */
.pricing{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.price-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.price{
font-size:28px;
color:#4caf50;
margin:15px 0;
}

.footer {
  background: #111;
}

.footer h5, .footer h6 {
  color: #fff;
  margin-bottom: 15px;
}

.footer p, .footer small {
  color: #bbb;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ff5722;
  padding-left: 5px;
}

.social-icon {
  color: #bbb;
  margin-left:5px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icon:hover {
  color: #ff5722;
}
.org-dk{color:#f8b717 !important ;}
hr {
  opacity: 0.2; border-color: #ff5722;
}
/* ANIMATION */
.hidden{
opacity:0;
transform:translateY(40px);
transition:all 0.6s ease;
}

.show{
opacity:1;
transform:translateY(0);
}
.nav-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
  color: #333;
  padding: 10px 20px; display: none;
}
/* MOBILE */
@media(max-width:768px){
  .hero .col-4, .hero .col-5{width: 100% !important;}
.hero .col-5{display: none !important;}
  nav a {
    width: 100%;
    border-bottom: 1px solid #1d1c1c;
  }
.close-btn {
  display:inline;
}
  nav.active {
    display: flex;
  }
}
@media(max-width:768px){
  header{position:relative;     background: #000;
  }
  .mb-hd {display: none;}

nav{
display:none;
position:absolute;
top:0px;
left:0;
width:100%;
height: 100vh;
background:#000;
flex-direction:column;
align-items:start;
padding:10px;
}

nav.active{
display:flex;
}
nav a{padding: 0 5px 5px;}

.menu-toggle{
display:block;
}

.hero h1{
font-size:32px;
}

}

/**********************************
 	Service CSS Start
 **********************************/

.cat-service-section {
   
    margin: 0 0 30px;
    text-align: center;
   
}
.cat-service-inner{ border: #090909 1px solid;    padding: 2%; box-shadow: 0 0 30px rgb(0 0 0 / 8%);
}
/* .cat-service-section:nth-last-child {border-right: #cf5836 1px solid !important ;} */
.cat-service-img {
    text-align: center;
    margin: 0 0 10px;
    position: relative;
    height:100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#testimonialCarousel h5{font-size:13px; font-weight: 600;}
#testimonialCarousel .carousel-item .col-md-6{ margin-bottom: 20px;}
.cat-service-img img {
    width:80px;
    object-fit: contain;
    position: relative;
}


.cat-service-info h4 {
    margin: 0;
    font-size:20px; color: #cf5836;
    font-weight: 600;
}

.cat-service-info p {
    margin: 0 0 17px;
}

.cat-service-info h4 {
    position: relative;
    padding: 0 0 10px;
    margin: 0 0 20px;
    display: inline-block;
}



/**********************************
 	Booking CSS Start
 **********************************/

.cat-section-spacer {
    padding: 76px 0 50px;
}

.cat-section-spacer-equal {
    padding: 76px 0 80px;
}


/* Heading */

.cat-heading-wrapper {
    position: relative;
    margin: 0 0 42px;
    text-align: center;
}

.cat-heading-wrapper h4 {
    font-size: var(--cat-font18);
    position: relative;
    display: inline-block;
    padding: 0 30px;
    font-family: var(--cat-theme-family);
    color: var(--cat-primary-color);
    font-weight: 700;
}

.cat-heading-wrapper h2::first-letter {
    color: var(--cat-primary-color);
}

.cat-heading-wrapper h4::before,
.cat-heading-wrapper h4::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 10px;
    background: var(--cat-primary-color);
    top: 0;
    bottom: 0;
    margin: auto;
}

.cat-heading-wrapper h4::before {
    left: 0;
}

.cat-heading-wrapper h4::after {
    right: 0;
}

.cat-heading-wrapper h2 {
    margin: 0;
    font-weight: 700;
    font-size: 36px;
}

.row > .col {
    display: flex;
}

.cat-service-section {
    display: flex;
    width: 100%;
}

.cat-service-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cat-service-info p {
    flex-grow: 1;
}
/* Input */

.input-wrap {
    margin: 0 0 30px;
    display: inline-block;
    width: 100%;
}

.nice-select {
    width: 100%;
    border-color: var(--cat-input-border);
}

.nice-select .list {
    width: 100%;
}

.nice-select.open,
.nice-select:active,
.nice-select:focus {
    border-color: var(--cat-primary-color);
}


/* Booking*/

.cat-booking-wrapper {
    background-image: url(../images/main/booking-bg.jpg);
    background-position: center bottom;
    background-size: cover;
}

.cat-booking-form {
    background: var(--cat-white);
    box-shadow: 0 0 20px rgb(0 0 0 / 8%);
    padding: 50px 50px 48px;
    border-radius: 10px;
    position: relative;
    margin-top: 5px;
}

.cat-booking-form:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    background-image: url(../images/main/shape.png);
    background-position: center;
    background-repeat: repeat-y;
    height: 100%;
}

.cat-booking-form:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    background-image: url(../images/main/shape.png);
    background-position: center;
    background-repeat: repeat-y;
    height: 100%;
    transform: rotate( 180deg);
}

.has-bg {
    background: var(--cat-alternate-bg);
    position: relative;
}

.has-bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/main/bg-pattern.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .04;
}

.has-bg .container {
    position: relative;
    z-index: 1;
}

.cat-booking-wrapper {
    margin: -35px 0 80px;
}

.cat-booking-form .cat-shapp {
    position: absolute;
    top: 0;
    left: -19px;
    width: 0;
    height: 0;
    border-bottom: 30px solid var(--cat-primary-color);
    border-left: 20px solid transparent;
}

.cat-booking-form .cat-shapp2 {
    position: absolute;
    top: 0;
    right: -19px;
    width: 0;
    height: 0;
    border-bottom: 30px solid var(--cat-primary-color);
    border-right: 20px solid transparent;
}

.carousel-indicators [data-bs-target]{background-color: #af3e1b !important; width: 5px !important; height: 5px !important;}
.carousel-indicators{ bottom: -44px !important;}
.carousel-item .card::before {position: absolute;
  content: "";
  top: -30px;
  right: -30px;
  background-color: #ff5722;
  width:70px;
  height:70px;
  border-radius: 50%;
  z-index: -1;}

  .carousel-item p{ padding-top:5px;}
 .rac_booking_wrapper {
  position: relative;
  overflow: hidden; padding: 0;
  box-shadow:15px 4px 15px rgba(0, 0, 0, 0.5);
}
.info-wrap a:hover{color:  #ff5722;}
.vision-col .card{ background-color:rgba(4, 4, 4, 0.6); border:1px solid #0c0c0c !important;}
.vision-col .card-title{color: #fff;}
.bg_wrapper {
  position: relative;
  background-image: url(img/about_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.cta-banner {
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin:40px auto 0;
  background: #fff;
}

/* LEFT IMAGE */
.cta-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-left {
  flex: 1;
  /* min-height: 180px; */
}

/* RIGHT SIDE */
.cta-right {
  flex: 1;
  background: #f4b400;
  display: flex;
  align-items: center;
  padding: 34px;
  position: relative;
}

/* ICON */
.cta-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ff5722;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* TEXT */
.cta-text p {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.txt-wht{color: #bbb; text-decoration: none;}
.cta-text a {
  margin: 5px 0 0;
  font-size: 36px;
  font-weight: bold;text-decoration:none;
  color: #1f2a37;
}

@media(max-width:768px){
  .hero {
    height: auto;
    padding:0;
  }

  .hero-box {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
@media(max-width:768px){
  .footer .row > div {
    text-align:left; ;
  }
  .footer-link{  border-bottom: 1px solid #494747; padding-bottom: 8px;}
  .footer img { display: none;
    float:none !important; width: 100px;
    margin:auto;
  }
  #nav .call-btn{display: none;}
}
@media(max-width:768px){
  .cta-banner {
    flex-direction: column;
  }

  .cta-right {
    flex-direction: column;
    text-align:center;
  }

  .cta-icon {
    margin-bottom:15px;
  }
  header svg { width: 180px;}
}
.txt12{font-size: 14px; color: #000;}
.inner-pg .hero{height: 300px !important;
  background-color: transparent;
  background-image: linear-gradient(180deg, #0C272730 0%, #0C272796 100%) !important;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
z-index: -1;}
.inner-pg .hero-box{background: none !important;}
.inner-pg .hero h1 {  font-size: 40px;  font-weight: 700;  padding-top: 69px;}
.breadcrumbs {  display: flex; gap: 8px; margin-top: 20px; justify-content: center;}
.breadcrumbs .first-item a {color:#cd3131;   text-decoration: none;}
.form-group {  margin-bottom:1px;}
body {
  font-family: 'Segoe UI', sans-serif;
}

/* Card Styling */
.service-card {
  border-radius: 20px;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: #fff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.service-img {
  height: 180px;
  object-fit: contain;
  padding: 10px;
}

/* Custom Colors */
.text-purple {
  color: #6f42c1;
}

/* Borders like design */
.border-success {
  border: 2px solid #28a745 !important;
}

.border-warning {
  border: 2px solid #ffc107 !important;
}

.border-danger {
  border: 2px solid #e83e8c !important;
}
.gsean-icon {
  top: -28px;
  right: 15px;
  background-color: #000;
  padding: 4px 8px;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.nw-nub-bx .nub {
  position: initial !important;
  margin: 0 5px 0 0 !important;
  color: #fff;
}
.nub {
  border-top-left-radius: 8px;
  border-top-left-radius: 7px;
  border-bottom-right-radius: 25px;
  background-color: #fd840d;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  width: 47px;
  height: 42px;
  padding-top: 5px;
  position: absolute;
  left: 9px;
  left: 11px;
  top: -1px;
  text-align: center;
  z-index: 1;
}



/*Gallery*/
.infobox .opcity {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.infobox .prodimg img {
  width: 100%;
  height: 100%;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 8px;
}

    .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px; border: 1px solid #cf5836;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    .modal-img {
      width: 100%;
      border-radius: 10px;
    }

    .modal-content {
      background: transparent;
      border: none;
      text-align: center;
    }

    .btn-close {
      position: absolute;
      top: 10px;
      right: 20px;
      background-color: white;
      opacity: 1;
      border-radius: 50%;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      color: white;
      cursor: pointer;
      padding: 10px;
    }

    .prev {
      left: 10px;
    }

    .next {
      right: 10px;
    }

/* Badge Styling */
.badge {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
/* ORANGE + LIGHT CREAM PREMIUM CARD DESIGN */

.service-card {
  background: linear-gradient(180deg, #fffaf5 0%, #fff2e6 100%);
  border: 1px solid #ffd7b8;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

/* Premium Orange Top Border */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff7a00, #ffb347);
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.20);
  border-color: #ffbb80;
}

/* Image */
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Image Hover Zoom */
.service-card:hover img {
  transform: scale(1.05);
}

/* Content */
.service-content {
  padding: 25px;
  text-align: center;
}

/* Heading */
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

/* Paragraph */
.service-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #1c1815;
  margin-bottom: 0;
}

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

  .service-card {
    border-radius: 18px;
  }

  .service-card img {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 14px;
  }
}
/* WHY CHOOSE CAFE DELISH - DARK GREEN + CREAM CARDS */

.cat-service-section {
  width: 100%;
}

/* Main Card */
.cat-service-inner {
  background: linear-gradient(180deg, #fffdf8 0%, #f4f1e8 100%);
  border: 1px solid #d7e2d4;
  border-radius: 22px;
  padding: 35px 10px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(24, 61, 41, 0.08);
  height: 100%;
}

/* Premium Top Border */
.cat-service-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #183d29, #4f7a5a);
}

/* Hover Effect */
.cat-service-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(24, 61, 41, 0.18);
  border-color: #9fb59a;
}

/* Icon Container */
.cat-service-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(24, 61, 41, 0.10);
  transition: all 0.4s ease;
}

/* Same Icon Size */
.cat-service-img img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Hover Animation */
.cat-service-inner:hover .cat-service-img {
  transform: scale(1.08);
}

.cat-service-inner:hover .cat-service-img img {
  transform: rotate(5deg) scale(1.1);
}

/* Heading */
.cat-service-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: #183d29;
  margin-bottom: 15px;
}

/* Paragraph */
.cat-service-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #5d665f;
  margin-bottom: 0;
}

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

  .cat-service-inner {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .cat-service-img {
    width: 75px;
    height: 75px;
  }

  .cat-service-img img {
    width: 38px;
    height: 38px;
  }

  .cat-service-info h4 {
    font-size: 20px;
  }

  .cat-service-info p {
    font-size: 14px;
  }
}
.none-show-dk{display: none;}

@media(max-width:768px){
  .banner-grid { grid-template-columns: 1fr;}
.ord-chng .oth-dtls-img{ order: 1;}
.ord-chng .col-md-8 {order: 2;}
  .banner-item {    height: auto;  }
   .cta-banner {margin-top: 0 !important;}
  .cta-text h2{ font-size:25px !important;}
  .cta-icon {display: none;}
  .mb-bg{z-index: -1;}
  .inner-pg .hero h1{padding-top:15px !important}
.inner-pg .hero{height:170px !important;}
.inner-pg .hero h1{font-size:32px}
.breadcrumbs{margin-top:8px}
.rac_booking_box{padding-top: 0;}
.form-group .form-control:first-child{ margin-bottom: 8px;}
.cta-right{padding:8px; width: 100%;}
footer .list-unstyled li:last-child .footer-link{padding-bottom: 0; border-bottom: 0;}
  footer ul.list-unstyled { margin-bottom:0;}
  .none-show-dk{display: inline;}
  .hide-mb{display: none;}
  .img-sty .col{width: 43%;}
    .footer .row > .col-md-6:first-child { margin-top: 0 !important;}
}