/* #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;
  overflow-x: hidden;
}

@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;
}

a {
  text-decoration: none;
}
/* ================= NAVBAR ================= */
/* ================= TOP BAR ================= */
/* TOP STRIP */
.top-strip{
    background:#f7f7f7;
    height:35px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;
}

.top-contact{
    display:flex;
    gap:30px;
    color:#fff;
    font-size:15px;
}

.top-contact span{
    display:flex;
    align-items:center;
    gap:8px;
    color: #0a75d3;
    text-decoration: none;
}

.top-contact span i{
  color: #0a75d3;
}
.top-contact a{
  color: #ffffff;
  text-decoration: none;
}
.top-social{
    display:flex;
    align-items:center;
    gap:15px;
}

.top-social img{
  margin-top: 5px;
    width:22px;
    height:22px;
    transition:.3s;
}

.top-social img:hover{
    transform:scale(1.1);
}

/* LOGO SECTION */
.top-bar{
    background:#fff;
    height:120px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.logo-section{
    text-align:center;
}

.logo-section img{
    height:90px;
    width:auto;
}

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

    .top-strip{
        flex-direction:column;
        height:auto;
        padding:10px;
        gap:10px;
    }

    .top-contact{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .logo-section img{
        height:70px;
    }
}
/* ================= 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:10px 0;
  
}

.menu li{
  position:static;   /* important */
}

.menu a{
  text-decoration:none;
  color:rgb(255, 255, 255);
  font-size:14px !important;
  font-weight: 400;
  text-transform:uppercase;
}

/* 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:#ffffff;
  font-size:14px;
  font-weight: 400;
  margin-bottom:0px;
  letter-spacing:1px;
  text-transform: uppercase;
}
 .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:rgb(255, 255, 255);
  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:14px;
  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;
}

.unique-saga-logo{
  width: 80px;
}
/* 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 ================= */



@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;
  line-height: 1   ;
  width: max-content;
}
.saga-banner-text p{
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}

/* ================= RESPONSIVE ================= */     

@media(max-width:1480px){
  .saga-banner-text {
    top: 75%;
    left: 40%;
  }
}

@media(max-width:1110px){
  .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: #444444;
 padding-top: 5px;
  max-width: 520px;
  font-weight: 400;
}

/* 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: #328ad5;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-align: center;
}
.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-1{
  margin-top: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 48px;
  background: #328ad5;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: transform .2s ease;
}
.sagara-as-split-btn-1:hover{
  transform: translateY(-2px);
  
  color: #000000;
  border: 1px solid #328ad5;
  background: #fff;
}

.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;
}

.sagara-as-split-btn:hover{
  transform: translateY(-2px);
  
  color: #000000;
  border: 1px solid #328ad5;
  background: #fff;
}

/* 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;
  background-color: #f7f7f7;
  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: #f5f5f5;
  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: 300px;
  background: rgba(255,255,255,.90);
  height: 420px;
  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:#013452;
    color:#fff;
    padding:80px 0 30px;
}

.sagara-footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1.2fr;
    gap:60px;
}

.sagara-footer-col h4{
    font-size:24px;
    margin-bottom:10px;
    font-weight:400;
    color: #ffffff;
}

.sagara-footer-col h5{
    font-size:20px;
    margin:15px 0 10px;
    font-style:italic;
    font-weight:300;
    color: #fff;
}

.sagara-footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sagara-footer-col li{
    margin-bottom:8px;
}

.sagara-footer-col a,
.sagara-footer-link{
    color:#d6d6d6;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.sagara-footer-col a:hover,
.sagara-footer-link:hover{
    color:#328ad5;
}

.sagara-footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.sagara-footer-logo{
    width:220px;
}

.sagara-footer-social{
    display:flex;
    gap:12px;
    margin-top:0px;
}

.sagara-footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.sagara-footer-social a:hover{
    transform:translateY(-3px);
    background-color: #328ad5;
}

.sagara-footer-social img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.sagara-footer-address p{
    margin:0 0 0px;
    font-size:18px;
    line-height:1.6;
    color: #fff;
}

.sagara-footer-link{
    display:block;
}

.sagara-footer-contact-btn{
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:400;
    margin-top:20px;
}

.sagara-footer-bottom{
    width:90%;
    max-width:1400px;
    margin:60px auto 0;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:25px;
    text-align:center;
}

.sagara-footer-bottom p{
    color:#bdbdbd;
    font-size:16px;
}

.sagara-footer-bottom a{
    color:#fff;
    text-decoration:none;
}

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

    .sagara-footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

@media(max-width:768px){

    .sagara-footer{
        padding:60px 0 20px;
    }

    .sagara-footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .sagara-footer-col h4{
        font-size:26px;
    }

    .sagara-footer-col h5{
        font-size:18px;
    }

    .sagara-footer-col a,
    .sagara-footer-link{
        font-size:16px;
    }

    .sagara-footer-logo{
        width:180px;
    }
}


.sagar-cont-page{
    background:#fff;
}

/* Banner */

.sagar-cont-banner{
    height:600px;
    background:
    /* linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), */
    url('/assets/images/banner/contact-us.jpg')
    center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}



/* Address + Form */

.sagar-contact-section{
    display:flex;
    gap:40px;
    padding:80px 8%;
    align-items:flex-start; /* Align to top */
    justify-content: center;
}

/* LEFT */

.sagar-cont-cards{
    width:40%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */

.sagar-cont-card{
    background:#eff0f0;
    padding:25px;
    display:flex;
    align-items:flex-start;
    gap:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.sagar-cont-card:hover{
    transform:translateY(-5px);
}

.sagar-cont-icon{
    flex-shrink:0;
}

.sagar-cont-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

/* CONTENT */

.sagar-cont-content{
    flex:1;
}

.sagar-cont-content h3{
    margin:0 0 8px;
    color:#328ad5;
    font-size:22px;
    font-weight:400;
}

.sagar-cont-content p{
    margin:0;
    color:#333;
    font-size:16px;
    line-height:1.6;
    font-weight: 400;
}

.mob-list{
    display:block;
    margin-left:40px;
    margin-top:5px;
}

/* FORM */

.sagar-cont-form-wrapper{
    width:40%;
    background:#f4fdff;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    align-items: flex-start;
    position: relative;
    top: 0%;
}

.sagar-cont-form-wrapper h2{
    color:#328ad5;
    margin-bottom:25px;
    font-weight:400;
}

.sagar-cont-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sagar-cont-form input,
.sagar-cont-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    font-size:16px;
}

.sagar-cont-form textarea{
    min-height:160px;
    resize:none;
}

.sagar-cont-form button{
    background:#328ad5;
    color:#fff;
    border:none;
    padding:14px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.sagar-cont-form button:hover{
    transform: translateY(-2px);
  
  color: #000000;
  border: 1px solid #328ad5;
  background: #fff;
}


/* MAP */

.sagar-cont-map-full{
    width:100%;
    margin-top:30px;
}

.sagar-cont-map-full iframe{
    width:100%;
    height:550px;
    border:none;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .sagar-contact-section{
        flex-direction:column;
    }

    .sagar-cont-cards,
    .sagar-cont-form-wrapper{
        width:100%;
    }

    .sagar-cont-banner h1{
        font-size:42px;
    }

    .sagar-cont-map-full iframe{
        height:400px;
    }
}


/* ================= 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 ===== */
.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: #ffffff;
    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; 
}

/* 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;   
    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: 1200px;
    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 3;
    grid-row: span 1;
  }
}@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;
}
}




.brands-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.brand-card{
    display:flex;
    background:#dbdbdb;
    min-height:250px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.brand-content{
    width:50%;
    padding:20px;
    display:flex;
    flex-direction:column;
}

.brand-content span{
    font-size:12px;
    color:#666;
    font-style:italic;
}

.brand-content h3{
    font-size:30px;
    margin:5px 0 5px;
    color:#328ad5;
    font-weight: 400;
    
}

.brand-content p{
    font-size:16px;
    line-height:1.6;
    color:#303030;
    flex-grow:1;
}

.view-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;
}

.view-btn:hover{
  transform: translateY(-2px);
  color: #000000;
  border: 1px solid #328ad5;
  background: #fff;
}


.brand-image{
    width:50%;
}

.brand-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media(max-width:1400px){
    .brands-grid{
        grid-template-columns:1fr;
    }

    .brand-card{
        flex-direction:row;
    }

}




/* Mobile */
@media(max-width:768px){
    .brands-grid{
        grid-template-columns:1fr;
    }

    .brand-card{
        flex-direction:column;
    }

    .brand-content,
    .brand-image{
        width:100%;
    }

    .brand-image{
        height:250px;
    }
}
 .brands-section{
    padding:0px 5% 80px;
    background:#f5f5f5;
}

.divider{
   width: 60px;
  height: 2px;
  background: #328ad5;
  margin-bottom: 10px;

}
.unique-icon{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
}

.unique-icon img{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    transition: all 0.3s ease;
}

/* Default image */
.icon-default{
    opacity: 1;
}

/* Hover image hidden initially */
.icon-hover{
    opacity: 0;
}

/* Swap on hover */
.unique-icon:hover .icon-default{
    opacity: 0;
}

.unique-icon:hover .icon-hover{
    opacity: 1;
    transform: scale(1.1);
}

.features-section{
    padding:80px 8%;
    background:#f5f5f5;
    margin: 0 auto;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
}

.feature-card{
    background:#fff;
    padding:35px 15px 15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

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

.feature-card img{
    width:250px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:24px;
    color:#328ad5;
    margin-bottom:1px;
    font-weight:400;
}

.feature-card p{
    font-size:16px;
    line-height:1.7;
    color:#555;
}

/* Tablet */
@media(max-width:992px){
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .features-grid{
        grid-template-columns:1fr;
    }
}

.unique-icon-2{
    position:relative;
    display:inline-block;
    width:45px;
    height:45px;
    margin-top:5px;
}

.unique-icon-2 img{
    position:absolute;
    top:0;
    left:0;
    width:45px;
    transition:all .3s ease;
}

.icon-default{
    opacity:1;
}

.icon-hover{
    opacity:0;
}

.unique-icon-2:hover .icon-default{
    opacity:0;
}

.unique-icon-2:hover .icon-hover{
    opacity:1;
    transform:scale(1.15);
}

.menu-download-section{
    max-width:500px;
    margin:60px auto 20px;
    display:flex;
    gap:30px;
    align-items:flex-start;
    
}

/* LEFT SIDE */
.menu-left{
    flex:1;
}

.menu-image{
    width:300px;
    height:400px;
    object-fit:cover;
    display:block;
    box-shadow:0 15px 20px 15px rgba(0,0,0,0.08);
}

/* PDF AREA */
.pdf-download{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:20px;
}

.pdf-icon{
    width:45px;
    transition:.3s ease;
}

.pdf-icon:hover{
    transform:scale(1.1);
}

.pdf-info h4{
    margin:0;
    font-size:16px;
    font-style: italic;
    color:#328ad5;
    font-weight:400;
}

.pdf-info span{
    font-size:14px;
    color:#666;
    font-style: italic;
}

/* RIGHT SIDE */
.menu-right{
    width:250px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    height:470px;
}

.qr-code{
    width:180px;
    height:180px;
    object-fit:contain;
}

.menu-right p{
    margin-top:15px;
    font-size:16px;
    font-style: italic;
    color:#333;
    font-weight:400;
    padding-bottom: 30px;
}

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

    .menu-download-section{
        flex-direction:column;
    }

    .menu-right{
        width:100%;
        height:auto;
    }
}


.contact-area{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

    display:flex;
    gap:80px;
    align-items:flex-start;
}

/* LEFT */

.contact-info{
    flex:1;
}

.contact-desc{
    font-size:16px;
    line-height:1.6;
    color:#333;
    margin-bottom:10px;
    font-weight: 400;
}

.contact-info h3{
    font-size:28px;
    font-weight:400;
    margin:30px 0 0px;
    color:#333;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:40px;
    height:40px;
   margin-top: 10px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s ease;
}

.social-links a:hover{
    border-color:#328ad5;
    transform:translateY(-3px);
}

.social-links img{
  
    width:40px;
    height:40px;
    object-fit:contain;
}

.phone-link{
    color:#333;
    text-decoration:none;
    font-size:18px;
    font-weight: 400;
    display:inline-block;
}

.contact-info address{
    font-style:normal;
    font-size:18px;
    line-height:2;
    color:#333;
}

/* RIGHT */

.contact-form-wrap{
    flex:1;
}

.contact-form{
    width:100%;
}

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.form-row input{
    flex:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;

    border:1px solid #328ad5;
    background:#fff;

    font-size:16px;
    outline:none;

    margin-bottom:15px;
}

.contact-form textarea{
    height:220px;
    resize:none;
}

.contact-numbers{
    margin-top:10px;
}

.contact-numbers p{
    margin:0 0 8px;
    font-size:18px;
    color:#333;
    line-height:1.6;
    font-weight: 400;
}

.extra-numbers{
    margin-left:45px;
    margin-top:8px;
}

.extra-numbers p{
    margin-bottom:6px;
   
}
/* RESPONSIVE */

@media(max-width:991px){

    .contact-area{
        flex-direction:column;
        gap:50px;
    }

    .form-row{
        flex-direction:column;
    }
}


.testimonial-section{
    padding:80px 0;
    background:#d4d4d4;
    overflow:hidden;
   
    margin: 0 auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    color:#328ad5;
    font-weight: 300;
}

.section-header p{
    color:#64748b;
    margin-top:10px;
}

.testimonial-slider{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 35s linear infinite;
}

.testimonial-slider:hover{
    animation-play-state:paused;
}
 .testimonial-card{
    position:relative;
    width:700px;
    min-height:280px;
    background:#fff;
    border-radius:30px;
    padding:35px 35px 35px 190px;

    display:flex;
    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    flex-shrink:0;
}

/* Ribbon Image */

.ribbon-img{
    position:absolute;
    left:-2%;
    top:-50px;
    z-index:1;
}

.ribbon-img img{
    width:300px;
    height:auto;
    display:block;
}

/* Guest Image */

.testimonial-image{
    position:absolute;
    left:5%;
    top:33%;
    transform:translateY(-50%);
    z-index:2;
}

.testimonial-image img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;

    border:6px solid #7eb8ff;
    background:#fff;
}

/* Content */

.testimonial-content{
    width:100%;
}

.testimonial-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:15px;
}

.guest-details h4{
    margin:0;
    font-size:28px;
    font-weight:400;
    color:#111827;
}

.guest-details span{
    display:block;
    margin-top:5px;
    font-size:18px;
    color:#328ad5;
}

.stars{
    color:#f5b041;
    font-size:24px;
    letter-spacing:3px;
}

.testimonial-content p{
    margin:0;
    color:#374151;
    font-size:16px;
    line-height:1.8;
    font-style: italic;
}
.testimonial-slider{
    display:flex;
    gap:50px;
    width:max-content;
    animation:scroll 60s linear infinite;
}
@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* Tablet */

@media (max-width: 992px){

    .testimonial-card{
        width:600px;
        padding:30px 25px 30px 170px;
    }

    .ribbon-img{
        left:-2%;
        top:-40px;
    }

    .ribbon-img img{
        width:250px;
    }

    .testimonial-image{
        left:4%;
        top:35%;
    }

    .testimonial-image img{
        width:110px;
        height:110px;
    }

    .guest-details h4{
        font-size:24px;
    }

    .testimonial-content p{
        font-size:16px;
        line-height:1.7;
    }
}

/* Mobile */
/* Tablet - Keep Same Design */

@media (max-width: 768px){

    .testimonial-card{
        width:650px;
        min-height:280px;
        padding:35px 25px 35px 180px;
    }

    .ribbon-img{
        left:-30px;
        top:-50px;
    }

    .ribbon-img img{
        width:260px;
    }

    .testimonial-image{
        left:20px;
        top:33%;
    }

    .testimonial-image img{
        width:120px;
        height:120px;
    }

    .guest-details h4{
        font-size:24px;
        margin-top: 20px;
    }

    .guest-details span{
        font-size:16px;
    }

    .stars{
        font-size:20px;
    }

    .testimonial-content p{
        font-size:16px;
        line-height:1.7;
    }
}

/* Small Mobile */

@media (max-width: 576px){

    .testimonial-card{
        width:95vw;
        padding:140px 20px 30px;
        min-height:auto;
    }

    .ribbon-img{
        left:50%;
        top:-60px;
        transform:translateX(-50%);
    }

    .ribbon-img img{
        display: none;
    }

    .testimonial-image{
        left:50%;
        top:45px;
        transform:translateX(-50%);
    }

    .testimonial-image img{
        width:100px;
        height:100px;
    }

    .testimonial-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:10px;
    }

    .testimonial-content p{
        text-align:center;
        font-size:15px;
    }
}
.contact-icon{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#000000;
    background:#f7f7f7;
    padding:14px 30px;
    font-weight:400;
    font-size: 18px;
    position:relative;
    border:1px solid #328ad5;
}

.contact-icon img{
    width:40px;
    height:40px;
}

.icon-hover-2{
    display:none;
}

.contact-icon:hover .icon-default-2{
    display:none;
}

.contact-icon:hover .icon-hover-2{
    display:block;
}

.success-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:99999;

    justify-content:center;
    align-items:center;
}

.success-popup-content{
    background:#fff;
    padding:40px;
    width:400px;
    max-width:90%;
    text-align:center;
    border-radius:8px;
    position:relative;
}

.success-popup-content h2{
    color:#28a745;
    margin-bottom:15px;
}

.success-popup-content p{
    color:#555;
    line-height:1.6;
}

.success-close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
}


.resort-gallery-section{
    padding:80px 12%;
    background:#fff;
    
}

/* GRID */

.resort-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.resort-gallery-item{
    overflow:hidden;
    cursor:pointer;
}

.resort-gallery-item img{
    min-width:480px;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.resort-gallery-item:hover img{
    transform:scale(1.08);
}

/* POPUP */

.resort-gallery-modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);

    justify-content:center;
    align-items:center;
}

.resort-gallery-large{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

.resort-gallery-close{
    position:absolute;
    top:20px;
    right:40px;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.resort-gallery-prev,
.resort-gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    cursor:pointer;
    z-index:99999;
    padding:0;
}

.resort-gallery-prev{
    left:25px;
}

.resort-gallery-next{
    right:25px;
}

.resort-gallery-prev img,
.resort-gallery-next img{
    width:60px;
    height:auto;
    transition:.3s ease;
}

.resort-gallery-prev:hover img,
.resort-gallery-next:hover img{
    transform:scale(1.1);
}
/* MOBILE */

@media(max-width:768px){

    .resort-gallery-grid{
        grid-template-columns:1fr;
    }

    .resort-gallery-item img{
        height:250px;
    }

    .resort-gallery-prev,
    .resort-gallery-next{
        font-size:45px;
    }
}


.whatsapp-btn{
    position: fixed;
    right: 60px;
    bottom: 60px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    z-index: 9999;
}

.whatsapp-btn:hover{
    background: #1ebe5d;
    transform: scale(1.05);
}