


/* ==========================================
   MOBILE & RESPONSIVE FORM FIX login.php
   ========================================== */

/* 1. Base Setup (Jo box size ko bigadne se rokega) */
.booking-section *, 
.booking-section *::before, 
.booking-section *::after {
    box-sizing: border-box !important;
}

/* Base style for form-row so it handles layout beautifully */
.booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Inputs ke beech ka gap */
    margin-bottom: 20px;
    width: 100%;
}

/* Base style for form-group */
.booking-form .form-group {
    flex: 1;
    min-width: 250px; /* Desktop par side-by-side rakhega */
    position: relative;
}

/* Inputs aur textareas ko standard width dena */
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block;
}

/* 2. Responsive Styling (Screen width 768px ya usse kam hone par) */
@media (max-width: 768px) {
    
    /* Container ko screen margins ke andar lana */
    .booking-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ek line me do inputs ko cancel karke ek ke niche ek karna */
    .booking-form .form-row {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    /* Har input field pure mobile width par set ho jaye */
    .booking-form .form-group {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Form actions / button container styling */
    .booking-form .form-actions {
        width: 100% !important;
        text-align: center;
    }

    /* Button ko mobile par full width ya responsive banana */
    .booking-form .submit-btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 12px 20px !important;
    }
}











/* Hiding browser native scrollbars but keeping custom scroll functionality */
    .style-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .style-scroll-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Responsive width scaling for standard grids */
    @media (min-width: 1200px) {
        .style-scroll-container .col-xl-2\.4 { width: 20% !important; }
    }
    @media (max-width: 1199px) {
        .style-scroll-container .col-lg-3 { width: 25% !important; }
    }
    @media (max-width: 991px) {
        .style-scroll-container .col-md-4 { width: 33.333% !important; }
    }
    @media (max-width: 767px) {
        .style-scroll-container .col-sm-6 { width: 50% !important; }
    }
    @media (max-width: 575px) {
        .style-scroll-container .col-9 { width: 75% !important; }
    }

    .gallery-item-frame img { transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
    .gallery-item-frame:hover img { transform: scale(1.05); }
    .gallery-nav-btn:hover { color: #c5a880 !important; }








.services-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    width: 100%;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-subheading {
    text-transform: uppercase;
    color: #c5a880;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.3rem;
    color: #1c2229;
    margin-bottom: 15px;
}

.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.services-divider span {
    width: 45px;
    height: 1px;
    background-color: #c5a880;
}
/* ==============================
   SERVICES SECTION
==============================*/

.services-section{
    background:#fff;
    padding:70px 15px;
    font-family:'Poppins',sans-serif;
}

.services-container{
    max-width:1500px;
    margin:auto;
}

.services-subheading{
    display:block;
    text-align:center;
    color:#c5a880;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:8px;
}

.services-title{
    text-align:center;
    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#1d2330;
    margin-bottom:15px;
}

.services-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:45px;
}

.services-divider span{
    width:50px;
    height:1px;
    background:#c5a880;
}

.divider-icon{
    margin:0 10px;
    color:#c5a880;
}

/*=====================
GRID
======================*/

.services-6-grid{

display:grid;

grid-template-columns:repeat(6,minmax(0,1fr));

gap:16px;

}

/*======================
CARD
=======================*/

.style-service-card{

background:#fff;

border-radius:10px;

overflow:hidden;

border:1px solid #ececec;

box-shadow:0 8px 25px rgba(0,0,0,.05);

transition:.35s;

display:flex;

flex-direction:column;

height:100%;

}

.style-service-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.12);

}

/*======================
IMAGE
=======================*/

.card-img-wrapper{

position:relative;

aspect-ratio:4/3;

overflow:hidden;

}

.card-img-wrapper img{

width:100%;

height:100%;

object-fit:cover;

transition:.4s;

}

.style-service-card:hover img{

transform:scale(1.08);

}

/*========================
ICON
========================*/

.style-service-icon-circle{

position:absolute;

left:50%;

bottom:0;

transform:translate(-50%,50%);

width:46px;

height:46px;

background:#020710;

color:#c5a880;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

border:3px solid #fff;

z-index:2;

}

/*=====================
BODY
======================*/

.card-body-content{

padding:34px 12px 18px;

text-align:center;

flex:1;

display:flex;

flex-direction:column;

}

.card-body-content h5{

font-size:clamp(10px,.9vw,16px);

font-weight:700;

margin-bottom:8px;

color:#1b2331;

text-transform:uppercase;

}

.card-body-content p{

font-size:clamp(9px,.75vw,13px);

line-height:1.5;

color:#666;

margin:0;

}

/*=====================
BUTTON
======================*/

.services-btn-wrapper{

text-align:center;

margin-top:35px;

}

.btn-all-services{

display:inline-block;

padding:14px 34px;

background:#020710;

color:#fff;

text-decoration:none;

letter-spacing:1px;

font-weight:600;

font-size:13px;

border-radius:4px;

transition:.3s;

}

.btn-all-services:hover{

background:#c5a880;

color:#020710;

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:1400px){

.services-title{

font-size:38px;

}

}

@media(max-width:1200px){

.services-6-grid{

gap:12px;

}

}

@media(max-width:992px){

.services-title{

font-size:34px;

}

.card-body-content{

padding:28px 10px 15px;

}

}

@media(max-width:768px){

.services-section{

padding:50px 10px;

}

.services-title{

font-size:28px;

}

.card-body-content h5{

font-size:10px;

}

.card-body-content p{

font-size:8px;

line-height:1.35;

}

.style-service-icon-circle{

width:34px;

height:34px;

}

}

@media(max-width:480px){

.services-6-grid{

gap:6px;

}

.card-body-content{

padding:24px 6px 10px;

}

.card-body-content h5{

font-size:8px;

}

.card-body-content p{

font-size:7px;

line-height:1.2;

}

.style-service-icon-circle{

width:28px;

height:28px;

}

}


/* Mobile device specific override style rules */
@media (max-width: 991px) {
    .dropdown-menu {
        display: none; /* By default hidden on mobile rendering stack */
        position: static;
        float: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05); /* Slight dynamic tint shade overlay */
        padding-left: 15px;
        box-shadow: none;
        border: none;
    }
    
    /* Trigger visibility safely via JS injected class */
    .dropdown-menu.show {
        display: block !important;
    }
}

/* Desktop default hover rule mechanism */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
    }
}


/*==========================================================================
    FOOTER & CTA CORE UTILITIES
==========================================================================*/
.footer-container {
    width: 1280px;
    max-width: 92%;
    margin: 0 auto;
}

/*==========================================================================
    EVENT CTA BANNER SECTION
==========================================================================*/
.event-cta-section {
    background: linear-gradient(rgba(10, 18, 30, 0.88), rgba(10, 18, 30, 0.92)), url('/assets/images/event-flower-overlay.png') center center/cover no-repeat;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left-content {
    flex: 0 0 35%;
}

.cta-left-content h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e5b842;
    color: #060c14;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-main-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.cta-right-form {
    flex: 0 0 62%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-grid input, 
.form-grid select {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: all 0.3s;
}

.form-grid input:focus, 
.form-grid select:focus {
    border-color: #e5b842;
    box-shadow: 0 0 8px rgba(229, 184, 66, 0.2);
}

.form-grid input[type="date"] {
    color: #666666;
}

.form-submit-btn {
    width: 100%;
    height: 50px;
    background: #e5b842;
    color: #060c14;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #060c14;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/*==========================================================================
    MAIN FOOTER STYLE
==========================================================================*/
.main-footer {
    background: #040911; /* Precise Deep Dark Luxury Blue/Black */
    padding: 70px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Column 1: Brand details */
.brand-col .text-logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
}

.brand-col .text-logo span {
    color: #e5b842;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.brand-col .text-logo small {
    font-size: 11px;
    color: #ffffff;
    letter-spacing: 4px;
    display: block;
}

.brand-desc {
    color: #a0a7b5;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #e5b842;
    border-color: #e5b842;
    color: #060c14;
    transform: translateY(-3px);
}

/* General Columns Headers */
.footer-col-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
}

/* Columns Lists Links */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #a0a7b5;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-list li a:hover {
    color: #e5b842;
    padding-left: 4px;
}

/* Column 4: Contact Details */
.contact-col {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 35px;
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #a0a7b5;
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-contact-details i {
    color: #e5b842;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-details a {
    color: #a0a7b5;
    transition: color 0.3s;
}

.footer-contact-details a:hover {
    color: #e5b842;
}

/*==========================================================================
    FOOTER BOTTOM BAR
==========================================================================*/
.footer-bottom-bar {
    background: #03060b;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #6c757d;
    font-size: 13px;
}

.bottom-policy-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-policy-links a {
    color: #6c757d;
    font-size: 13px;
    transition: color 0.3s;
}

.bottom-policy-links a:hover {
    color: #e5b842;
}

.bottom-policy-links .divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}


.footer-logo-box {
    margin-bottom: 20px; /* Niche ke content se thoda gap rakhne ke liye */
}

.footer-logo-img {
    max-height: 60px;    /* Aap apne design ke mutabik height adjust kar sakte hain */
    width: auto;         /* Aspect ratio sahi rahega */
    display: block;
    object-fit: contain;
}
/*==========================================================================
    100% PERFECT RESPONSIVE MEDIA QUERIES
==========================================================================*/
@media (max-width: 1200px) {
    .footer-main-grid {
        grid-template-columns: 1.8fr 1fr 1fr 2fr;
        gap: 30px;
    }
    .contact-col { padding-left: 20px; }
}

@media (max-width: 991px) {
    /* CTA Form Responsive Layout */
    .cta-flex-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .cta-left-content, .cta-right-form {
        width: 100%;
        flex: unset;
    }
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Grid Responsive Layout */
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .contact-col {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .cta-left-content h2 {
        font-size: 28px;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .brand-desc {
        max-width: 100%;
    }
}

/* 1. Global Rule: Kisi bhi UL ya LI ke andar underline aur default dots ko hatane ke liye */
/* 1. Global Rule: Kisi bhi UL ya LI ke andar underline aur default dots ko hatane ke liye */
ul, li, ul li a {
    list-style: none !important;      /* Dots hatane ke liye (Sahi Property) */
    list-style-type: none !important; /* Safety ke liye */
    text-decoration: none !important; /* Underline hatane ke liye */
}

/* 2. Hover karne par bhi agar underline aati hai, toh usko bhi block karne ke liye */
ul li a:hover {
    text-decoration: none !important;
}




/* User ko text highlight / select karne se rokta hai */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE 10+ aur Edge */
    user-select: none;         /* Standard syntax */
}

/* Images par drag & drop rokeni ke liye */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* Mouse clicks disable karta hai images par */
}




.drone-homepage-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* --- DRONE 1 (3D FLYING) STYLES --- */
.drone-fly-path {
  position: absolute;
  width: 120px;
  height: 120px;
  animation: flyHero3DPath 22s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}

/* --- DRONE 2 (ARCHITECTURE) STYLES --- */
.drone-architecture-wrapper {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 180px;
  height: 180px;
  opacity: 0.85;
}

.scanner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-left: -80px;
  border: 1px stroke #c5a880;
  border-radius: 50%;
  border-top: 2px solid #c5a880;
  animation: scanRotate 8s linear infinite;
  opacity: 0.4;
}

.drone-hover-wrapper {
  width: 100%;
  height: 100%;
  animation: hoverFloat 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,0.5));
}

.drone-interactive-target, .arch-drone-target {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-out;
}

.propeller {
  transform-origin: center;
  animation: spinProp 0.05s linear infinite !important;
}

.led-blink {
  animation: blinkLed 0.6s ease-in-out infinite alternate;
}

/* --- KEYFRAME ANIMATIONS --- */

/* 3D Path Movement for Drone 1 */
@keyframes flyHero3DPath {
  0% {
    transform: translate(-150px, 12vh) scale(0.6) rotate(-10deg);
  }
  20% {
    transform: translate(20vw, 8vh) scale(0.85) rotate(5deg);
  }
  45% {
    transform: translate(40vw, 45vh) scale(1.3) rotate(-6deg);
  }
  70% {
    transform: translate(60vw, 10vh) scale(0.55) rotate(8deg);
  }
  88% {
    transform: translate(80vw, 35vh) scale(0.9) rotate(-3deg);
  }
  100% {
    transform: translate(105vw, 20vh) scale(0.6) rotate(0deg);
  }
}

@keyframes scanRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hoverFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes spinProp {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes blinkLed {
  0% { opacity: 0.3; }
  100% { opacity: 1; filter: drop-shadow(0 0 5px #c5a880); }
}

/* Responsive tweaking */
@media (max-width: 991px) {
  .drone-architecture-wrapper {
    top: 5%;
    right: 2%;
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .drone-fly-path { 
    width: 85px; 
    height: 85px; 
  }
  .drone-architecture-wrapper {
    display: none; /* Hide architecture drone on mobile to keep layout clean */
  }
}















/* ==========================================
       DRONE CONTAINER & ANIMATION (Pure Visual)
    ========================================== */
    .drone-homepage-layer {
      position: absolute; /* Relative to Homepage Hero */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* Text content clickable rahe */
      z-index: 5;
    }

    /* 1. New Professional S-Curve Fly Path */
    .drone-fly-path {
      position: absolute;
      width: 200px;
      height: 200px;
      /* 20s smooth visual path sequence */
      animation: flyHomepagePath 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
      will-change: transform;
    }

    /* 2. Natural Hover Motion */
    .drone-hover-wrapper {
      width: 100%;
      height: 100%;
      animation: hoverMotion 3.5s ease-in-out infinite alternate;
      filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
    }

    /* 3. Mouse Tilt Inner Target */
    .drone-interactive-target {
      width: 100%;
      height: 100%;
      transition: transform 0.2s ease-out;
    }

    /* SVG Colors */
    .propeller {
      transform-origin: center;
      animation: spinPropeller 0.06s linear infinite !important;
    }
    .led-blink { animation: blinkLed 0.5s ease-in-out infinite alternate; }

    /* ==========================================
       KEYFRAME ANIMATIONS (FLY & ROTATE)
    ========================================== */
    @keyframes flyHomepagePath {
      0% {
        transform: translate(-250px, 15vh) rotate(-10deg);
      }
      25% {
        transform: translate(20vw, 25vh) rotate(5deg);
      }
      50% {
        transform: translate(50vw, 10vh) rotate(-5deg);
      }
      75% {
        transform: translate(80vw, 30vh) rotate(8deg);
      }
      100% {
        transform: translate(110vw, 15vh) rotate(0deg);
      }
    }

    @keyframes hoverMotion {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-18px); }
      100% { transform: translateY(0px); }
    }

    @keyframes spinPropeller { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes blinkLed { 0% { opacity: 0.2; } 100% { opacity: 1; filter: drop-shadow(0 0 4px currentColor); } }

    /* Mobile Responsive Scale */
    @media (max-width: 768px) {
      .drone-fly-path { width: 130px; height: 130px; }
      .homepage-hero h1 { font-size: 2.5rem; }
    }




/* Poori website ko responsive screen limit me rakhne ke liye */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important; /* Screen ko left-right shake hone se rokega */
    margin: 0 !important;
    padding: 0 !important;
}

img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
}






/* --- CSS Reset aur Base Settings --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Yeh sabhi elements ki width/height ko standard rakhta hai */
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Screen se baahar nikalne waale faltu scrollbar ko rokta hai */
    font-family: sans-serif; /* Ek standard font jo sabhi devices par chalta hai */
}

img, video {
    max-width: 100%; /* Images screen se baahar nahi jayengi */
    height: auto;
}







.style-service-icon-circle { position: absolute; bottom: 0; left: 50%; transform: translate(-50%, 50%); width: 42px; height: 42px; background-color: #020710; color: #c5a880; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 3; border: 2px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
    .style-service-card { transition: transform 0.3s ease; }
    .style-service-card:hover { transform: translateY(-5px); }
    .services-section .btn:hover { background-color: #c5a880 !important; color: #020710 !important; }
    @media (min-width: 1200px) { .services-section .col-xl-2 { width: 16.666% !important; } }





/* Mobile device specific override style rules */
@media (max-width: 991px) {
    .dropdown-menu {
        display: none; /* By default hidden on mobile rendering stack */
        position: static;
        float: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05); /* Slight dynamic tint shade overlay */
        padding-left: 15px;
        box-shadow: none;
        border: none;
    }
    
    /* Trigger visibility safely via JS injected class */
    .dropdown-menu.show {
        display: block !important;
    }
}

/* Desktop default hover rule mechanism */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
    }
}


/*==========================================================================
    FOOTER & CTA CORE UTILITIES
==========================================================================*/
.footer-container {
    width: 1280px;
    max-width: 92%;
    margin: 0 auto;
}

/*==========================================================================
    EVENT CTA BANNER SECTION
==========================================================================*/
.event-cta-section {
    background: linear-gradient(rgba(10, 18, 30, 0.88), rgba(10, 18, 30, 0.92)), url('/assets/images/event-flower-overlay.png') center center/cover no-repeat;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left-content {
    flex: 0 0 35%;
}

.cta-left-content h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e5b842;
    color: #060c14;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-main-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.cta-right-form {
    flex: 0 0 62%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-grid input, 
.form-grid select {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: all 0.3s;
}

.form-grid input:focus, 
.form-grid select:focus {
    border-color: #e5b842;
    box-shadow: 0 0 8px rgba(229, 184, 66, 0.2);
}

.form-grid input[type="date"] {
    color: #666666;
}

.form-submit-btn {
    width: 100%;
    height: 50px;
    background: #e5b842;
    color: #060c14;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #060c14;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/*==========================================================================
    MAIN FOOTER STYLE
==========================================================================*/
.main-footer {
    background: #040911; /* Precise Deep Dark Luxury Blue/Black */
    padding: 70px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Column 1: Brand details */
.brand-col .text-logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
}

.brand-col .text-logo span {
    color: #e5b842;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.brand-col .text-logo small {
    font-size: 11px;
    color: #ffffff;
    letter-spacing: 4px;
    display: block;
}

.brand-desc {
    color: #a0a7b5;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #e5b842;
    border-color: #e5b842;
    color: #060c14;
    transform: translateY(-3px);
}

/* General Columns Headers */
.footer-col-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
}

/* Columns Lists Links */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #a0a7b5;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-list li a:hover {
    color: #e5b842;
    padding-left: 4px;
}

/* Column 4: Contact Details */
.contact-col {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 35px;
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #a0a7b5;
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-contact-details i {
    color: #e5b842;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-details a {
    color: #a0a7b5;
    transition: color 0.3s;
}

.footer-contact-details a:hover {
    color: #e5b842;
}

/*==========================================================================
    FOOTER BOTTOM BAR
==========================================================================*/
.footer-bottom-bar {
    background: #03060b;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #6c757d;
    font-size: 13px;
}

.bottom-policy-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-policy-links a {
    color: #6c757d;
    font-size: 13px;
    transition: color 0.3s;
}

.bottom-policy-links a:hover {
    color: #e5b842;
}

.bottom-policy-links .divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}


.footer-logo-box {
    margin-bottom: 20px; /* Niche ke content se thoda gap rakhne ke liye */
}

.footer-logo-img {
    max-height: 60px;    /* Aap apne design ke mutabik height adjust kar sakte hain */
    width: auto;         /* Aspect ratio sahi rahega */
    display: block;
    object-fit: contain;
}
/*==========================================================================
    100% PERFECT RESPONSIVE MEDIA QUERIES
==========================================================================*/
@media (max-width: 1200px) {
    .footer-main-grid {
        grid-template-columns: 1.8fr 1fr 1fr 2fr;
        gap: 30px;
    }
    .contact-col { padding-left: 20px; }
}

@media (max-width: 991px) {
    /* CTA Form Responsive Layout */
    .cta-flex-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .cta-left-content, .cta-right-form {
        width: 100%;
        flex: unset;
    }
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Grid Responsive Layout */
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .contact-col {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .cta-left-content h2 {
        font-size: 28px;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .brand-desc {
        max-width: 100%;
    }
}

/* 1. Global Rule: Kisi bhi UL ya LI ke andar underline aur default dots ko hatane ke liye */
/* 1. Global Rule: Kisi bhi UL ya LI ke andar underline aur default dots ko hatane ke liye */
ul, li, ul li a {
    list-style: none !important;      /* Dots hatane ke liye (Sahi Property) */
    list-style-type: none !important; /* Safety ke liye */
    text-decoration: none !important; /* Underline hatane ke liye */
}

/* 2. Hover karne par bhi agar underline aati hai, toh usko bhi block karne ke liye */
ul li a:hover {
    text-decoration: none !important;
}








/* Desktop layout thin borders setup */
    @media (min-width: 992px) {
        .style-stat-box {
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        .style-stat-box:last-child {
            border-right: none !important;
        }
    }
    
    /* Tablet specific padding corrections */
    @media (max-width: 991px) and (min-width: 768px) {
        .style-stat-box {
            border-right: none;
            padding: 15px 10px;
        }
    }

    /* Mobile rendering structural safety */
    @media (max-width: 767px) {
        .style-stat-box {
            border-right: none;
            padding: 10px 5px;
        }
        .container-stat-item {
            gap: 10px !important;
        }
        .style-stat-box h3 {
            font-size: 1.25rem !important;
        }
        .style-stat-box p {
            font-size: 0.58rem !important;
        }
    }



















/*Abouts page*/

.stats-section {
    background: linear-gradient(rgba(11, 21, 35, 0.9), rgba(11, 21, 35, 0.9)), 
                url('https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    padding: 40px 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-item {
    position: relative;
    padding: 10px 0;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(197, 160, 89, 0.4);
}
.stat-icon {
    font-size: 36px;
    color: #c5a059;
    margin-bottom: 15px;
}
.stat-number {
    font-size: 34px;
    font-weight: 700;
    color: #c5a059;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item::after { display: none !important; }
}



.process-section {
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
}
.section-header {
    text-align: center;
    margin: 30px 0 50px 0;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111;
    display: inline-block;
    position: relative;
}
.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1.5px;
    background-color: #c5a059;
}
.section-title::before { left: -60px; }
.section-title::after { right: -60px; }

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.process-step { text-align: center; flex: 1; }
.icon-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1px solid #c5a059;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    background-color: #fff;
}
.icon-wrapper i { font-size: 26px; color: #0b2130; }
.step-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: #666; line-height: 1.4; max-width: 160px; margin: 0 auto; }
.process-arrow { color: #666; font-size: 16px; margin-bottom: 45px; }

@media (max-width: 992px) {
    .process-grid { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .process-arrow { display: none; }
    .process-step { flex: 1 1 30%; }
}
@media (max-width: 576px) {
    .process-step { flex: 1 1 100%; }
}

.values-outer-container {
    padding: 0 20px;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}
.values-box {
    background-color: #f7f5f0; /* Warm cream background from image */
    border-radius: 12px;
    padding: 10px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.values-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}
.value-card { flex: 1; text-align: left; padding: 0 5px; }
.value-top { display: flex; align-items: center; margin-bottom: 8px; }
.value-icon { font-size: 18px; color: #0b2130; margin-right: 10px; }
.value-title { font-size: 14px; font-weight: 700; color: #111; }
.value-text { font-size: 11.5px; color: #555; line-height: 1.4; }

@media (max-width: 992px) {
    .values-grid { flex-wrap: wrap; gap: 20px; }
    .value-card { flex: 1 1 45%; }
}
@media (max-width: 576px) {
    .value-card { flex: 1 1 100%; }
}


.cta-outer {
    position: relative;
    height: 320px;
    background-color: #0b2130;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}
.cta-side-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.cta-left-bg {
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=500&q=80');
}
.cta-right-bg {
    right: 0;
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=500&q=80');
}
.cta-center-content {
    position: relative;
    z-index: 5;
    width: 60%;
    height: 100%;
    background-color: #0b2130;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}
/* Left and Right CSS Arcs with Gold Border matching the image */
.cta-center-content::before {
    content: ''; position: absolute; top: 0; left: -80px; width: 80px; height: 100%;
    background-color: #0b2130; border-left: 2px solid #c5a059;
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
}
.cta-center-content::after {
    content: ''; position: absolute; top: 0; right: -80px; width: 80px; height: 100%;
    background-color: #0b2130; border-right: 2px solid #c5a059;
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #c5a059;
    margin-bottom: 12px;
    font-weight: 600;
}
.cta-desc {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
}
.cta-btn {
    background-color: #c5a059;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 4px;
    letter-spacing: 1px;
}
@media (max-width: 992px) {
    .cta-side-bg { display: none; }
    .cta-center-content { width: 100%; }
    .cta-center-content::before, .cta-center-content::after { display: none; }
}
@media (max-width: 768px) {
    .cta-title { font-size: 26px; }
}

/* Center Direct Logo Image Setup */
.about-center-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    width: 300px; /* Logo ki dynamic standard width */
}

.about-direct-logo {
    width: 100%;
    height: auto;
    object-fit: contain; /* Logo ko bina stretch kiye visually clean rakhega */
    display: block;
    transition: transform 0.3s ease;
}

/* Subtle hover effect for luxury touch */
.about-direct-logo:hover {
    transform: scale(1.05);
}

/* Mobile responsive engine adjustments */
@media (max-width: 992px) {
    .about-center-logo-wrapper {
        order: -1; /* Mobile view par logo dono cards ke top par shift ho jayega */
        width: 150px;
        margin-bottom: 20px;
    }
}
/*==================================================
    CENTER DYNAMIC LOGO SPHERE & CURVED ARROWS
==================================================*/
.about-center-circle {
    width: 160px;
    height: 160px;
    background-color: var(--dark-navy);
    border: 4px solid var(--dark-navy);
    outline: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 15px 45px rgba(5, 15, 38, 0.2);
}

/* Left & Right Elegant Arc Rings */
.about-center-circle::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-left-color: var(--gold-primary);  
    border-right-color: var(--gold-primary); 
    opacity: 0.8;
}

/* Little dot/cap on the top ring path */
.about-center-circle::after {
    content: "✦";
    position: absolute;
    color: var(--gold-primary);
    font-size: 10px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

/* Inner Container for Logo Image */
.about-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Padding for perfect breathing space around the logo */
}

/* 100% Logo Image Constraints */
.about-center-logo {
    width: 90%;
    height: 90%;
    object-fit: contain; /* Ensures the logo image does not stretch */
    display: block;
    transition: transform 0.3s ease;
}

/* Subtle hover effect on the logo */
.about-center-circle:hover .about-center-logo {
    transform: scale(1.05);
}



/*==================================================
    MISSION & VISION 100% ACCURATE CSS
==================================================*/
:root {
    --gold-primary: #bda069;       /* Muted Luxury Gold */
    --dark-navy: #050f26;          /* Deep Dark Navy */
    --text-paragraph: #555c65;     /* Smooth content text */
    --bg-light: #fdfcf9;           /* Soft warm background canvas from image */
}

/* Main Wrapper Background */
.about-mv-wrapper {
    background-color: var(--bg-light);
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

/* Heading with Left-Right Subtle Gold Strokes */
.about-section-heading {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-section-heading::before,
.about-section-heading::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: var(--gold-primary);
}

.about-section-heading span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-navy);
    letter-spacing: 1.5px;
}

/* Grid Alignment */
.about-mv-grid {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* 100% Image Match Cards */
.about-mv-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 15px;
    border: 1px solid rgba(189, 160, 105, 0.15); /* Soft gold-tinted border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Navy Rounded Circle for Icons */
.about-mv-icon {
    width: 55px;
    height: 55px;
    background-color: var(--dark-navy);
    color: var(--gold-primary); /* Icon is exact Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(5, 15, 38, 0.15);
}

/* Card Heading - Gold Color in Image */
.about-mv-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary); /* Headings are Gold as per design */
    margin: 0 0 12px 0;
}

/* Card Paragraph Text */
.about-mv-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-paragraph);
    margin: 0;
}

/*==================================================
    CENTER DYNAMIC LOGO SPHERE & CURVED ARROWS
==================================================*/
.about-center-circle {
    width: 160px;
    height: 160px;
    background-color: var(--dark-navy);
    border: 4px solid var(--dark-navy); /* Double look wrapper edge */
    outline: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 15px 45px rgba(5, 15, 38, 0.2);
}

/* The Left & Right Curved Dashed/Arrow Rings around the Logo */
.about-center-circle::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-left-color: var(--gold-primary);  /* Left Elegant Arc */
    border-right-color: var(--gold-primary); /* Right Elegant Arc */
    opacity: 0.8;
}

/* Little dots/caps on the ring paths to mimic arrow tips from layout */
.about-center-circle::after {
    content: "✦";
    position: absolute;
    color: var(--gold-primary);
    font-size: 10px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.about-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Image Logo constraints */
.about-center-logo {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block;
}

/*==================================================
    RESPONSIVE FIXES FOR MOBILE VIEW
==================================================*/
@media (max-width: 992px) {
    .about-mv-grid {
        flex-direction: column;
        gap: 60px;
    }
    .about-center-circle {
        order: -1; /* Mobile me logo hamesha dono ke beech me ya top par clean lgega */
    }
    .about-mv-card {
        width: 100%;
        max-width: 500px;
    }
}

/*==================================================
    0. VARIABLES & COLOR SYSTEM (A TO Z MATCH)
==================================================*/
:root {
    --gold-primary: #bda069;       /* Exact muted luxury gold from layout */
    --dark-navy: #050f26;          /* Deep rich dark background color */
    --text-white: #ffffff;
    --text-dark: #1f242c;          /* Pure header dark gray text */
    --text-paragraph: #555c65;     /* Smooth content font shade */
}

/*==================================================
    1. HERO SECTION (Color & Content Locked)
==================================================*/
.about-hero-section {
    background: linear-gradient(to right, rgba(5, 15, 38, 0.94) 35%, rgba(5, 15, 38, 0.65) 100%), 
                url('/assets/images/Ahero.png?q=80&w=1600') no-repeat center center/cover;
    padding: 160px 0 180px 0;
    position: relative;
    text-align: left;
}

.about-hero-content {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

.about-hero-content h2 {
    font-size: 54px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.15;
}

/* Title Span Color (Qorexa Events text color match) */
.about-hero-content h2 span {
    color: var(--gold-primary);
    display: block;
    margin-top: 5px;
}

/* Gold Horizontal Separator Line under title - 100% Same Color */
.about-hero-content h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 25px 0;
}

.about-hero-tagline {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-breadcrumb {
    font-size: 14px;
    color: #cccccc;
    letter-spacing: 0.5px;
}

.about-breadcrumb span {
    color: var(--text-white);
    font-weight: 500;
}

/* Bottom Curve Double Gold Stroke Masks */
.about-hero-section::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    clip-path: ellipse(85% 100% at 50% 100%);
    z-index: 2;
}

.about-hero-section::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 124px;
    background: var(--gold-primary); /* Same Gold Border Under Wave */
    clip-path: ellipse(85% 100% at 50% 100%);
    z-index: 1;
}

/*==================================================
    2. ABOUT INTRO CONTAINER (Who We Are)
==================================================*/
.about-intro-container {
    max-width: 1400px;
    width: 92%;
    margin: 60px auto 100px auto;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.about-intro-content {
    flex: 1.1;
}

/* Tagline Dot Indicator and Font Color */
.about-tagline {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.about-tagline::before {
    content: "●";
    color: var(--gold-primary);
    font-size: 16px;
    margin-right: 8px;
    display: inline-block;
}

.about-intro-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* "Memorable." Text Color inside H3 */
.about-intro-content h3 span {
    color: var(--gold-primary);
}

.about-intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-paragraph);
    margin-bottom: 35px;
}

/* Dark Button Style */
.about-btn-dark {
    background-color: var(--dark-navy);
    color: var(--text-white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 15, 38, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-btn-dark:hover {
    background-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 160, 105, 0.3);
}

/* Right Side Image Layout & Dots Grid Overlay */
.about-intro-image {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.about-intro-image::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 140px;
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 8px 10px;
    z-index: 1;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    /* Image Gold Drop Shadow Effect - Same Gold Color */
    box-shadow: 12px 12px 0px var(--gold-primary);
}

/*==================================================
    3. RESPONSIVE ENGINE
==================================================*/
@media (max-width: 992px) {
    .about-hero-section {
        padding: 100px 0 120px 0;
        text-align: center;
    }
    .about-hero-content h2::after {
        margin: 20px auto;
    }
    .about-hero-section::after, .about-hero-section::before {
        height: 60px;
    }
    .about-intro-container {
        flex-direction: column;
        margin-top: 40px;
        gap: 40px;
    }
    .about-intro-image {
        padding-right: 0;
        width: 100%;
    }
    .about-intro-image img {
        height: 300px;
        box-shadow: 8px 8px 0px var(--gold-primary);
    }
    .about-intro-image::after {
        display: none;
    }
}





/*==================================================
    0. UTILITIES & STRUCTURAL VARIABLE SETTINGS
==================================================*/
:root {
    --gold-primary: #bda069;       /* Corporate Elite Matte Gold */
    --dark-navy: #050f26;          /* Deep rich background match */
    --text-title: #050f26;
    --text-desc: #61666d;
    --bg-light: #f9f9fa;           /* Off-white fluid section canvas background */
}

/* Elegant Section Titles with Horizontal Left-Right Golden Strokes */
.about-section-heading {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-section-heading::before,
.about-section-heading::after {
    content: "";
    height: 1px;
    width: 80px;
    background-color: var(--gold-primary);
    display: inline-block;
}

.about-section-heading span {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-title);
    letter-spacing: 2px;
}

/*==================================================
    1. MISSION & VISION DYNAMIC COMPONENT LAYOUT
==================================================*/
.about-mv-wrapper {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.about-mv-grid {
    max-width: 1250px;
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Card Design Structure */
.about-mv-card {
    flex: 1;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.about-mv-card:hover {
    transform: translateY(-3px);
}

.about-mv-icon {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.about-mv-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-title);
    margin: 0 0 12px 0;
}

.about-mv-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-desc);
    margin: 0;
}

/* Center Logo Sphere Layout */
.about-center-circle {
    width: 170px;
    height: 170px;
    background-color: var(--dark-navy);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(5, 15, 38, 0.15);
}

/* Outer Dynamic Gold Rotation Ring Track Layers */
.about-center-circle::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed var(--gold-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.about-circle-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Image Logo constraints within Center Cluster */
.about-center-logo {
    max-width: 85%;
    height: auto;
    object-fit: contain;
    display: block;
}

/*==================================================
    2. WHY CHOOSE US ELEMENT ENGINE (6 columns)
==================================================*/
.about-features-wrapper {
    background-color: #ffffff;
    padding: 90px 0;
}

.about-features-grid {
    max-width: 1350px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.about-feature-box {
    background: #ffffff;
    padding: 40px 20px 30px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-feature-box:hover {
    transform: translateY(-6px);
    border-color: rgba(189, 160, 105, 0.3);
    box-shadow: 0 15px 35px rgba(189, 160, 105, 0.08);
}

/* Floating Top Sphere Icon Badge styling */
.feat-icon-badge {
    width: 55px;
    height: 55px;
    background-color: var(--dark-navy);
    border: 2px solid var(--gold-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 15px rgba(5, 15, 38, 0.1);
    transition: background-color 0.3s ease;
}

.about-feature-box:hover .feat-icon-badge {
    background-color: var(--gold-primary);
    color: var(--dark-navy);
}

.about-feature-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-title);
    margin: 15px 0 12px 0;
    line-height: 1.2;
}

.about-feature-box p {
    font-size: 12px;
    color: var(--text-desc);
    line-height: 1.6;
    margin: 0;
}

/*==================================================
    3. RESPONSIVE BREAKPOINT MATRICES
==================================================*/
@media (max-width: 1200px) {
    .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 20px;
    }
}

@media (max-width: 992px) {
    .about-mv-grid {
        flex-direction: column;
        gap: 50px;
    }
    .about-center-circle {
        order: -1; /* Mobile view par branding elements hamesha top par setup honge */
    }
    .about-mv-card {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .about-features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 45px 0;
    }
    .about-section-heading span {
        font-size: 14px;
    }
}
/*==============================
      GOOGLE FONTS
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*==============================
        RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}


:root{

    --primary:#D4AF37;
    
    --dark:#081421;
    
    --white:#ffffff;
    
    --light:#f8f8f8;
    
    --transition:.4s ease;
    
    }



    .hero{

        height:100vh;
        
        background:url("../images/hero.png") center center/cover;
        
        position:relative;
        
        display:flex;
        
        align-items:center;
        
        }
        
        .hero-overlay{
        
        position:absolute;
        
        left:0;
        
        top:0;
        
        width:100%;
        
        height:100%;
        
        background:rgba(8,20,33,.65);
        
        }
        
        .hero-content{
        
        position:relative;
        
        z-index:5;
        
        color:#fff;
        
        max-width:620px;
        
        }
        
        .hero-tag{
        
        color:#D4AF37;
        
        font-weight:600;
        
        letter-spacing:2px;
        
        font-size:14px;
        
        text-transform:uppercase;
        
        }
        .hero-content h1{
            font-family:'Playfair Display', serif;
            font-size:72px;
            font-weight:700;
            line-height:0.95;
            letter-spacing:-1px;
            color:#fff;
        }
        
        .hero-content .highlight{
            color:#D4AF37;
            font-style:italic;
        }
        
        .hero h1 span{
        
        color:#D4AF37;
        
        font-style:italic;
        
        }
        
        .hero p{
        
        font-size:18px;
        
        line-height:32px;
        
        margin-bottom:40px;
        
        color:#ddd;
        
        }


        .hero-buttons{

            display:flex;
            
            gap:20px;
            
            }
            
            .btn-primary{
            
            background:#D4AF37;
            
            padding:16px 34px;
            
            color:#081421;
            
            font-weight:600;
            
            transition:.4s;
            
            }
            
            .btn-primary:hover{
            
            background:#fff;
            
            }
            
            .btn-outline{
            
            border:2px solid #D4AF37;
            
            padding:16px 34px;
            
            color:#fff;
            
            transition:.4s;
            
            }
            
            .btn-outline:hover{
            
            background:#D4AF37;
            
            color:#081421;
            
            }

            .header{

                position:absolute;
                
                top:0;
                
                left:0;
                
                width:100%;
                
                z-index:999;
                
                background:transparent;
                
                transition:.4s;
                
                }


                .header.sticky{

                    position:fixed;
                    
                    background:#081421;
                    
                    box-shadow:0 8px 25px rgba(0,0,0,.25);
                    
                    animation:headerSlide .5s ease;
                    
                    }



                    @keyframes headerSlide{

                        from{
                        
                        transform:translateY(-100%);
                        
                        }
                        
                        to{
                        
                        transform:translateY(0);
                        
                        }
                        
                        }

                        /* Navigation */

.nav-menu{

    display:flex;
    
    align-items:center;
    
    gap:32px;
    
    list-style:none;
    
    }
    
    .nav-menu li{
    
    position:relative;
    
    }
    
    .nav-menu li a{
    
    text-decoration:none;
    
    font-size:14px;
    
    font-weight:600;
    
    color:#fff;
    
    letter-spacing:.5px;
    
    transition:.4s;
    
    text-transform:uppercase;
    
    }

    .nav-menu li a:hover{

        color:#D4AF37;
        
        }
        .nav-menu li a::after{

            content:"";
            
            position:absolute;
            
            left:0;
            
            bottom:-8px;
            
            width:0;
            
            height:2px;
            
            background:#D4AF37;
            
            transition:.4s;
            
            }
            
            .nav-menu li a:hover::after{
            
            width:100%;
            
            }
            .dropdown-menu{

                position:absolute;
                
                top:55px;
                
                left:0;
                
                background:#081421;
                
                width:250px;
                
                padding:15px 0;
                
                display:none;
                
                border-top:3px solid #D4AF37;
                
                box-shadow:0 15px 40px rgba(0,0,0,.25);
                
                z-index:999;
                
                }

                .dropdown-menu li{

                    display:block;
                    
                    }
                    
                    .dropdown-menu li a{
                    
                    display:block;
                    
                    padding:12px 22px;
                    
                    font-size:14px;
                    
                    }
                    
                    .dropdown-menu li a:hover{
                    
                    background:#0f2235;
                    
                    padding-left:28px;
                    
                    }

                    .dropdown:hover .dropdown-menu{

                        display:block;
                        
                        animation:dropdown .3s ease;
                        
                        }


                        @keyframes dropdown{

                            from{
                            
                            opacity:0;
                            
                            transform:translateY(15px);
                            
                            }
                            
                            to{
                            
                            opacity:1;
                            
                            transform:translateY(0);
                            
                            }
                            
                            }

                            .book-btn{

                                background:#D4AF37;
                                
                                padding:14px 28px;
                                
                                color:#081421;
                                
                                font-weight:700;
                                
                                border-radius:3px;
                                
                                transition:.4s;
                                
                                text-decoration:none;
                                
                                }
                                
                                .book-btn:hover{
                                
                                background:#fff;
                                
                                transform:translateY(-3px);
                                
                                box-shadow:0 12px 30px rgba(212,175,55,.35);
                                
                                }

                                .dropdown:hover i{

                                    transform:rotate(180deg);
                                    
                                    transition:.4s;
                                    
                                    }



                                    /*==========================
TOP HEADER
===========================*/

.top-header{

    width:100%;

    height:40px;

    background:#081421;

    border-bottom:1px solid rgba(255,255,255,.08);

    position:absolute;

    top:0;

    left:0;

    z-index:999;

}

.top-header-container{

    height:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left{

    display:flex;

    gap:30px;

}

.top-left a{

    color:#fff;

    text-decoration:none;

    font-size:13px;

    transition:.3s;

}

.top-left a:hover{

    color:#D4AF37;

}

.top-left i{

    color:#D4AF37;

    margin-right:8px;

}

.top-right{

    display:flex;

    gap:18px;

}

.top-right a{

    color:#fff;

    font-size:15px;

    transition:.3s;

}

.top-right a:hover{

    color:#D4AF37;

    transform:translateY(-3px);

}

/*==========================
TOP HEADER
===========================*/

.top-header{

    width:100%;

    height:40px;

    background:#081421;

    border-bottom:1px solid rgba(255,255,255,.08);

    position:absolute;

    top:0;

    left:0;

    z-index:999;

}

.top-header-container{

    height:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left{

    display:flex;

    gap:30px;

}

.top-left a{

    color:#fff;

    text-decoration:none;

    font-size:13px;

    transition:.3s;

}

.top-left a:hover{

    color:#D4AF37;

}

.top-left i{

    color:#D4AF37;

    margin-right:8px;

}

.top-right{

    display:flex;

    gap:18px;

}

.top-right a{

    color:#fff;

    font-size:15px;

    transition:.3s;

}

.top-right a:hover{

    color:#D4AF37;

    transform:translateY(-3px);

}


#navbar{

    position:fixed;

    top:40px;

    left:0;

    width:100%;

    z-index:998;

    transition:.4s;

}

#navbar.sticky{

    top:0;

    background:rgba(8,20,33,.95);

    backdrop-filter:blur(12px);

}


.top-right a{
    color:#ffffff;
    font-size:15px;
    transition:0.3s ease;
}

.top-right a:hover{
    transform:translateY(-3px);
}

.top-right a .fa-whatsapp:hover{
    color:#25D366;
}
.top-right a:hover{
    color:#D4AF37;
}


.booking-section{

    padding:120px 0;
    
    background:#f8f8f8;
    
    }
    
    .booking-title{
    
    text-align:center;
    
    margin-bottom:60px;
    
    }
    
    .booking-title h5{
    
    color:#D4AF37;
    
    letter-spacing:2px;
    
    }
    
    .booking-title h2{
    
    font-size:48px;
    
    margin:15px 0;
    
    font-family:'Playfair Display',serif;
    
    }
    
    .booking-form{
    
    background:#fff;
    
    padding:50px;
    
    border-radius:10px;
    
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    
    }
    
    .form-row{
    
    display:flex;
    
    gap:30px;
    
    margin-bottom:25px;
    
    }
    
    .form-group{
    
    flex:1;
    
    display:flex;
    
    flex-direction:column;
    
    }
    
    .form-group label{
    
    margin-bottom:8px;
    
    font-weight:600;
    
    }
    
    .form-group input,
    
    .form-group select,
    
    .form-group textarea{
    
    padding:15px;
    
    border:1px solid #ddd;
    
    font-size:15px;
    
    outline:none;
    
    }
    
    .form-group input:focus,
    
    .form-group textarea:focus,
    
    .form-group select:focus{
    
    border-color:#D4AF37;
    
    }
    
    .submit-btn{
    
    background:#D4AF37;
    
    padding:18px 45px;
    
    border:none;
    
    font-weight:700;
    
    cursor:pointer;
    
    transition:.3s;
    
    }
    
    .submit-btn:hover{
    
    background:#081421;
    
    color:#fff;
    
    }

        /*=========================
 SERVICES SECTION
==========================*/

.services-section{

    padding:100px 0;
    
    background:#fff;
    
    }
    
    .section-title{
    
    text-align:center;
    
    margin-bottom:60px;
    
    }
    
    .section-title span{
    
    color:#D4AF37;
    
    font-weight:600;
    
    letter-spacing:2px;
    
    font-size:14px;
    
    display:block;
    
    margin-bottom:12px;
    
    }
    
    .section-title h2{
    
    font-size:44px;
    
    font-family:'Playfair Display', serif;
    
    color:#081421;
    
    }
    
    .services-grid{
    
    display:grid;
    
    grid-template-columns:repeat(6,1fr);
    
    gap:20px;
    
    }


    .service-card{

        background:#fff;
        
        border:1px solid #eee;
        
        border-radius:8px;
        
        overflow:hidden;
        
        transition:.4s;
        
        text-align:center;
        
        position:relative;
        
        }
        
        .service-card img{
        
        width:100%;
        
        height:180px;
        
        object-fit:cover;
        
        }
        
        .service-icon{
        
        width:70px;
        
        height:70px;
        
        background:#081421;
        
        border-radius:50%;
        
        margin:-35px auto 20px;
        
        display:flex;
        
        align-items:center;
        
        justify-content:center;
        
        position:relative;
        
        z-index:10;
        
        border:4px solid white;
        
        }
        
        .service-icon i{
        
        color:#D4AF37;
        
        font-size:28px;
        
        }


        .service-card h3{

            font-size:20px;
            
            margin-bottom:15px;
            
            }
            
            .service-card p{
            
            padding:0 20px 30px;
            
            font-size:15px;
            
            line-height:28px;
            
            color:#666;
            
            }
            
            .service-card:hover{
            
            transform:translateY(-10px);
            
            box-shadow:0 25px 50px rgba(0,0,0,.15);
            
            }
            
            .service-card:hover img{
            
            transform:scale(1.08);
            
            }
            
            .service-card img{
            
            transition:.5s;
            
            }
            
            .text-center{
            
            text-align:center;
            
            margin-top:50px;
            
            }


            /*=========================
VIEW ALL SERVICES BUTTON
==========================*/

.services-btn{

    text-align:center;

    margin-top:50px;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#081421;

    color:#fff;

    text-decoration:none;

    padding:15px 34px;

    border:2px solid #D4AF37;

    border-radius:3px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.4s;

}

.service-btn i{

    color:#D4AF37;

    transition:.4s;

}

.service-btn:hover{

    background:#D4AF37;

    color:#081421;

    transform:translateY(-3px);

}

.service-btn:hover i{

    color:#081421;

    transform:translateX(6px);

}/*=========================
VIEW ALL SERVICES BUTTON
==========================*/

.services-btn{

    text-align:center;

    margin-top:50px;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    text-decoration:none;

    border:2px solid #D4AF37;

    overflow:hidden;

    transition:.4s;

}

.service-btn span{

    background:#081421;

    color:#fff;

    padding:15px 28px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.arrow-box{

    width:55px;

    height:50px;

    background:#D4AF37;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#081421;

    transition:.4s;

}

.service-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.service-btn:hover .arrow-box{

    background:#c69c28;

}


/*==================================
COUNTER SECTION
==================================*/

.counter-section{

    background:#081421;

    padding:32px 0;

}

.counter-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.counter-item{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    position:relative;

}

.counter-item::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:52px;

    background:rgba(212,175,55,.35);

}

.no-border::after{

    display:none;

}

.counter-icon{

    width:48px;

    text-align:center;

}

.counter-icon i{

    color:#D4AF37;

    font-size:34px;

}

.counter-info{

    text-align:left;

}

.counter-info h2{

    margin:0;

    color:#fff;

    font-size:46px;

    line-height:1;

    font-weight:700;

}

.counter-info h2 span{

    color:#fff;

}

.counter-info h2{

    color:#D4AF37;

}

.counter-info h2 span{

    color:#fff;

}

.counter-info p{

    margin-top:6px;

    color:#fff;

    font-size:12px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:1px;

}
/*==========================
ABOUT SECTION
==========================*/

.about-section{

    padding:90px 0;
    background:#fff;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/* LEFT */

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:12px;
    display:block;
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

/* Experience Box */

.experience-box{

    position:absolute;

    left:35px;

    bottom:-35px;

    width:170px;

    height:170px;

    background:#071522;

    border:2px solid #D4AF37;

    border-radius:10px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.experience-box h2{

    color:#D4AF37;

    font-size:58px;

    margin-bottom:8px;

    font-weight:700;

}

.experience-box span{

    text-align:center;

    line-height:28px;

    font-size:23px;

}

/* RIGHT */

.about-content h5{

    color:#D4AF37;

    font-size:16px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.about-content h2{

    font-family:'Playfair Display',serif;

    font-size:55px;

    line-height:1.2;

    color:#081421;

    margin-bottom:28px;

}

.about-content p{

    color:#666;

    line-height:36px;

    font-size:19px;

    margin-bottom:35px;

}

/* List */

.about-content ul{

    list-style:none;

    padding:0;

    margin:0 0 40px;

}

.about-content li{

    margin-bottom:18px;

    font-size:20px;

    color:#111;

}

.about-content li i{

    color:#D4AF37;

    margin-right:12px;

}

/* Button */

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    background:#071522;

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border:2px solid #D4AF37;

    transition:.4s;

    font-weight:600;

    letter-spacing:1px;

}

.about-btn:hover{

    background:#D4AF37;

    color:#081421;

}

.about-btn i{

    transition:.3s;

}

.about-btn:hover i{

    transform:translateX(6px);

}


/*==============================
GALLERY SECTION
===============================*/

.gallery-section{

    background:#081421;
    padding:90px 0;

}

.section-subtitle{

    display:block;
    text-align:center;
    color:#D4AF37;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:600;

}

.section-title{

    text-align:center;
    color:#fff;
    font-size:48px;
    margin-bottom:60px;
    font-family:'Playfair Display',serif;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

}

.gallery-item{

    overflow:hidden;
    border-radius:8px;

}

.gallery-item img{

    width:100%;
    height:230px;
    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-btn{

    text-align:center;
    margin-top:45px;

}

.gallery-btn a{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#071522;

    color:#fff;

    padding:18px 35px;

    border:2px solid #D4AF37;

    text-decoration:none;

    transition:.4s;

    font-weight:600;

}

.gallery-btn a:hover{

    background:#D4AF37;
    color:#081421;

}



/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.testimonial-area{
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Container */

.testimonial-area .container{
    width: 1320px;
    max-width: 95%;
    margin: auto;
    position: relative;
    z-index: 10;
}

/*=========================================
        FLOWERS
=========================================*/

.testimonial-flower-left{
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    z-index: 1;
}

.testimonial-flower-left img{
    width: 100%;
    display: block;
}

.testimonial-flower-right{
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    z-index: 1;
}

.testimonial-flower-right img{
    width: 100%;
    display: block;
}

/*=========================================
        HEADING
=========================================*/

.testimonial-title{
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-title .sub-title{
    color: #C7A04B;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-title h2{
    margin-top: 15px;
    margin-bottom: 25px;
    color: #0d1b2a;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
}

.title-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-divider span{
    width: 70px;
    height: 2px;
    background: #C7A04B;
}

.title-divider i{
    color: #C7A04B;
    font-size: 18px;
}

/*=========================================
        CARD LAYOUT
=========================================*/

.testimonial-slider{
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.testimonial-card{
    width: 380px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

/*=========================================
        CLIENT HEADER
=========================================*/

.client-header{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.client-image img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4{
    margin: 0;
    font-size: 22px;
    color: #0d1b2a;
}

.client-info p{
    margin: 5px 0;
    color: #777;
    font-size: 14px;
}

.rating{
    color: #C7A04B;
    font-size: 15px;
}

.review{
    border-top: 1px solid #ececec;
    padding-top: 20px;
}

.review p{
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

/*=========================================
        PAGINATION
=========================================*/

.testimonial-pagination{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
}

.testimonial-pagination span{
    width: 12px;
    height: 12px;
    background: #d4d4d4;
    border-radius: 50%;
}

.testimonial-pagination .active{
    background: #C7A04B;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .testimonial-slider{
        flex-wrap: wrap;
    }

}

@media(max-width:768px){

    .testimonial-title h2{
        font-size: 36px;
    }

    .testimonial-card{
        width:100%;
    }

    .testimonial-flower-left,
    .testimonial-flower-right{
        display:none;
    }

}


/*=========================================
        EVENT CTA SECTION
=========================================*/

.event-cta{

    position: relative;

    padding: 70px 0;

    background: linear-gradient(rgba(8,15,30,.80),rgba(8,15,30,.80)),
    url("../images/event-flower-overlay.png") center center/cover no-repeat;

}

.event-cta .container{

    width:1320px;
    max-width:95%;
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

/*=========================
LEFT
=========================*/

.cta-left{

    width:38%;

}

.cta-left h2{

    color:#fff;

    font-size:44px;

    line-height:1.25;

    font-family:"Playfair Display",serif;

    margin-bottom:35px;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    background:#d6a547;

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    border-radius:3px;

    letter-spacing:.5px;

}

.cta-btn:hover{

    background:#fff;

    color:#0d1b2a;

}

/*=========================
FORM
=========================*/

.cta-form{

    width:62%;

}

.cta-form form{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.cta-form input,
.cta-form select{

    height:56px;

    border:none;

    border-radius:4px;

    padding:0 18px;

    font-size:15px;

    background:#fff;

    outline:none;

}

.cta-form input:focus,
.cta-form select:focus{

    border:2px solid #d6a547;

}

.cta-form button{

    height:56px;

    border:none;

    cursor:pointer;

    background:#d6a547;

    color:#fff;

    font-weight:700;

    transition:.3s;

    border-radius:4px;

}

.cta-form button:hover{

    background:#0d1b2a;

}

/* Date + City */

.cta-form input[type="date"]{

    color:#666;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.event-cta .container{

flex-direction:column;

}

.cta-left,
.cta-form{

width:100%;

text-align:center;

}

.cta-form form{

grid-template-columns:1fr;

}

.cta-left h2{

font-size:34px;

}

}

/*=========================================
            FOOTER
=========================================*/

.footer{

    background:#07101f;

    color:#ffffff;

    padding:70px 0 20px;

}

.footer .container{

    width:1320px;

    max-width:95%;

    margin:auto;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1.3fr 1.7fr;

    gap:50px;

    padding-bottom:40px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Logo */

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-col p{

    color:#c7c7c7;

    line-height:28px;

    margin-bottom:25px;

}

/* Heading */

.footer-col h3{

    color:#d6a547;

    font-size:20px;

    margin-bottom:22px;

    position:relative;

}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:2px;

    background:#d6a547;

}

/* Links */

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:14px;

}

.footer-col ul li a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.35s;

}

.footer-col ul li a:hover{

    color:#d6a547;

    padding-left:8px;

}

/* Contact */

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#d0d0d0;

    line-height:26px;

}

.footer-contact i{

    color:#d6a547;

    margin-top:5px;

    width:18px;

}

/* Social */

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:42px;

    height:42px;

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#d6a547;

    border-color:#d6a547;

    transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:25px;

    color:#b8b8b8;

    font-size:14px;

}

.footer-bottom a{

    color:#b8b8b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#d6a547;

}

/* WhatsApp */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:40px;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}

@media(max-width:767px){

.footer-grid{

grid-template-columns:1fr;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

.footer-contact li{

justify-content:center;

}

}


/*=========================================
        FOOTER PREMIUM EFFECTS
=========================================*/

/* Gold top border */

.footer{

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(90deg,#d6a547,#f6d88c,#d6a547);

}

/* Footer Hover Animation */

.footer-col{

    transition:.35s ease;

}

.footer-col:hover{

    transform:translateY(-5px);

}

/* Heading Animation */

.footer-col h3{

    transition:.35s;

}

.footer-col:hover h3{

    color:#ffd27a;

}

/* Link Hover */

.footer-col ul li{

    transition:.3s;

}

.footer-col ul li:hover{

    transform:translateX(6px);

}

/* Contact Icons */

.footer-contact i{

    transition:.35s;

}

.footer-contact li:hover i{

    transform:rotate(10deg) scale(1.15);

    color:#ffd27a;

}

/* Social Icons */

.footer-social a{

    overflow:hidden;

    position:relative;

}

.footer-social a::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.15);

    transition:.45s;

}

.footer-social a:hover::before{

    left:100%;

}

/* Bottom Border */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:25px;

}

/* Copyright */

.footer-bottom p{

    margin:0;

}

/*=========================================
        WHATSAPP BUTTON
=========================================*/

.whatsapp-float{

    animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.5);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}



/*=========================================
        FOOTER FADE
=========================================*/

.footer{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
        SMALL DEVICES
=========================================*/

@media(max-width:576px){

.footer{

padding:50px 0 15px;

}

.footer-logo{

width:150px;

margin:auto auto 20px;

display:block;

}

.footer-col h3{

font-size:18px;

}

.footer-bottom{

font-size:13px;

}

.whatsapp-float{

width:55px;

height:55px;

font-size:26px;

right:18px;

bottom:18px;

}




/* --- Mobile Devices Ke Liye Special Rules --- */
@media (max-width: 768px) {
    /* Agar aapne koi bada container banaya hai to use width 100% de dein */
    .container {
        width: 100%;
        padding: 0 15px; /* Side se thoda gap dene ke liye */
    }

    /* Agar columns bane hue hain to unhe ek ke niche ek karne ke liye */
    .row, .flex-container {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile screens par desktop layout ko proporationately shrink (scale-down) karne ke liye */
@media (max-width: 991px) {
    body {
        /* Entire desktop design fits and shrinks on smaller screens */
        zoom: 70%; 
    }
}

@media (max-width: 576px) {
    body {
        zoom: 45%; /* Mobile ke liye exact desktop design proportional scale-down */
    }
}


/* FORCE DESKTOP VIEW ON ALL DEVICES WITHOUT CHANGING OTHER CODE */
@media (max-width: 1200px) {
  html {
    width: 1380px !important;
    zoom: 80%; /* Scale-down for mobile screens */
    overflow-x: hidden;
  }
  body {
    min-width: 1380px !important;
  }
}

