/* ==========================================================================
   Royal Developers & Builders (RDLPK) - Master Redesign Stylesheet
   Theme: Real Estate / Plots / Property / Development / Construction
   Colors: Vibrant Blue (#1f73a5 & #00b3f6), Slate Grey, Pure White, Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-navy: #1f73a5;
  --primary-blue: #1f73a5;
  --brand-blue: #00b3f6;
  --accent-gold: #d4af37;
  --accent-gold-glow: #f59e0b;
  --sky-blue: #00b3f6;
  --slate-grey: #334155;
  --muted-grey: #64748b;
  --light-grey: #f1f5f9;
  --body-bg: #f8fafc;
  --card-bg: #ffffff;
  --dark-section-bg: #0c1d2e;
  --dark-card-bg: #132a40;
  --border-light: #e2e8f0;
  --font-heading: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(31, 115, 165, 0.1), 0 4px 6px -2px rgba(31, 115, 165, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(31, 115, 165, 0.15), 0 10px 10px -5px rgba(31, 115, 165, 0.05);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--body-bg);
  color: var(--slate-grey);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

.luxury-heading {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--sky-blue);
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #1f73a5 0%, #00b3f6 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar a {
  color: #ffffff;
}

.top-bar a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.top-bar .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
  font-weight: 500;
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.top-bar .social-icons a:hover {
  background: #ffffff;
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.member-login-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.member-login-btn:hover {
  background: #ffffff;
  color: var(--primary-navy) !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Main Navbar Header */
.main-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-fast);
}

.header-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.header-logo-img:hover {
  transform: scale(1.02);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--sky-blue);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy) !important;
  padding: 0.75rem 1rem !important;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--sky-blue) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #1f73a5, #00b3f6);
  transition: var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 4px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  background: #ffffff;
}

.dropdown-item {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--slate-grey);
}

.dropdown-item:hover {
  background: var(--light-grey);
  color: var(--sky-blue);
  transform: translateX(4px);
}

.cta-download-btn {
  background: linear-gradient(135deg, #1f73a5 0%, #00b3f6 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  box-shadow: 0 4px 12px rgba(0, 179, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 179, 246, 0.45);
  color: #ffffff !important;
}

/* Medium Size Center News Flash Modal with Blur Backdrop */
.news-flash-modal .modal-content {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--sky-blue);
  box-shadow: 0 25px 50px -12px rgba(31, 115, 165, 0.25);
  overflow: hidden;
}

.modal-backdrop.show {
  opacity: 0.6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: #0c1d2e;
}

.news-flash-header {
  background: linear-gradient(135deg, #1f73a5 0%, #00b3f6 100%);
  color: #ffffff;
  padding: 18px 24px;
  border-bottom: 3px solid var(--accent-gold);
}

.news-flash-badge {
  background: #ffffff;
  color: var(--primary-navy);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: inline-block;
}

.news-flash-title {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.news-flash-body {
  padding: 24px;
}

.news-flash-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}

/* Hero Carousel Slider */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #1f73a5;
}

.hero-carousel .carousel-item {
  height: 82vh;
  min-height: 540px;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 115, 165, 0.45) 0%, rgba(12, 29, 46, 0.8) 100%);
  display: flex;
  align-items: center;
}

.hero-caption-box {
  max-width: 780px;
  color: #ffffff;
  animation: fadeInUp 1s ease forwards;
}

.hero-tag {
  background: rgba(0, 179, 246, 0.25);
  border: 1px solid var(--sky-blue);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, #00b3f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn-gold {
  background: linear-gradient(135deg, #00b3f6 0%, #1f73a5 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 16px rgba(0, 179, 246, 0.35);
  transition: var(--transition-fast);
}

.btn-gold:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1f73a5 0%, #00b3f6 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 179, 246, 0.5);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.btn-outline-light-custom:hover {
  background: #ffffff;
  color: var(--primary-navy);
  border-color: #ffffff;
}

/* Quick Search Widget Overlay */
.quick-search-widget {
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.search-box-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  box-shadow: 0 20px 40px -10px rgba(31, 115, 165, 0.15);
  border: 1.5px solid rgba(0, 179, 246, 0.2);
}

.search-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-grey);
  margin-bottom: 6px;
  display: block;
}

.search-select {
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  padding: 10px 14px;
  font-weight: 600;
  color: var(--primary-navy);
}

.search-select:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(0, 179, 246, 0.2);
}

/* About Us Section */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  color: var(--sky-blue);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: block;
}

.section-heading {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--primary-navy);
}

.stat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--sky-blue);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted-grey);
  font-weight: 600;
  margin-top: 6px;
}

/* Our Projects Section */
.project-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -10px rgba(31, 115, 165, 0.2);
  border-color: var(--sky-blue);
}

.project-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(31, 115, 165, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-location {
  font-size: 0.85rem;
  color: var(--sky-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.project-desc {
  font-size: 0.92rem;
  color: var(--muted-grey);
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--slate-grey);
}

/* Video Showcase Section (Left Text, Right Embedded Video) */
.video-section {
  background: linear-gradient(135deg, #1f73a5 0%, #0c1d2e 100%);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 179, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.video-heading {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.video-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.video-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #e2e8f0;
}

.video-feature-list li i {
  color: var(--sky-blue);
  font-size: 1.2rem;
  margin-top: 2px;
}

.video-container-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--sky-blue);
}

.video-container-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Media Center Section - 4 Sub-sections Side-by-Side in Row (Dark Theme as requested) */
.media-center-dark {
  background-color: var(--dark-section-bg);
  color: #ffffff;
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.media-section-card {
  background: var(--dark-card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(0, 179, 246, 0.2);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.media-section-card:hover {
  border-color: var(--sky-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 179, 246, 0.2);
}

.media-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 179, 246, 0.2);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.media-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* c-1: Brochures */
.brochure-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brochure-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* c-2: Picture Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-thumb {
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

/* c-3: Virtual Tour */
.virtual-tour-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  background: #000;
  cursor: pointer;
}

.virtual-tour-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.vr-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--sky-blue);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(0, 179, 246, 0.8);
}

/* c-4: News & Events Ticker */
.news-ticker-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

.news-ticker-item {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.news-date {
  font-size: 0.75rem;
  color: var(--sky-blue);
  font-weight: 600;
}

.news-item-title {
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 500;
  margin-top: 4px;
}

/* Maps & Subscribe to News Section */
.maps-newsletter-section {
  padding: 80px 0;
  background: #ffffff;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.newsletter-card {
  background: linear-gradient(135deg, #1f73a5 0%, #00b3f6 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  flex-grow: 1;
}

.newsletter-input::placeholder {
  color: #e2e8f0;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  outline: none;
  color: #ffffff;
}

/* Sales Centers Grid */
.sales-centers-section {
  background: var(--light-grey);
  padding: 80px 0;
}

.sales-center-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
  height: 100%;
}

.sales-center-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-blue);
}

.sales-center-city {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.sales-center-info {
  font-size: 0.88rem;
  color: var(--slate-grey);
}

/* Footer Section */
.main-footer {
  background: #0d1e30;
  color: #94a3b8;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--sky-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--sky-blue);
  padding-left: 6px;
}

.app-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.app-store-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  transition: var(--transition-fast);
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--sky-blue);
  color: #ffffff;
}

.app-store-btn i {
  font-size: 1.8rem;
  color: var(--sky-blue);
}

.copyright-bar {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  transition: var(--transition-fast);
  animation: pulseGreen 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-carousel .carousel-item {
    height: 65vh;
  }
  .newsletter-input-group {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .top-bar .social-icons {
    display: none;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 1.8rem;
  }
}

.container {
    background-color: transparent !important;
}

.flash-news-dialog-title{
    text-align: center;
    width: 90%;
    padding-left: 66px;
}

.news-flash-badge {
    font-size: 0.80rem;
}

.news-flash-body img {
    width: 100%;
    height: auto;
    object-fit: contain;
}