/* Main CSS for ARD Theme */

@font-face {
    font-family: 'Miguer';
    src: url('../../../../uploads/2026/01/miguersans-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --color-gold: #BC955C;
    --color-green: #004E59;
    --color-dark: #1a1a1a;
    --color-navy: #0e1c2c;
    --color-white: #ffffff;
    --color-text: #333333;
    /* Use Elementor's Primary typography (Miguer from importer) - fallback to Miguer when Elementor not loaded */
   
    }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Miguer', sans-serif !important;
    color: var(--color-navy);
    margin-bottom: 20px;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
}

a {
    transition: all 0.3s ease;
}


.container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 40px;
    /* Wider spacing */
}

/* Elementor page - full width layout */
.elementor-page {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Header */
.site-header {
    background: transparent;
    /* Initially transparent */
    padding: 30px 0;
    /* Increased padding */
    position: fixed;
    /* Sticky behavior */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-white);
    /* White text on transparent/dark bg */
}

.site-header.scrolled {
    background: var(--color-white);
    /* White background on scroll */
    padding: 5px 0;
    /* Reduced padding */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-navy);
    /* Dark text on white bg */
}

/* Solid header for non-homepage pages */
.site-header.header-solid {
    background: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-navy);
}

/* Add top padding to body when header is solid (non-homepage pages) */
/* Using fixed pixel values to match exact header height */
body:not(.home) {
    padding-top: 80px;
}

/* Ensure homepage has no top padding */
body.home {
    padding-top: 0 !important;
}

/* Mobile responsive padding - smaller header on mobile */
@media (max-width: 768px) {
    body:not(.home) {
        padding-top: 65px;
    }
}

/* Header on hover (same as scrolled) */
.site-header.hovered {
    background: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-navy);
}

/* Logo filter for white background */
.site-header.scrolled .site-logo,
.site-header.hovered .site-logo {
    /* If logo needs inversion on white background, uncomment below */
    /* filter: brightness(0) saturate(100%); */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1850px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Montserrat", Sans-serif;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.mobile-menu-icon i {
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Transform icon to X when menu is open */
body.menu-open .mobile-menu-icon i:before {
    content: "\f00d";
    /* FontAwesome times/X icon */
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #004E59 0%, #1a2f42 100%);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay.active {
    left: 0;
}

/* Overlay backdrop */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile-navigation {
    padding: 40px 30px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 18px 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.header-left {
    flex: 1;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}
.mobile-menu-contact .ard-custom-btn{
    display: none;
  }

.main-navigation a {
    color: inherit;
    /* Inherit from header */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
}

.ard-custom-btn{
    /* color: var(--color-white); */
    color: inherit;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
}
.ard-custom-btn:hover{
    color: var(--color-gold);
}

.main-navigation a:hover {
    color: var(--color-gold);
}

/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children {
    position: relative;
}

/* Dropdown arrow indicator */
.main-navigation .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu container */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--color-gold);
}

/* Show submenu on hover */
.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.main-navigation .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--color-navy) !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.main-navigation .sub-menu a:hover {
    background: var(--color-green);
    color: var(--color-gold) !important;
    color: var(--color-white) !important;
    padding-left: 30px;
}

/* Nested submenu (3rd level) */
.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-top: none;
    border-left: 3px solid var(--color-gold);
}

/* Mobile submenu styles */
.mobile-nav-menu .menu-item-has-children {
    position: relative;
}

/* Arrow indicator for mobile menu items with children */
.mobile-nav-menu .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-menu .menu-item-has-children > a::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-nav-menu .menu-item-has-children.active > a::after {
    content: '−';
}

.mobile-nav-menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.active > .sub-menu {
    display: block;
    max-height: 500px;
}

.mobile-nav-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu .sub-menu a {
    font-size: 14px;
    padding: 14px 20px 14px 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
}

.mobile-nav-menu .sub-menu a::after {
    display: none !important;
}

.mobile-nav-menu .sub-menu a:hover {
    color: var(--color-gold) !important;
    background: rgba(207, 161, 94, 0.1);
}

/* Mobile menu contact info */
.mobile-menu-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-contact .mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-menu-contact .mobile-phone i {
    color: var(--color-gold);
}

.mobile-menu-contact .btn-book-now {
    display: block;
    text-align: center;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Center - Logo */
.site-branding {
    flex: 0 0 auto;
    text-align: center;
}

.site-logo {
    max-height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s;
}

.site-logo.site-logo-dark {
    max-height: 80px;
}


/* Logo switching for transparent/solid header */
/* Light logo for transparent header (default) */
.site-logo-dark {
    display: none;
}

.site-logo-light {
    display: block;
}

/* Dark logo for scrolled/hovered/solid header */
.site-header.scrolled .site-logo-dark,
.site-header.hovered .site-logo-dark,
.site-header.header-solid .site-logo-dark {
    display: block;
}

.site-header.scrolled .site-logo-light,
.site-header.hovered .site-logo-light,
.site-header.header-solid .site-logo-light {
    display: none;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header Right - Actions */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}

.btn-book-now {
    border: 1px solid currentColor;
    padding: 8px 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* Hero Section / Slider */
.hero-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    /* Height and Padding handled inline via settings */
}

.slider-container {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Default, overridden by customizer */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
/* Fix: background-attachment: fixed breaks on iOS Safari (iPhone, iPad).
   Use scroll on iOS so feature images actually display. */
@supports (-webkit-touch-callout: inherit) {
    .hero-slide {
        background-attachment: scroll;
    }
}


.hero-content {
    /* Ensure content is above overlay if we add one */
    position: relative;
    z-index: 3;
    text-align: center;
    padding-bottom: 90px;
    /* Reduced to bring button closer to slider controls */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
    /* Delay for text */
}

.hero-slide.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-excerpt {
    display: none;
}

.hero-excerpt-text {
    display: inline-block;
    position: relative;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.7s, transform 0.3s ease 0.7s;
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    animation: none;
}

.hero-slide.active .hero-excerpt-text {
    opacity: 1;
    transform: translateY(0);
    animation: revealTextLeftToRight 2s ease-in-out 1.2s forwards;
}

@keyframes revealTextLeftToRight {
    0% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.hero-excerpt-underline {
    position: relative;
    height: 3px;
    margin-top: 4px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.hero-excerpt-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #BC955C;
    z-index: 1;
}

.hero-slide.active .hero-excerpt-line {
    animation: drawLineLeftToRight 2s ease-in-out 1.2s forwards;
}

.hero-excerpt-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #BC955C;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 12px rgba(188, 149, 92, 1), 0 0 20px rgba(188, 149, 92, 0.8), 0 0 30px rgba(188, 149, 92, 0.5);
    z-index: 2;
}

.hero-slide.active .hero-excerpt-circle {
    animation: moveCircleLeftToRight 2s ease-in-out 1.5s forwards, blinkCircle 0.8s ease-in-out 3.5s infinite;
}

@keyframes drawLineLeftToRight {
    from {
        width: 0;
        left: 0;
    }
    to {
        width: 100%;
        left: 0;
    }
}

@keyframes moveCircleLeftToRight {
    0% {
        left: 0;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        left: calc(100% - 16px);
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes blinkCircle {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 15px rgba(188, 149, 92, 1), 0 0 25px rgba(188, 149, 92, 0.9), 0 0 35px rgba(188, 149, 92, 0.7), 0 0 45px rgba(188, 149, 92, 0.4);
    }
    50% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1.3);
        box-shadow: 0 0 25px rgba(188, 149, 92, 1.5), 0 0 40px rgba(188, 149, 92, 1.2), 0 0 60px rgba(188, 149, 92, 0.9), 0 0 80px rgba(188, 149, 92, 0.6);
    }
}

.hero-logo {
    margin-bottom: 0;
    /* margin-top: 8%; */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    position: relative;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Lottie Animation Container */
.hero-logo-lottie {
    position: relative;
}

.hero-logo-lottie .lottie-container {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    position: relative;
}

.hero-logo-lottie svg {
    max-width: 100%;
    height: auto;
}

.hero-slide.active .hero-logo {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-logo-image {
    animation: logoBounce 1s ease 0.5s;
}


/* Blinking Circle Overlay for Lottie Logo Text */
.hero-logo-lottie::after {
    content: '';
    position: absolute;
    top: 61%;
    left: 73%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #BC955C;
    border-radius: 50%;
    opacity: 0;
    /* box-shadow: 0 0 15px rgba(188, 149, 92, 1), 0 0 25px rgba(188, 149, 92, 0.9), 0 0 35px rgba(188, 149, 92, 0.7), 0 0 45px rgba(188, 149, 92, 0.4); */
    z-index: 10;
    pointer-events: none;
}

.hero-slide.active .hero-logo-lottie::after {
    opacity: 1;
    animation: blinkCircleLottie 2s ease-in-out 2s infinite;
}

@keyframes blinkCircleLottie {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }
}



/* Slider Pagination / Timer */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    /* Position from center */
    transform: translateX(-50%);
    /* Perfect horizontal centering */
    z-index: 10;
    display: flex;
    justify-content: center;
    width: auto;
    /* Only as wide as content */
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.pagination-dot {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-square {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    transition: background-color 0.3s;
}

.pagination-dot.active .dot-square {
    background-color: #fff;
}

/* SVG Timer Ring */
.timer-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    /* Start at top */
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s;
}

.pagination-dot.active .timer-ring {
    opacity: 1;
    /* Show only on active */
}

.progress-ring__circle {
    stroke-dasharray: 113;
    /* 2 * PI * r (18) ≈ 113 */
    stroke-dashoffset: 113;
    /* Start empty */
    transition: stroke-dashoffset 0s linear;
    /* JS will handle animation */
}

/* Animate class handled by JS for the fill effect */
.pagination-dot.active .progress-ring__circle.animating {
    transition: stroke-dashoffset 5s linear;
    /* 5s duration */
    stroke-dashoffset: 0;
}

.hero-content .btn-primary {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: calc(100% - 200px);
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 10;
    font-family:Montserrat, sans-serif  !important;
}


.site-header.hovered a.btn-book-plot{
    color: var(--color-navy);
}
.site-header.hovered a.btn-book-visit{
    color: var(--color-navy);
}
.site-header.hovered a.header-phone{
    color: var(--color-navy);
}
.site-header.hovered a.btn-book-plot:hover, .site-header.hovered a.btn-book-visit:hover, .site-header.hovered a.header-phone:hover {
    color: var(--color-gold);
}

.site-header.scrolled a.btn-book-plot{
    color: var(--color-navy);
}
.site-header.scrolled a.btn-book-visit{
    color: var(--color-navy);
}
.site-header.scrolled a.header-phone{
    color: var(--color-navy);
}
.site-header.scrolled a.btn-book-plot:hover, .site-header.scrolled a.btn-book-visit:hover, .site-header.scrolled a.header-phone:hover {
    color: var(--color-gold);
}



/* Featured Projects */
.featured-projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-top: 0;
    font-size: 20px;
}



.our-vision h2{
    text-transform: uppercase;
  font-weight: 500 !important;
}
.our-vision p{
    padding-top: 30px; 
}
.rudaheading {
    letter-spacing: 0px;
  }
  .elementor-counter .elementor-counter-number-wrapper {
    font-size: 70px !important;
    font-weight: 300 !important;
    
  }
  .elementor-counter .elementor-counter-title {
    line-height:initial !important;
  }
  .rehan-gillani-section h2{
    font-size: 26px;
  }
  .leadership-section h4{
    font-size: 18px;
  }
  .leadership-section p{
    padding-top: 30px;
  }
  .continue-living-section h2{
    font-size: 20px;
  }
  .continue-living-section2 h2{
    font-size: 20px;
  }
  .ard-ruda-stat-number{
    font-family: miguer,sans-serif !important;

  }


/* Book Section Modal */
.book-section {
    background-color: var(--color-green);
    border-radius: 10px;
    border: none;
}

.book-section .modal-header {
    padding: 30px 30px 0 30px;
    position: relative;
}

.book-section .modal-body {
    padding: 20px 30px 30px 30px;
}

#bookNowModal .modal-dialog {
    max-width: 600px;
}

.book-section .book-title {
    text-transform: capitalize;
    font-family: Miguer, sans-serif;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
}

.book-section .book-form .form-group {
    margin-bottom: 20px;
}

.book-section .book-form .form-label ,.book-section .book-form label.form-check-label{
    font-family: Montserrat, sans-serif;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.book-section .book-form .form-label .text-danger {
    color: #ff4444;
}

.book-section .book-form .form-control,
.book-section .book-form .form-select {
    font-family: Montserrat, sans-serif;
    width: 100%;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--color-white);
    color: #000000;
}

.book-section .book-form .form-control::placeholder {
    color: #d4d0ca;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.book-section .book-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.book-section .btn-send-message {
    font-family: Montserrat, sans-serif;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.book-section .btn-send-message:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
    border-color: var(--color-gold);
}

.book-section .btn-send-message:active {
    transform: translateY(0);
}

/* HOD CSD Shortcode Section - Form only */
.ard-hod-csd-section {
    padding: 40px 0;
}
.ard-hod-csd-form-box {
    max-width: 500px;
    margin: 0 auto;
}
.ard-hod-csd-form-body {
    padding: 20px 30px 30px 30px;
}
.ard-hod-csd-form-title {
    font-family: 'Miguer', sans-serif !important;
    color: var(--color-white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/*book now modal close */

/* Hero Discover video popup */
.hero-video-modal .modal-content {
    background: #000;
    border: none;
}
.hero-video-modal .modal-header {
    padding: 0;
    min-height: 0;
}
.hero-video-modal #heroVideoModalBody {
    background: #000;
    min-height: 320px;
}
.hero-video-modal .btn-close-white {
    filter: invert(1);
}

/* Single post (blog) – used by Media & Insights links */
.single-post-wrap {
    padding-top: 2rem;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.single-post__header {
    margin-bottom: 1.25rem;
}
.single-post__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
    color: var(--color-green);
}
.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
    color: var(--color-green);
}
.single-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #666;
}
.single-post__meta > span + span::before {
    content: "· ";
    margin-right: 0.35rem;
}
.single-post__thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}
.single-post__img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.single-post__content {
    line-height: 1.7;
}
.single-post__content p {
    margin-bottom: 1rem;
    font-size: 18px;
}
.single-post__content img {
    max-width: 100%;
    height: auto;
}

/* Share this post – social icons at bottom of each blog post */
.ard-share-post {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}
.ard-share-post__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--color-navy);
}
.ard-share-post__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.ard-share-post__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.ard-share-post__icon:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}
.ard-share-post__icon i {
    font-size: 1.25rem;
    pointer-events: none;
}
.ard-share-post__icon--facebook:hover { background: #1877f2; }
.ard-share-post__icon--linkedin:hover { background: #0a66c2; }
.ard-share-post__icon--twitter:hover { background: #000000; }

/* Blog Archive (home.php, archive.php) – grid of posts */
.ard-blog-archive .ard-blog-archive__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    margin-top: 50px;
}
.ard-blog-archive__header {
    margin-bottom: 2rem;
    text-align: center;
}
.ard-blog-archive__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}
.ard-blog-archive__description {
    margin-top: 0.5rem;
    color: var(--color-text);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.ard-blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.ard-blog-archive__card {
    margin: 0;
}
.ard-blog-archive__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ard-blog-archive__link:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.ard-blog-archive__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #e9ecf2;
    overflow: hidden;
}
.ard-blog-archive__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ard-blog-archive__placeholder {
    background: linear-gradient(135deg, #eef1f7, #dfe6f1);
}
.ard-blog-archive__content {
    padding: 1.25rem;
}
.ard-blog-archive__card-title {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
}

.ard-blog-archive__meta {
    font-size: 0.875rem;
    color: #666;
}
.ard-blog-archive__meta > span + span::before {
    content: " · ";
}
.ard-blog-archive__excerpt {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text);
}
.ard-blog-archive__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}
.ard-blog-archive .pagination,
.ard-blog-archive .nav-links {
    margin-top: 3rem;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* Single ARD Media (single-ard_media.php) – full video page */
.ard-media-single .ard-media-single__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}
.ard-media-single__header {
    margin-bottom: 1.5rem;
}
.ard-media-single__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}
.ard-media-single__video-wrap {
    position: relative;
    margin-bottom: 2rem;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}
.ard-media-single__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.ard-media-single__video iframe,
.ard-media-single__video-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.ard-media-single__no-video {
    padding: 2rem;
    margin: 0;
    color: #666;
    text-align: center;
}
.ard-media-single__content {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}
.ard-media-single__back {
    margin-top: 2rem;
}
.ard-media-single__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--e-global-color-primary, #1754cf);
    font-weight: 600;
    text-decoration: none;
}
.ard-media-single__back-link:hover {
    text-decoration: underline;
}

/* Media & News Archive (archive-ard_media.php) – grid of videos */
.ard-media-archive .ard-media-archive__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0 4rem;
    margin-top: 50px;
}
.ard-media-archive__header {
    margin-bottom: 2rem;
    text-align: center;
}
.ard-media-archive__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}
.ard-media-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.ard-media-archive__card {
    margin: 0;
}
.ard-media-archive__link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ard-media-archive__link:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.ard-media-archive__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #e9ecf2;
    overflow: hidden;
}
.ard-media-archive__video-wrap {
    position: absolute;
    inset: 0;
}
.ard-media-archive__video-wrap iframe,
.ard-media-archive__video-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}
.ard-media-archive__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ard-media-archive__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef1f7, #dfe6f1);
}
.ard-media-archive__card-title {
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}
.ard-media-archive .pagination,
.ard-media-archive .nav-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}



/* Footer */
.site-footer.ard-footer {
    --ard-footer-accent: #417671;
    --ard-footer-bg: var(--color-navy);
    --ard-footer-text: rgba(255, 255, 255, 0.90);
    --ard-footer-muted: rgba(255, 255, 255, 0.65);
    --ard-footer-border: rgba(255, 255, 255, 0.10);

    background-color: var(--ard-footer-bg);
    color: var(--ard-footer-text);
    padding: 72px 0 22px;
}

.site-footer.ard-footer a {
    color: inherit;
}

.site-footer.ard-footer a:hover {
    color: var(--ard-footer-accent);
}

.ard-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 42px;
    margin-bottom: 44px;
}

.ard-footer__brand .custom-logo {
    max-height: 44px;
    width: auto;
}

.ard-footer__home {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ard-footer__name {
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 16px;
}

.ard-footer__tagline {
    margin: 12px 0 0;
    color: var(--ard-footer-muted);
    font-size: 13px;
    line-height: 1.6;
}

.ard-footer__desc {
    margin: 14px 0 0;
    color: var(--ard-footer-muted);
    font-size: 14px;
    line-height: 1.8;
    max-width: 420px;
}

.ard-footer__h {
    color: var(--ard-footer-accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 16px;
}

.ard-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ard-footer__menu a {
    color: var(--ard-footer-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    opacity: 0.95;
}

.ard-footer__menu a:hover {
    opacity: 1;
}

.ard-footer__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.ard-footer__meta-k {
    display: block;
    color: var(--ard-footer-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ard-footer__meta-v {
    display: inline-flex;
    align-items: center;
    color: var(--ard-footer-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
}

.ard-footer__link {
    text-decoration: none;
}

.ard-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--ard-footer-accent);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    transition: transform 240ms ease, filter 240ms ease;
}

.ard-footer__cta:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.site-info.ard-footer__bottom {
    border-top: 1px solid var(--ard-footer-border);
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: var(--ard-footer-muted);
}


/* Pagination Container */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Default Page Numbers */
.nav-links .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.nav-links .page-numbers:hover {
    background-color: #004E59;
    border-color: #004E59;
    color: #fff;
    transform: translateY(-2px);
}

/* Current Page */
.nav-links .page-numbers.current {
    background-color: #004E59;
    border-color: #004E59;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

/* Next / Prev Buttons */
.nav-links .next,
.nav-links .prev {
    padding: 0 18px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .nav-links .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }
}






@media (min-width: 320px) and (max-width: 575px)  {
    .site-logo.site-logo-light{
        display: none;
    }
 .hero-logo {
        margin-top: -300px;
      }
    .mobile-navigation {
        padding: 5px 15px;
      }
      .mobile-nav-menu a {
        font-size: 11px !important;
        font-weight: 500;
      }
      .mobile-nav-menu a:hover {
        padding-left: 5px;
      }
      .mobile-nav-menu .sub-menu a {
        font-size: 14px;
        padding: 5px 10px 10px 17px;
        font-weight: 500;
        font-size: 11px !important;
      }
      .header-right .ard-custom-btn.header-phone {
        display: none !important;
      }
  
      .mobile-nav-overlay {
        padding-top: 20px;
      }
    .hero-logo {
        margin-bottom: 0;
        margin-top: -45px; 
    }
    .hero-content .btn-primary {
        top: calc(100% - 180px) !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
      } 
      .mobile-nav-menu a {
        font-size: 12px;
      }
      .mobile-menu-contact .btn-book-now {
        padding: 10px 14px;
        font-size: 12px;
        
      }
      .mobile-menu-contact .mobile-phone {
        font-size: 12px;
      }

      .hero-logo-lottie .lottie-container {
        width: 450px;
      }
      .ard-partnership-visual-overlay {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
      }
      .ard-media__tab-txt {
        font-size: 11px !important;
        font-weight: 500 !important;
      }
      .ard-partnership-visual-card {
        padding: 25px !important;
      }

    .book-section .book-form .form-label {
      font-size: 14px;
    }
    .book-section .book-form .form-control,
    .book-section .book-form .form-select {
      font-size: 14px;
      padding: 10px 14px;
    }
    .book-section .book-form .form-control::placeholder {
      font-size: 14px;
    }
    .book-section .book-title {
      font-size: 20px;
   }
   .book-section .btn-send-message {
      font-size: 14px;
      padding: 10px 24px;
   }
   .ard-blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .site-main.container {
    padding: 0 20px;
  }
  .nav-links .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    padding: 0 10px;
}

}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
.site-header.scrolled .site-logo,
.site-header.hovered .site-logo {
    max-height: 60px;
}
    .site-header {
        padding: 15px 0;
    }

    /* Show only right mobile menu icon */
    .mobile-menu-icon {
        display: block;
        font-size: 24px;
        /* Bigger icon */
        padding: 0px;
    }

    /* Hide left toggle button */
    .mobile-menu-toggle {
        display: none;
    }

    /* Hide desktop navigation */
    .header-left {
        display: none;
    }

    /* Hide "after logo" menu in header on mobile (shown in overlay instead) */
    .header-menu-after-nav {
        display: none;
    }

    /* Hide phone number on mobile */
    .header-right .ard-custom-btn.header-phone {
        display: block;
    }

    /* Adjust header layout for mobile - 3 columns now */
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 15px;
        align-items: center;
    }
    .header-right .ard-custom-btn.btn-book-visit,.header-right .ard-custom-btn.btn-book-plot{
        display: none;
      }
    .mobile-menu-contact .ard-custom-btn{
        display: block;
        text-align: center;
        background: var(--color-gold);
        color: var(--color-white);
        border: none;
        padding: 10px 14px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color: var(--color-white) !important;
      }
     .mobile-menu-contact .btn-book-now {
        display: none;
      }

    .site-branding {
        order: 1;
        text-align: left;
    }

    .site-title {
        font-size: 18px;
    }

    .site-logo {
        max-height: 35px;
    }

    .header-right {
        order: 2;
        flex: 0;
    }

    .btn-book-now {
        font-size: 11px;
        padding: 6px 12px;
    }

    .mobile-menu-icon {
        order: 3;
    }
}


/* Responsive sizing for Lottie logos */
@media screen and (min-device-width:576px) and (max-device-width: 768px) {
    .hero-logo-lottie .lottie-container {
        max-width: 500px;
        min-width: 450px;
    }
    .hero-content .btn-primary {
        top: calc(100% - 190px) !important;
      }
      .mobile-nav-menu a {
        font-size: 14px;
      }
      .ard-partnership-visual-overlay {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
      }
}

@media screen and (min-device-width:768px) and (max-device-width: 991px) { 
    .main-navigation ul {
        gap: 5px;
      }
      /* .hero-logo {
        margin-top: -300px;
      } */
      .main-navigation a {
        color: inherit;
        font-weight: 500;
        font-size: 10px;
      }
      .mobile-menu-contact .btn-book-now{
        display: none;
      }

     
      .elementor-counter .elementor-counter-number-wrapper {
        font-size: 40px !important;
        font-weight: 300 !important;
      }
}


@media screen and (min-device-width:992px) and (max-device-width: 1350px) { 
    .main-navigation ul {
        gap: 5px;
      }
      /* .hero-logo {
        margin-top: -300px;
      } */
      .main-navigation a {
        color: inherit;
        font-weight: 500;
        font-size: 10px;
      }
      .btn-book-now{
        font-size:10px;
        padding: 2px 6px;
      }
      .header-right {
        gap: 5px;
        font-size: 11px;
        font-weight: 600;
      }
      .mobile-menu-contact .btn-book-now{
        display: none;
      }

      .ard-custom-btn,.btn-book-now {
        font-size: 10px;
        font-weight: 500;
      }
      .elementor-counter .elementor-counter-number-wrapper {
        font-size: 40px !important;
        font-weight: 300 !important;
      }
}



@media (max-width: 1024px) {
    .ard-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    .ard-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


