/* #2989f5 blue | #328ad5 | #328ad5*/ 

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
  font-family: 'Inter', sans-serif;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Apply globally */
html, body {
  font-family: "Inter", sans-serif;
}



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


/* ================= NAVBAR ================= */
/* ================= TOP BAR ================= */

.top-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo stays left */
  background: #ffffff;
  padding: 0 40px;
  height: 120px; /* controls header height */
}

/* LOGO */
.logo-section img {
  height: 80px;
  margin-left: 60px;
}

/* ================= CENTER BLUE SECTION ================= */

.contact-section {
  position: absolute;
  left: 51%;
  transform: translateX(-50%); /* perfectly center */
  width: 50%; /* adjust width if needed */
  background: #328ad5;
  padding: 20px 40px 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  color: #fff;
}

/* LEFT & RIGHT CURVES */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  background: #328ad5;
  z-index: -1;
}

/* LEFT CURVE */
.contact-section::before {
  left: -60px;
  border-bottom-left-radius: 120px;
}

/* RIGHT CURVE */
.contact-section::after {
  right: -60px;
  border-bottom-right-radius: 120px;
}

/* CONTACT TEXT */
.contact-left span {
  margin-right: 25px;
  font-size: 15px;
}

.contact-left i {
  margin-right: 8px;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin-left: 15px;
}

.social-icons img {
  width: 32px;          /* control size */
  height: 32px;
  object-fit: contain;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.social-icons img:hover {
  transform: scale(1.1);
}

/* ================= NAVBAR ================= */

.navbar{
  width:100%;
  background:#328ad5;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  position:relative;   
  z-index: 10;/* important */
}

/* MENU */
.menu{
  display:flex;
  justify-content:center;
  gap:40px;
  list-style:none;
  margin:0;
  padding:18px 0;
}

.menu li{
  position:static;   /* important */
}

.menu a{
  text-decoration:none;
  color:white;
  font-size:16px;
  font-weight: 400;
}

/* MEGA MENU */
.mega-menu{
  position:absolute;
  top:100%;
  left:10%;

  width:1000px;
  background:#3289d5b4;

  padding:20px 60px 20px 60px;

  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap:80px;
  row-gap:40px;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
}
/* SHOW ON HOVER */
.dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
}
/* SHOW ON HOVER */
.mega-parent:hover .mega-menu{
  opacity:1;
  visibility:visible;
}

/* COLUMN */
.mega-column{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mega-column h3{
  color:#fff;
  font-size:26px;
  font-weight: 300;
  margin-bottom:0px;
  letter-spacing:1px;
}
 .spot h3:hover{
  color: #000000;
   transition: 0.25s ease;
}
/* ITEMS */
.mega-item{
  display:flex;
  align-items:center;
  gap:18px;
}
.mega-item img{
  width:100px;
  height:100px;
  object-fit:cover;
  flex-shrink:0;
}
.mega-item h4{
  color:white;
  font-size:13px;
  margin:0;
}

.mega-item p{
  color:#cfe3ff;
  font-size:12px;
  margin-top:5px;
  line-height:1.4;
}
.mega-item span{
  color:#ffffff;
  font-size:16px;
  margin-top:5px;
  line-height:1.4;
}
.mega-column:first-child{
  border-right:1px solid rgba(255,255,255,0.25);
  padding-right:0px;
}
.mega-column:nth-child(2){
  border-right:1px solid rgba(255,255,255,0.25);
  padding-right:  30px;
}
.nav-bar-images{
  width:100%;
  height: 400px;
  object-fit:cover;
}


/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:26px;
  color:white;
  cursor:pointer;
  z-index: 10;
}

/* TABLET */
@media (max-width:1024px){

.nav-container{
  padding:0 20px;
}

.mega-menu{
  width:100%;
  grid-template-columns: repeat(2,1fr);
  padding:40px;
}

.nav-bar-images{
  height:250px;
}

}

/* MOBILE */
@media (max-width:768px){

.menu-toggle{
  display:block;
  padding:15px 20px;
  z-index: 12;
}

.menu{
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  background:#3362887c;
  width:100%;
  display:none;
}

.menu.active{
  display:flex;
}

.menu li{
  width:100%;
}

.menu a{
  display:block;
  padding:15px 20px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

/* MEGA MENU MOBILE */
.mega-menu{
  position:static;
  width:100%;
  opacity:1;
  visibility:visible;
  display:none;
  grid-template-columns:1fr;
  padding:20px;
}

.dropdown:hover .mega-menu{
  display:block;
}

.mega-column{
  border:none;
}

.mega-item img{
  width:55px;
  height:55px;
}

.nav-bar-images{
  height:200px;
}

}

/* SMALL PHONES */
@media (max-width:480px){

.menu a{
  font-size:14px;
}

.mega-item span{
  font-size:14px;
}

.nav-bar-images{
  height:160px;
}

}



/* ================= NAVBAR ================= */

.contact-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item img {
  width: 18px;
  height: 18px;
}


@media(max-width:1565px){
  .contact-section{
    left: 60%;
    width: 60%;
  }
 
}
@media(max-width:1310px){
  .social-icons{
    display: none;
  }
 .contact-section{
    left: 60%;
    width: 50%;
 }

}

@media(max-width:1063px){
  .contact-section{
    left: 63%;
    width: 53%;
 }
}
@media(max-width:999px){
  .contact-section{
    left: 63%;
    width: 55%;
 }
}

@media (max-width: 992px) {

  .top-bar {
    flex-direction: column;      /* stack vertically */
    align-items: center;         /* center everything */
    height: auto;                /* remove fixed height */
    padding: 20px 0;
  }

  .logo-section {
    margin-top: 80px;         /* space between logo & contact */
  }

  .logo-section img {
    margin-left: 0;              /* remove desktop margin */
   height: 100px;           /* adjust logo size for mobile */
  }

  .contact-section{
    left: 50%;
  }

}

@media(max-width:962px){
  .contact-section{
    width: 80%;
  }
}

@media(max-width:662px){
  .contact-section{
    width: 50%;
    height: 75px;

    
  }
  .contact-left{
    display: block;
   
  }
}
@media(max-width:510px){
  .contact-section{
    width: 70%;
    height: 60px;
  }
}
/* ================= VIDEO BANNER ================= */
.saga-banner {
  width: 100%;
  height: 800px;           /* Full viewport height */
  position: relative;
  overflow: hidden;
}

.saga-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ✅ Covers entire area */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.saga-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 213, 141, 0.199);  /* Dark overlay for text readability */
  z-index: 2;
}

.saga-banner-text {
  position: absolute;   
  top: 70%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: #e7e7e7;
  z-index: 3;
  text-align: center;
}

.saga-banner-text h1 {
  font-size: 60px;
  margin-bottom: 10px;
  font-family: "inter", sans-serif;
  font-weight: bolder;
  text-align: left;
}
.saga-banner-text p{
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1480px){
  .saga-banner-text {
    top: 75%;
    left: 40%;
  }
}
@media(max-width:700px){
  .saga-banner-text p{
    font-size: 18px;
  }
    .saga-banner-text h1{
      font-size: 40px;
    }
}
@media (max-width: 991px) {
  .saga-logo img {
    margin-left: 0;
  }

  .saga-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .saga-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .saga-menu ul li a {
    color: #000000;
    font-size: 18px;
  }

  .saga-toggle {
    display: block;
  }

  .saga-menu.saga-active {
    display: flex;
  }

  .saga-dropdown-menu {
    position: static !important;
    min-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    background: #f5f5f5 !important;
    border-radius: 10px !important;
    border: none !important;
    padding: 8px 0 !important;
    margin-top: 5px !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
  }

  .saga-dropdown.saga-open .saga-dropdown-menu {
    display: block !important;
  }

  .saga-dropdown-menu li a {
    text-align: center !important;
    font-size: 16px !important;
    padding: 12px 20px !important;
  }
}



/* Intro Section */
/* SECTION */
.saga-ind-section {
  padding: 80px 0;
  padding-bottom: 150px;
  background: #ffffff; /* same light green tint */
  font-family: Inter, sans-serif;
}

.saga-ind-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE AREA */
.saga-ind-image-wrap {
  position: relative;
}

.saga-ind-main-img {
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.saga-ind-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SMALL OVERLAP IMAGE */
.saga-ind-small-img {
  position: absolute;
  bottom: -65px;
  right: -20px;
  width: 280px;
  height: 280px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  background: #fff;
}

.saga-ind-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.saga-ind-content {
  padding-left: 10px;
}

.saga-ind-title {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 25px;
  color: #3f5c3f;
}

.saga-ind-para {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #000000;
  margin: 0 0 30px;
  max-width: 520px;
  font-weight: 300;
}
.saga-tagline {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #363636;
 padding-top: 5px;
  max-width: 520px;
  font-weight: 300;
}
.saga-main-tagline {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #328ad5;
 padding-top: 5px;
  max-width: 520px;
  font-weight: 300;
}

/* BUTTON */
.saga-ind-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid #2d3e2d;
  border-radius: 30px;
  color: #2d3e2d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.saga-ind-btn:hover {
  background: #2d3e2d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .saga-ind-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .saga-ind-title {
    font-size: 40px;
  }

  .saga-ind-small-img {
    right: 10px;
    width: 220px;
    height: 220px;
    bottom: -45px;
  }
}


/* ===============================
   SAGARA - PREMIUM GALLERY SECTION
================================= */

.sagara-as-gallery {
  padding: 80px 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.sagara-as-gallery-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Heading */
.sagara-as-gallery-heading {
  text-align: center;
  padding-top: 40px;
 
}

.sagara-as-gallery-heading h2 {
  font-size: 46px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #328ad5;
  margin-bottom: 5px;
  letter-spacing: 0.5px;

}
.sagara-as-gallery-heading h1 {
  font-size: 46px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.sagara-as-unique-heading {
  text-align: center;
  padding-bottom: 60px;
 
}

.sagara-as-unique-heading h2 {
  font-size: 46px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #328ad5;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  
}

/* underline */
/* Elegant underline */
.sagara-as-gallery-underline {
  width: 120px;
  height: 2px;
  margin: 6px auto 0;
  background: #328ad5;
  position: relative;
  border-radius: 50px;
}

.sagara-as-gallery-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 6px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

@keyframes sagara-as-shine {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}



/* ===== Facilities Split Section ===== */
.sagara-as-split-section{
  width: 100%;
  padding: 70px 0;
  background: #f0efef;
}

.sagara-as-split-wrapper{
  width: min(1250px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.sagara-as-split-left{
  position: relative;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.sagara-as-split-lines{
  height: 1px;
  background: #a9d4d4;
  width: 75%;
  margin: 0 auto;
  opacity: 0.9;
}

.sagara-as-split-content{
  text-align: center;
  padding: 60px 35px;
}

.sagara-as-split-title{
  font-size: 46px;
  font-weight: 300;
  font-family:'Inter', sans-serif;
  color: #328ad5;
  line-height: 1;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

/* small underline */
.sagara-as-split-title::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 150px;
  height: 2px;
  background: #328ad5;
}

.sagara-as-split-text{
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color:#000000;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.sagara-as-split-btn{
  margin-top: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 48px;
  background: #328ad5;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sagara-as-split-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 87, 216, 0.25);
}

/* RIGHT SIDE IMAGE */
.sagara-as-split-right{
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f6f6f6;
}

.sagara-as-split-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sagara-as-split-section{
   position: relative;
  overflow: hidden;
}

/* Overlay Background */
.sagara-as-split-section .content-overlay {
  position: absolute;
  inset: 0;
  background: url('/assets/images/pattern/pattern-3.png') center/cover no-repeat;
  
  z-index: 1;
}

/* Make content appear above overlay */
.sagara-as-split-section .sagara-as-split-wrapper {
  position: relative;
  z-index: 2;
}
/* RESPONSIVE */
@media (max-width: 900px){
  .sagara-as-split-wrapper{
    grid-template-columns: 1fr;
  }

  .sagara-as-split-right{
    height: 360px;
  }

  .sagara-as-split-content{
    padding: 45px 18px;
  }

  .sagara-as-split-text{
    max-width: 520px;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');


/* WRAP */
.sagara-wrap{
  background: #f0efef;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 45px 18px;
}

/* ✅ 2 CARDS IN A ROW */
.sagara-grid{
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

/* CARD */
.sagara-card{
  width: 600px;
  height: 420px;
  overflow: hidden;
  display: flex;
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  /* box-shadow: 0 18px 55px rgba(0,0,0,.25); */
  background-size: cover;
  background-position: center;
}

/* ✅ overlay for premium look */
.sagara-card::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
}

/* different images for each card */
.sagara-card--one{
  background-image: url("/assets/images/main/unique-sagara/restaurant.jpg");
}
/* MULTICUSINE RESTAURANT */
.sagara-card--two{
  background-image: url("/assets/images/main/unique-sagara/ayurvedic.png");
  /* AYURVEDIC SPA */
}
.sagara-card--three{
  background-image: url("/assets/images/main/unique-sagara/yoga.jpg");
}
/* YOGA CENTRE */
.sagara-card--four{
  background-image: url("/assets/images/main/unique-sagara/travel-desk.jpg");
}
/* TRAVEL DESK */
.sagara-card--five{
  background-image: url("/assets/images/main/unique-sagara/swimming-pool.jpg");
   /* TWO SWIMMING POOLS */
}

.sagara-card--six{
  background-image: url("/assets/images/main/unique-sagara/kathakali.jpg");
   /* CULTURAL PROGRAMMES DURING SEASON */
}
/* left content */
.sagara-left{
  position: relative;
  z-index: 2;
  flex: 1.15;
  padding: 40px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sagara-brand{
  font-size: 12px;
  opacity: .85;
  margin-bottom: 20px;
}

.sagara-sub{
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .85;
  margin-bottom: 6px;
}

.sagara-title{
  font-size: 30px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sagara-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: .25s ease;
  background: rgba(255,255,255,.06);
}

.sagara-btn span{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px;
}

.sagara-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

/* right box */
.sagara-right{
  position: relative;
  z-index: 2;
  flex: 1.25;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.sagara-box{
  width: 100%;
  background: rgba(255,255,255,.90);

  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  padding: 18px;
}

.sagara-icon{
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.sagara-box h3{
  font-size: 15px;
  margin-bottom: 8px;
  text-align: center;
  color: #111;
}

.sagara-box p{
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  opacity: .9;
  text-align: center;
  margin-bottom: 12px;
}

.sagara-mini-link{
  display: block;
  text-align: center;
  font-size: 11px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.sagara-mini-link:hover{
  text-decoration: underline;
}

/* responsive */
@media(max-width: 1280px){
  .sagara-grid{
    grid-template-columns: 1fr;
  }
  .sagara-card{
    width: min(600px, 95vw);
  }
}


.saga-rev {
      max-width: 100%;
      min-height: 500px;
      margin: 0 auto;
      background: white;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .saga-rev-inner {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 400px;
    }

    /* IMAGE SIDE */
    .saga-rev-image {
      position: relative;
      overflow: hidden;
      clip-path: ellipse(95% 100% at 0% 50%);
    }

    .saga-rev-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
    }

    .saga-rev-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      z-index: 1;
    }

    .saga-rev-tech-graphics {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    /* ORANGE PREMIUM BADGE */
    .saga-rev-badge {
      position: absolute;
      bottom: 35px;
      left: 30px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 14px;
      background: linear-gradient(135deg, #ff8a00, #ff5e00);
      box-shadow: 0 18px 40px rgba(255, 94, 0, 0.35);
      z-index: 10;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(6px);
      animation: sagaBadgeFloat 3.5s ease-in-out infinite;
    }

    .saga-rev-badge-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.22);
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
    }

    .saga-rev-badge-text strong {
      display: block;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    .saga-rev-badge-text small {
      display: block;
      font-size: 12px;
      opacity: 0.95;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    @keyframes sagaBadgeFloat {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    /* CONTENT SIDE */
    .saga-rev-content {
      padding: 80px 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      background: white;
    }

    .saga-rev-testimonials {
      position: relative;
      min-height: 450px;
    }

    .saga-rev-testimonial {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: opacity 0.6s ease-in-out;
      pointer-events: none;
    }

    .saga-rev-testimonial.active {
      opacity: 1;
      pointer-events: auto;
    }

    .saga-rev-label {
      color: #666;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .saga-rev-title {
      font-size: 48px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
      line-height: 1.2;
    }

    .saga-rev-text {
      color: #303030;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 50px;
      font-family: 'Inter', sans-serif;
    }

    .saga-rev-author {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .saga-rev-author-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f0f0f0;
    }

    .saga-rev-author-info h3 {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 5px;
    }

    .saga-rev-author-info p {
      font-size: 13px;
      color: #999;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* NAV */
    .saga-rev-nav {
      position: absolute;
      bottom: 80px;
      left: 100px;
      display: flex;
      gap: 15px;
      z-index: 10;
    }

    .saga-rev-nav-btn {
      width: 50px;
      height: 50px;
      border: 2px solid #e0e0e0;
      border-radius: 50%;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .saga-rev-nav-btn:hover {
      border-color: #ff6b6b;
      background: #ff6b6b;
    }

    .saga-rev-nav-btn:hover svg {
      stroke: white;
    }

    .saga-rev-nav-btn svg {
      width: 20px;
      height: 20px;
      stroke: #666;
      transition: all 0.3s ease;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .saga-rev-inner {
        grid-template-columns: 1fr;
      }

      .saga-rev-image {
        clip-path: none;
        min-height: 400px;
      }

      .saga-rev-content {
        padding: 60px 40px;
      }

      .saga-rev-nav {
        left: 40px;
        bottom: 60px;
      }

      .saga-rev-testimonials {
        min-height: 400px;
      }

      .saga-rev-badge {
        left: 20px;
        bottom: 20px;
        padding: 12px 16px;
      }
    }

    @media (max-width: 768px) {
      .saga-rev-title {
        font-size: 36px;
      }

      .saga-rev-content {
        padding: 40px 30px;
      }

      .saga-rev-testimonials {
        min-height: 350px;
      }
    }



    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.sagara-gal-wrap{
  padding: 80px 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.sagara-gal-container{
  width: 100%;
  margin: auto;
}

.sagara-gal-slider{
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.sagara-gal-track{
  display: flex;
  gap: 18px;
  align-items: center;
  transition: transform .7s ease-in-out;
}

/* Base card */
.sagara-gal-item{
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
  border: 1px solid rgba(15, 61, 46, .12);
  flex: 0 0 auto;
  transform: translateZ(0);
}

.sagara-gal-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Sizes */
.sagara-gal-item[data-pos="0"],
.sagara-gal-item[data-pos="4"]{
  width: 230px;
  height: 190px;
}

.sagara-gal-item[data-pos="1"],
.sagara-gal-item[data-pos="3"]{
  width: 280px;
  height: 240px;
}

/* ✅ MAIN CENTER: 500×500 EXACT */
.sagara-gal-item[data-pos="2"]{
  width: 500px;
  height: 500px;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  border: 1px solid rgba(15, 61, 46, .22);
}

/* bottom text */
.sagara-gal-text{
  text-align: center;
  margin-top: 40px;
}

.sagara-gal-text h2{
  font-size: 34px;
  font-weight: 700;
  color: #0f3d2e;
  margin: 0;
}

.sagara-gal-text p{
  margin: 6px 0 0;
  font-size: 14px;
  color: #888;
  letter-spacing: .4px;
}

/* ✅ Responsive */
@media(max-width: 1100px){
  .sagara-gal-item[data-pos="2"]{
    width: 420px;
    height: 420px;
  }
}

@media(max-width: 900px){
  .sagara-gal-slider{ overflow-x: auto; }
  .sagara-gal-track{ padding-bottom: 10px; }
  .sagara-gal-item[data-pos="2"]{
    width: 340px;
    height: 340px;
  }
}

@media(max-width: 600px){
  .sagara-gal-item[data-pos="2"]{
    width: 280px;
    height: 280px;
  }
}

/* ===== Footer (Sagara) ===== */
.sagara-footer {
  background: #303030; /* forest green */
  color: #eef6f1;
  padding: 70px 0 0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* subtle luxury gradient lights */
.sagara-footer::before,
.sagara-footer::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.sagara-footer::before {
  background: rgba(255, 255, 255, 0.18);
  top: -120px;
  left: -120px;
}
.sagara-footer::after {
  background: rgba(155, 212, 178, 0.18);

}

.sagara-footer-wrap {
  width: min(1200px, 92%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.sagara-footer-top {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* Brand side */
.sagara-footer-brand {
  padding-right: 10px;
}

.sagara-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.sagara-footer-logo img {
  width: 175px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.25));
}

.sagara-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Social */
.sagara-footer-social {
  display: flex;
  gap: 10px;
}
.sagara-footer-social img {
  width: 30px;
  height: 30px;
 
}
.sagara-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
  
}
.sagara-footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

/* Links grid */
.sagara-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sagara-footer-col h4 {
  font-size: 15px;
  margin: 0 0 14px;
  font-weight: 700;
  position: relative;
  padding-left: 12px;
}

.sagara-footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  border-radius: 10px;
  background: #a7e7c0; /* soft mint */
}

.sagara-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sagara-footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13.5px;
  transition: 0.25s ease;
  position: relative;
  padding-left: 16px;
}

.sagara-footer-col ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  opacity: 0.7;
}

.sagara-footer-col ul li a:hover {
  color: #a7e7c0;
  padding-left: 20px;
}

/* Bottom bar */
.sagara-footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.sagara-footer-bottom p {
  margin: 0;
  font-size: 13px;
  opacity: 0.88;
  color: #ffffff;
}

.sagara-footer-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sagara-footer-mini a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  transition: 0.25s ease;
}

.sagara-footer-mini a:hover {
  color: #a7e7c0;
}

.sagara-footer-mini .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 980px) {
  .sagara-footer-top {
    grid-template-columns: 1fr;
  }
  .sagara-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .sagara-footer-links {
    grid-template-columns: 1fr;
  }
  .sagara-footer-logo img {
    width: 160px;
  }
}




.sagar-cont-page {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Banner */

.sagar-cont-banner {
  height: 600px;
  background: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
  url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sagar-cont-banner h1 {
  color: #fff;
  font-size: 60px;
}

/* Info + Map */

.sagar-cont-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px 8%;
}

.sagar-cont-cards {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sagar-cont-card {
  background: white;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.sagar-cont-card:hover {
  transform: translateY(-6px);
}

.sagar-cont-icon img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sagar-cont-card h3 {
  margin: 0;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #328ad5;
}

.sagar-cont-card p {
  line-height: 1.6;
  color: #555;
  font-size: 16px;
}

/* Map */

.sagar-cont-mapbox {
  width: 65%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.sagar-cont-mapbox iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* Form */

.sagar-cont-form-wrapper {
  background: #f8fdf9;
  padding: 70px 8%;
  text-align: center;
}

.sagar-cont-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sagar-cont-form input,
.sagar-cont-form textarea {
  padding: 14px;
  border: 1px solid #cce7d6;
  font-size: 16px;
}

.sagar-cont-form textarea {
  min-height: 120px;
}

.mob-list {
    display: block;
  margin-left: 38px;
}

.sagar-cont-form button {
  background: #1ea54b;
  color: white;
  border: none;
  padding: 14px;
  font-size: 18px;
  cursor: pointer;
}

.sagar-cont-form button:hover {
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 900px) {
  .sagar-cont-wrapper {
    flex-direction: column;
  }

  .sagar-cont-cards,
  .sagar-cont-mapbox {
    width: 100%;
  }

  .sagar-cont-banner h1 {
    font-size: 40px;
  }
}



/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img#lightbox-img {
  max-width: 90%;
  max-height: 85%;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lightbox-close img {
  width: 35px;
}

/* Prev & Next */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev img,
.lightbox-next img {
  width: 45px;
  transition: 0.3s ease;
}

.lightbox-prev img:hover,
.lightbox-next img:hover {
  transform: scale(1.1);
}
.lightbox img {
  max-width: 90%;
  max-height: 85%;
 
}

.lightbox .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: 1920px;
  margin: 50px 100px;
}

/* Default */
.gallery-item {
  overflow: hidden;

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left Big */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Make right image vertical */
.gallery-item.tall {
  grid-row: span 2;
}

/* Bottom wide */
.gallery-item.wide {
  grid-column: span 2;
}

/* ================== LARGE TABLETS ================== */
@media (max-width: 1200px) {

  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Adjust spans */
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}


/* ================== TABLET ================== */
@media (max-width: 992px) {

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  /* Make everything balanced */
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}


/* ================== MOBILE ================== */
@media (max-width: 576px) {

  .gallery-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
} 
.saga-underline {
  width: 200px;
  height: 2px;
  margin: 6px auto 20px;
  background: #328ad5;
  position: relative;
  border-radius: 50px;
}
.nav-underline {
  width: 100%;
  height: 1px;

  background: #919191;
  position: relative;
  border-radius: 50px;
}




.saga-banner-text {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 600px;
  color: #fff;
  z-index: 3;
}

/* All slides stacked */
.slide {
  position: absolute;
  opacity: 0;
  animation: fadeSlide 25s infinite;
}

/* Timing for each slide */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

/* Fade Animation */
@keyframes fadeSlide {
  0% { opacity: 0; }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}


  /* ===== WRAPPER ===== */


/* ===== WRAPPER ===== */
.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;   /* IMPORTANT */
}

/* ===== SLIDER ===== */
.gallery-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

/* Each slide */
.gallery-section {
    min-width: 100%;
    height: 100vh;
    padding: 60px;
    background: #f5f5f5;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* GRID */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1600px;
    margin: 50px auto; /* center properly */
}

/* Items */
.gallery-item {
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Layout modifiers */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-wrapper {
    position: relative;   /* IMPORTANT */
    overflow: hidden;
}

.phone-link {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
}
.email-link {
  text-decoration: none;
  color: inherit;
}

.email-link:hover {
  color: #ffffff;
}

/* Navigation */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.nav img {
    width: 45px;   /* adjust size */
    height: auto;
    transition: 0.3s ease;
}

.nav img:hover {
    transform: scale(1.1);
}

@media (max-width: 1629px) {

  .gallery-container {
    max-width: 1400px;
    grid-auto-rows: 220px;
    gap: 18px;
  }

  .gallery-section {
    padding: 0px 40px 50px 40px;
  }
}

@media (max-width: 1400px) {

  .gallery-container {
    max-width: 1200px;
    grid-auto-rows: 200px;
    gap: 16px;
  }
}
@media (max-width: 1200px) {

  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}@media (max-width: 992px) {

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .nav {
    font-size: 22px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {

  .gallery-container {
    grid-template-columns:400px;
    grid-auto-rows: 220px;
    gap: 10px;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
  }

  .nav {
    display: none; /* hide arrows on small screens */
  }
}

@media (max-width: 450px) {

  .gallery-container {
    grid-template-columns:350px;
    grid-auto-rows: 220px;
    gap: 10px;
  }
}
.slider-prev{
  padding-left: 40px;
}
.slider-next{
  padding-right: 40px;
}
@media (max-width: 1629px) {

.slider-next{
  padding-right: 0px;
}
.slider-prev{
  padding-left: 0px;
}
}