* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  background: #0a2540;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  font-size: 22px;
  color: #fff;
}

.logo span {
  font-size: 12px;
  color: #00c2ff;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  color: #00c2ff;
}

.cta {
  display: flex;
  gap: 10px;
}

.call-btn {
  background: #ff6b00;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width: 768px) {

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a2540;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav a {
    padding: 10px 0;
  }

  .cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    display: flex;
  }
}

.hero-section {
  position: relative;
  background: url('../images/banner.webp') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
}

.hero-container {
  position: relative;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.call {
  background: #ff6b00;
  color: #fff;
}

.whatsapp {
  background: #25d366;
  color: #fff;
}

/* FORM */
.hero-form {
  width: 350px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.hero-form h3 {
  margin-bottom: 15px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background: #ffcc00;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-form {
    width: 100%;
  }
}

.about-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  background: #ffcc00;
  color: #0a2540;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0a2540;
  color: #fff;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 26px;
  }
}

.about-collage {
  padding: 80px 0;
  background: #f8f9fc;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE SIDE */
.image-box {
  position: relative;
  width: 50%;
}

.image-box img {
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Main Image */
.img1 {
  width: 100%;
}

/* Bottom Right Image */
.img2 {
  width: 70%;
  position: absolute;
  bottom: -40px;
  right: 0;
}

/* Small Overlap Image */
.img3 {
  width: 40%;
  position: absolute;
  bottom: -60px;
  left: -20px;
}

/* CONTENT */
.content-box {
  width: 50%;
}

.content-box h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.content-box p {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  color: #0a2540;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 3px;
}

/* MOBILE */
@media(max-width:768px) {
  .container {
    flex-direction: column;
  }

  .image-box, .content-box {
    width: 100%;
  }

  .img2, .img3 {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
}

.custom-section {
  background: #0a2540;
  padding: 90px 0;
}

.container {
  width: 88%;
  margin: auto;
}

/* HEADING */
.heading {
  text-align: center;
  margin-bottom: 60px;
}

.heading h2 {
  font-size: 40px;
  color: #f4c430;
  margin-bottom: 10px;
  font-weight: 600;
}

.heading p {
  color: #cfd8e3;
  font-size: 16px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
}

.card {
  flex: 1;
  color: #fff;
}

/* IMAGE STYLE (IMPORTANT – MATCH LOOK) */
.card-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.card-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* TEXT */
.card h3 {
  color: #f4c430;
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: #d6dde6;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px) {
  .cards {
    flex-direction: column;
  }

  .heading h2 {
    font-size: 26px;
  }
}

.gallery-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 40px;
  color: #b89600;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

/* MOBILE */
@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section h2 {
    font-size: 26px;
  }
}


.footer {
  background: #0a2540;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 90%;
  margin: auto;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

/* CONTACT LINKS */
.footer-col a {
  color: #ffcc00;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #071a2d;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Section Background */
.msn-contact-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') no-repeat center/cover;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

/* Overlay */
.msn-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 35, 64, 0.85); /* Dark blue overlay */
  z-index: 1;
}

/* Container */
.msn-contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Side */
.msn-contact-left {
  flex: 1;
  color: #fff;
}

.msn-contact-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #ffc107; /* Yellow accent */
}

.msn-contact-left p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.msn-contact-info h4 {
  margin-top: 15px;
  color: #ffc107;
}

.msn-contact-info p {
  margin: 5px 0;
}

/* Right Form */
.msn-contact-right {
  flex: 1;
}

.msn-form-group {
  margin-bottom: 15px;
}

.msn-form-group label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.msn-form-group input,
.msn-form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2f4f6f;
  color: #fff;
  font-size: 14px;
}

.msn-form-group input::placeholder,
.msn-form-group textarea::placeholder {
  color: #ccc;
}

.msn-form-group textarea {
  height: 120px;
  resize: none;
}

/* Button */
.msn-submit-btn {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.msn-submit-btn:hover {
  background: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
  .msn-contact-container {
    flex-direction: column;
  }

  .msn-contact-left h2 {
    font-size: 28px;
  }
}

.breadcrumb-section {
  position: relative;
  height: 280px;
  background: url('../images/banner.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK OVERLAY */
.breadcrumb-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.75);
  top: 0;
  left: 0;
}

/* CONTENT */
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.breadcrumb-section h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #ffcc00;
}

.breadcrumb span {
  color: #ccc;
}

/* MOBILE */
@media(max-width:768px) {
  .breadcrumb-section {
    height: 200px;
  }

  .breadcrumb-section h1 {
    font-size: 28px;
  }
}


.cta-hero {
  position: relative;
  padding: 100px 20px;
  background: url('../images/g23.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
  top: 0;
  left: 0;
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 2;
}

.cta-content h2 {
  font-size: 42px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
  background: #ffcc00;
  color: #000;
}

.call-btn:hover {
  background: #e6b800;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* TRUST LINE */
.cta-trust {
  font-size: 14px;
  color: #ccc;
}

/* MOBILE */
@media(max-width:768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

.contact-cards {
  padding: 70px 0;
  background: #f8f9fc;
}

.contact-cards .container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD STYLE */
.contact-cards .card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* ICON */
.contact-cards .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TITLE */
.contact-cards h3 {
  color: #0a2540;
  margin-bottom: 10px;
}

/* TEXT */
.contact-cards p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.contact-cards a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

/* HOVER EFFECT */
.contact-cards .card:hover {
  transform: translateY(-10px);
  background: #0a2540;
}

.contact-cards .card:hover h3,
.contact-cards .card:hover p,
.contact-cards .card:hover a {
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .contact-cards .container {
    grid-template-columns: 1fr;
  }
}


.why-contact {
  padding: 80px 0;
  background: #0a2540;
  color: #fff;
  text-align: center;
}

.why-contact .container {
  width: 90%;
  margin: auto;
}

/* HEADING */
.why-contact .heading h2 {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.why-contact .heading p {
  color: #ccc;
  margin-bottom: 50px;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* FEATURE CARD */
.feature {
  background: #122c4a;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.feature .icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.feature h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.feature p {
  color: #ddd;
  font-size: 14px;
}

/* HOVER */
.feature:hover {
  transform: translateY(-10px);
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.call {
  background: #ffcc00;
  color: #000;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .features {
    grid-template-columns: 1fr;
  }

  .why-contact .heading h2 {
    font-size: 26px;
  }
}

.about-split {
  padding: 80px 0;
  background: #f8f9fc;
}

.about-split .container {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CONTENT (70%) */
.about-content {
  flex: 0 0 60%;
}

.about-content h2 {
  font-size: 36px;
  color: #0a2540;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #ffcc00;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0a2540;
  color: #fff;
}

/* RIGHT IMAGE (30%) */
.about-image {
  flex: 0 0 30%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px) {
  .about-split .container {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 100%;
  }

  .about-content h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}

/* =========================
   PREMIUM HEADER CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* HEADER */

.cs-premium-header{
    width:100%;
    background:#071f3d;
    position:sticky;
    top:0;
    left:0;
    z-index:99999;
    box-shadow:0 5px 25px rgba(0,0,0,0.15);
}

/* CONTAINER */

.cs-navbar-container{
    width:100%;
    max-width:1350px;
    margin:auto;
    padding:16px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.cs-logo-box img{
    width:290px;
    display:block;
}

/* MENU */

.cs-nav-menu{
    display:flex;
    align-items:center;
    gap:38px;
}

.cs-nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    position:relative;
    transition:.3s ease;
}

/* HOVER EFFECT */

.cs-nav-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#ffcc00;
    transition:.4s ease;
}

.cs-nav-menu a:hover{
    color:#ffcc00;
}

.cs-nav-menu a:hover::after{
    width:100%;
}

/* BUTTONS */

.cs-header-btns{
    display:flex;
    align-items:center;
    gap:14px;
}

.cs-call-btn,
.cs-whatsapp-btn{
    padding:13px 24px;
    border-radius:8px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.4s ease;
}

/* CALL */

.cs-call-btn{
    background:#ffcc00;
    color:#000;
}

.cs-call-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* WHATSAPP */

.cs-whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.cs-whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

/* MOBILE TOGGLE */

.cs-mobile-toggle{
    width:34px;
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.cs-mobile-toggle span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:20px;
    transition:.3s;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .cs-mobile-toggle{
        display:flex;
    }

    .cs-nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#071f3d;
        flex-direction:column;
        align-items:flex-start;
        padding:25px 8%;
        gap:22px;

        opacity:0;
        visibility:hidden;
        transform:translateY(20px);
        transition:.4s ease;
    }

    .cs-nav-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .cs-header-btns{
        display:none;
    }

    .cs-nav-menu a{
        font-size:18px;
    }

    .cs-logo-box img{
        width:180px;
    }
}

@media(max-width:600px){

    .cs-navbar-container{
        padding:14px 5%;
    }

    .cs-logo-box img{
        width:200px;
    }
}

/* =========================================
   PREMIUM HERO SLIDER CSS
========================================= */

.lxr-premium-hero-slider{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* SLIDES */

.lxr-premium-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;
    visibility: hidden;

    transition: 1s ease-in-out;
}

.lxr-active-slide{
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */

.lxr-slide-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.38);
}

/* CONTENT */

.lxr-slide-content{
    position: absolute;

    left: 50%;
    bottom: 90px;

    transform: translateX(-50%);

    width: 90%;
    max-width: 900px;

    text-align: center;
    z-index: 5;

    animation: lxrFadeUp 1.2s ease;
}

.lxr-slide-content h1{
    font-size: 52px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.lxr-slide-content p{
    color: rgba(255,255,255,0.92);
    font-size: 22px;
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
}

/* ARROWS */

.lxr-slider-arrow{
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 65px;
    height: 65px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.12);
    color: #fff;

    font-size: 36px;
    cursor: pointer;

    z-index: 10;

    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.lxr-slider-arrow:hover{
    background: #fff;
    color: #111;
}

.lxr-prev-slide{
    left: 30px;
}

.lxr-next-slide{
    right: 30px;
}

/* DOTS */

.lxr-slider-dots{
    position: absolute;
    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;
    gap: 12px;

    z-index: 15;
}

.lxr-dot{
    width: 38px;
    height: 4px;

    background: rgba(255,255,255,0.4);

    border-radius: 30px;
    cursor: pointer;

    transition: 0.4s ease;
}

.lxr-active-dot{
    background: #fff;
    width: 55px;
}

/* ANIMATION */

@keyframes lxrFadeUp{

    from{
        opacity: 0;
        transform: translate(-50%,60px);
    }

    to{
        opacity: 1;
        transform: translate(-50%,0);
    }

}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media(max-width:991px){

    .lxr-slide-content h1{
        font-size: 40px;
    }

    .lxr-slide-content p{
        font-size: 18px;
        line-height: 1.7;
    }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

    .lxr-premium-hero-slider{
        height: 75vh;
    }

    /* MOBILE MAI CONTENT HIDE */

    /* .lxr-slide-content{
        display: none;
    } */

    .lxr-slider-arrow{
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .lxr-prev-slide{
        left: 15px;
    }

    .lxr-next-slide{
        right: 15px;
    }

}

/* ================= SANSAR PREMIUM ABOUT SECTION ================= */

.sansar-lux-about-wrap{
    width: 100%;
    padding: 110px 20px;
    background: #050505;
    overflow: hidden;
    position: relative;
}

.sansar-lux-about-wrap::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(212,175,55,0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    filter: blur(40px);
}

.sansar-lux-about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ================= IMAGE SIDE ================= */

.sansar-lux-about-image-side{
    position: relative;
}

.sansar-main-image-box{
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.sansar-main-image-box img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.sansar-main-image-box:hover img{
    transform: scale(1.05);
}

.sansar-floating-exp-card{
    position: absolute;
    left: -30px;
    bottom: 70px;
    background: linear-gradient(135deg,#d4af37,#b68b1f);
    padding: 30px;
    border-radius: 22px;
    width: 180px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.sansar-floating-exp-card h3{
    color: #071f3d;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 5px;
}

.sansar-floating-exp-card span{
    color: #111;
    font-size: 15px;
    font-weight: 700;
}

.sansar-floating-service-card{
    position: absolute;
    right: -20px;
    top: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.sansar-floating-service-card i{
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg,#d4af37,#b68b1f);
    color: #071f3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sansar-floating-service-card h4{
    color: #fff;
    font-size: 19px;
    margin-bottom: 5px;
}

.sansar-floating-service-card p{
    color: #cfcfcf;
    margin: 0;
    font-size: 14px;
}

/* ================= CONTENT SIDE ================= */

.sansar-about-mini-title{
    display: inline-block;
    color: #d4af37;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.sansar-lux-about-content-side h2{
    color: #fff;
    font-size: 31px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.sansar-lux-about-content-side p{
    color: #bdbdbd;
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 24px;
}

.sansar-about-top-text strong{
    color: #d4af37;
}

.sansar-about-feature-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}

.sansar-about-feature-item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.sansar-about-feature-item i{
    color: #d4af37;
    font-size: 20px;
}

.sansar-about-feature-item span{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.sansar-about-action-btns{
    display: flex;
    gap: 18px;
    margin-top: 45px;
}

.sansar-call-btn,
.sansar-whatsapp-btn{
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sansar-call-btn{
    background: linear-gradient(135deg,#d4af37,#b68b1f);
    color: #071f3d;
}

.sansar-whatsapp-btn{
    background: #25d366;
    color: #fff;
}

.sansar-call-btn:hover,
.sansar-whatsapp-btn:hover{
    transform: translateY(-5px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .sansar-lux-about-grid{
        grid-template-columns: 1fr;
    }

    .sansar-lux-about-content-side h2{
        font-size: 42px;
    }

    .sansar-main-image-box img{
        height: 500px;
    }
}

@media(max-width:767px){

    .sansar-lux-about-wrap{
        padding: 80px 15px;
    }

    .sansar-lux-about-grid{
        gap: 50px;
    }

    .sansar-lux-about-content-side h2{
        font-size: 32px;
    }

    .sansar-lux-about-content-side p{
        font-size: 15px;
        line-height: 28px;
    }

    .sansar-about-feature-list{
        grid-template-columns: 1fr;
    }

    .sansar-about-action-btns{
        flex-direction: column;
    }

    .sansar-floating-exp-card{
        width: 140px;
        padding: 20px;
        left: 10px;
        bottom: 20px;
    }

    .sansar-floating-exp-card h3{
        font-size: 38px;
    }

    .sansar-floating-service-card{
        right: 10px;
        top: 20px;
        padding: 16px;
    }

    .sansar-floating-service-card h4{
        font-size: 15px;
    }
}

/* =========================
   PREMIUM SERVICE SECTION
========================= */

.sansar-premium-services-wrap{
    width:100%;
    padding:90px 7%;
    background:#ffffff;
}

.sansar-premium-services-heading{
    text-align:center;
    margin-bottom:60px;
}

.sansar-service-tagline{
    display:inline-block;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    color:#caa45f;
    margin-bottom:15px;
}

.sansar-premium-services-heading h2{
    font-size:48px;
    color:#071f3d;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.sansar-premium-services-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.sansar-premium-services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.sansar-premium-service-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    border:1px solid #eee;
}

.sansar-premium-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.sansar-service-image{
    height:280px;
    overflow:hidden;
}

.sansar-service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.sansar-premium-service-card:hover img{
    transform:scale(1.08);
}

.sansar-service-content{
    padding:35px;
}

.sansar-service-content h3{
    font-size:30px;
    color:#071f3d;
    margin-bottom:18px;
    font-weight:700;
}

.sansar-service-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
}

.sansar-service-content ul{
    padding:0;
    margin:0 0 30px;
    list-style:none;
}

.sansar-service-content ul li{
    font-size:15px;
    color:#222;
    margin-bottom:12px;
    font-weight:500;
}

.sansar-service-btns{
    display:flex;
    gap:15px;
}

.sansar-call-btn,
.sansar-whatsapp-btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    transition:0.4s;
}

.sansar-call-btn{
    background:#071f3d;
    color:#fff;
}

.sansar-call-btn:hover{
    background:#caa45f;
    color:#071f3d;
}

.sansar-whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.sansar-whatsapp-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .sansar-premium-services-grid{
        grid-template-columns:1fr;
    }

    .sansar-premium-services-heading h2{
        font-size:38px;
    }
}

@media(max-width:600px){

    .sansar-premium-services-wrap{
        padding:70px 5%;
    }

    .sansar-premium-services-heading h2{
        font-size:30px;
    }

    .sansar-service-image{
        height:220px;
    }

    .sansar-service-content{
        padding:25px;
    }

    .sansar-service-content h3{
        font-size:24px;
    }

    .sansar-service-btns{
        flex-direction:column;
    }

    .sansar-call-btn,
    .sansar-whatsapp-btn{
        text-align:center;
        width:100%;
    }
}