.elementor-3225 .elementor-element.elementor-element-3aca0a6{--display:flex;}.elementor-3225 .elementor-element.elementor-element-d2a34bc{margin:117px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-3225 .elementor-element.elementor-element-4ed0cb3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3225 .elementor-element.elementor-element-eb39646{margin:-11px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-d2a34bc *//* REMOVE GAP */
body, html{
margin:0;
padding:0;
overflow-x:hidden;
}

/* FULL WIDTH SECTION */

.page-title-section{
width:100vw;
margin-left:calc(-50vw + 50%);
background:#FFC107;
padding:15px; /* reduced */
box-sizing:border-box;
}

/* INNER BOX (REDUCED SIZE ~40%) */

.page-title-box{
background:#800000;
border-radius:20px;
padding:50px 40px; /* reduced from 90px */
color:#ffffff;
position:relative;
}

/* YELLOW BOTTOM LINE */

.page-title-box::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:5px;
background:#FFC107;
border-bottom-left-radius:20px;
border-bottom-right-radius:20px;
}

/* TITLE */

.page-title-box h1{
font-size:40px; /* reduced */
font-weight:700;
margin-bottom:10px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:16px;
color:#ffffff;
}

.breadcrumb a{
color:#ffffff;
text-decoration:none;
}

/* MOBILE */

@media (max-width:768px){

.page-title-box{
padding:40px 20px;
}

.page-title-box h1{
font-size:28px;
}

.breadcrumb{
font-size:14px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb39646 *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* FULL WIDTH FIX */
html, body {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

/* MAIN CONTAINER FULL WIDTH */
.container {
  width: 100%;
  padding: 40px 60px;
}

/* REMOVE SIDE GAPS */
section {
  width: 100%;
}

/* TITLE */
.page-title {
  text-align: center;
  color: maroon;
  font-size: 32px;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: maroon;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #8b0000;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  background: #fff8e1;
  border-left: 5px solid maroon;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card h3 {
  color: maroon;
}

/* TOPICS */
.section-title {
  text-align: center;
  margin: 50px 0 20px;
  color: maroon;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.topic {
  background: maroon;
  color: #ffd700;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  margin-top: 50px;
}

/* 🔥 STICKY BOOK NOW BUTTON */
.book-now-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: maroon;
  padding: 12px 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.book-now-bar a {
  background: #ffd700;
  color: maroon;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

/* 🔥 YELLOW STRIP BELOW */
.yellow-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffd700;
  z-index: 9998;
}

/* SPACE FIX (content not hidden behind fixed bar) */
body {
  padding-bottom: 80px;
}

/* MOBILE */
@media(max-width:768px){

  .container {
    padding: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}/* End custom CSS */