/*
Theme Name: MBC Website
Description: Myanmar Baptist Convention Official Website - Custom styling for modern, responsive design
Version: 2.0
*/

/*--------------------------------------------------------------
This is the main CSS file that contains custom style rules for the MBC website
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Button Hover Effect

3. CONTENT ELEMENTS
  - Dropdown
  - Breadcrumb
  - Pagination
  - Accordion
  - Form
  - Swiper
  - Modal Video

4. SITE STRUCTURE
  4.1 Header
  4.2 Brand Section
  4.3 About Section
  4.4 Services Section
  4.5 Project Section
  4.6 CTA Section
  4.7 Footer Section

5. PAGES STYLE
  5.1 Projects Page
  5.2 Pricing page 
  5.3 Reviews page
  5.4 News Page
    

  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #091B67;
  --secondary-color: #1E3A8A;
  --accent-color: #F59E0B;
  --black-color: #1F2937;
  --light-black-color: #374151;
  --dark-color: #111827;
  --body-color: #6B7280;
  --gray-color: #9CA3AF;
  --light-color: #F9FAFB;
  --white-color: #FFFFFF;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --danger-color: #EF4444;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F3F4F6;
  --bs-gray-300: #D1D5DB;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 107, 114, 128;
  --bs-light-rgb: rgba(249, 250, 251, 1);
  --bs-dark-rgb: 17, 24, 39;
  --bs-primary-rgb: 9, 27, 103;
}

/* Fonts */
:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--accent-color);
}

/* Header specific link styling */
#header a:hover {
  color: var(--accent-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--accent-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}


/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--white-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--white-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 9, 27, 103;
  --bs-btn-active-color: var(--white-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

/* - Button Hover Effect
--------------------------------------------------------------*/
.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--accent-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Pagination
------------------------------------------------------------- */
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}



/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
#header {
  background-color: #091B67;
}

/* Carousel Styling */
#heroCarousel .carousel-item {
  position: relative;
}

#heroCarousel .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  padding: 3rem;
  margin: 0 auto;
  max-width: 800px;
}

#heroCarousel .carousel-indicators button {
  background-color: var(--accent-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  /* background-color: var(--accent-color); */
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

a.nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: white;
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}

a.nav-link:hover,
a.nav-link:focus,
a.nav-link.active {
  color: var(--accent-color) !important;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

#primary-header .language-dropdown .dropdown-menu {
  width: 200px;
  min-width: 180px;
}

#primary-header .language-dropdown .dropdown-item {
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

#primary-header .language-dropdown .dropdown-item:hover {
  background-color: var(--accent-color);
  color: white;
}

.flag-icon {
  font-size: 1.2em;
}

.language-icon {
  transition: all 0.3s ease;
}

.language-dropdown:hover .language-icon {
  color: var(--accent-color);
}

@media only screen and (max-width: 990px) {
  .navbar-toggler {
    border: 2px solid var(--accent-color) !important;
    padding: 0.5rem !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.5) !important;
  }
  
  .navbar-toggler svg {
    color: var(--accent-color) !important;
    fill: var(--accent-color) !important;
  }
  
  .offcanvas {
    background-color: var(--primary-color) !important;
  }
  
  .offcanvas-body {
    background-color: var(--primary-color) !important;
  }
  
  .header-bottom.offcanvas {
    background-color: var(--primary-color) !important;
  }
  
  #bdNavbar {
    background-color: var(--primary-color) !important;
  }
  
  a.nav-link {
    font-size: 1.5rem;
    color: white !important;
  }

  a.nav-link.active::after,
  a.nav-link:focus::after,  a.nav-link:hover::after {
    width: 0%;
  }
  
  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--accent-color) !important;
  }
  
  #primary-header {
    padding: 0.75rem 0 !important;
  }
  
  .btn-close {
    filter: invert(1);
  }
  
  .offcanvas-header {
    background-color: var(--primary-color) !important;
  }
}

/* Footer Styling */
#footer {
  background-color: var(--primary-color) !important;
  color: var(--light-color) !important;
}

#footer a {
  color: var(--light-color);
  transition: all 0.3s ease;
}

#footer a:hover {
  color: var(--accent-color) !important;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer svg {
  color: var(--light-color);
  transition: color 0.3s ease;
}

#footer svg:hover {
  color: var(--accent-color);
}

#footer h5 {
  color: var(--accent-color);
}

/* Footer hover effects */
#footer .hover-opacity-100:hover {
  opacity: 1 !important;
  color: var(--accent-color) !important;
  transform: translateX(5px);
}

#footer .social-links a {
  transition: all 0.3s ease;
}

#footer .social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

#footer .navbar-brand:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
  #footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #footer .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* People/Leadership Cards Styling */
#people .card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

#people .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

#people .card-body {
  padding: 2rem 1.5rem;
}

#people .card img {
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#people .card:hover img {
  transform: scale(1.05);
}

#people .card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

#people .card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

#people h3 {
  position: relative;
  margin-bottom: 2rem;
}

#people h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* About Us Page Styling */
#about-us {
  position: relative;
}

#about-us .card {
  transition: all 0.3s ease;
  border-radius: 12px;
}

#about-us .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

#about-us .card-title {
  position: relative;
}

#about-us .card-title svg {
  color: var(--accent-color);
}

#about-us .motto-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

#about-us .motto-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateX(-100px) translateY(-100px); }
  100% { transform: translateX(100px) translateY(100px); }
}

#about-us .officer-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

#about-us .officer-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

#about-us .officer-card h5 {
  font-size: 0.95rem;
  line-height: 1.3;
}

#about-us .officer-card p {
  font-size: 0.9rem;
}

/* Timeline effect for historical section */
#about-us .card-body p {
  position: relative;
  padding-left: 1rem;
}

#about-us .card-body p:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Training and Development Programs Section */
.program-section {
  position: relative;
}

.program-card {
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.youth-stats {
  transition: all 0.3s ease;
}

.youth-stats:hover {
  transform: scale(1.05);
}

/* Camp Cards */
.camp-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.camp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.camp-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

.camp-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
}

.camp-body {
  background: #fff;
}

.camp-card:hover .camp-header {
  background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 100%);
}

/* Impact Statement */
.impact-statement {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  transition: all 0.3s ease;
}

.impact-icon:hover {
  transform: rotate(360deg);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Camps Timeline and Statistics */
.camps-section h3 {
  position: relative;
  padding-bottom: 10px;
}

.camps-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0056b3 100%);
  border-radius: 2px;
}

/* Training Areas List Enhancements */
.program-card ul li {
  transition: all 0.2s ease;
  padding: 5px 0;
  border-radius: 4px;
}

.program-card ul li:hover {
  background: rgba(0, 123, 255, 0.05);
  padding-left: 10px;
}

/* Mission Page Specific Styles */
/* Objective Items */
.objective-item {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.objective-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
  background: #fff !important;
}

.objective-item .badge {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

/* Theme Cards */
.theme-card {
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0056b3 100%);
}

.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
}

.year-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%) !important;
  border-radius: 8px !important;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Program Cards */
.program-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
}

.program-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.program-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #0056b3 100%);
}

/* Youth Stats */
.youth-stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%) !important;
  border-radius: 12px !important;
  position: relative;
  overflow: hidden;
}

.youth-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Mission Section Headers */
.mission-header {
  position: relative;
  margin-bottom: 2rem;
}

.mission-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0056b3 100%);
  border-radius: 2px;
}

/* Responsive adjustments for mission page */
@media (max-width: 768px) {
  .objective-item {
    margin-bottom: 1rem !important;
  }
  
  .theme-card .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .year-badge {
    margin-bottom: 0.5rem !important;
    margin-right: 0 !important;
  }
  
  .youth-stats {
    margin-top: 2rem;
  }
}

/* Contact Page Specific Styles */
/* Hero Contact Section */
.hero-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

/* Contact Cards */
.contact-card {
  transition: all 0.3s ease;
  position: relative;
  background: #fff;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15) !important;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0056b3 100%);
  border-radius: 3px 3px 0 0;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Phone Number Badges */
.phone-numbers .badge {
  transition: all 0.2s ease;
  cursor: default;
}

.phone-numbers .badge:hover {
  background: var(--primary-color) !important;
  color: white !important;
  transform: scale(1.05);
}

/* Map Container */
.map-container {
  position: relative;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.map-wrapper iframe {
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: brightness(1.1);
}

.map-caption {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

/* Contact Form */
.contact-form-card {
  border: 2px solid rgba(0, 123, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0056b3 100%);
}

.contact-form-card .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
  transform: translateY(-1px);
}

.contact-form-card .form-label {
  color: #495057;
  margin-bottom: 8px;
}

.contact-form-card .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-card .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-form-card .btn-primary:hover::before {
  left: 100%;
}

.contact-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

/* News Page Specific Styles */
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-10deg);
  transform-origin: top;
}

/* News Cards */
.news-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.news-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .card-img-top {
  transform: scale(1.05);
}

.news-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card .news-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

/* News Filters */
.news-filters {
  margin-bottom: 2rem;
}

.news-filters .btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-filters .btn:hover,
.news-filters .btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Enhanced News Page Styles */

/* Hero Section Enhancements */
.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-icon-container {
  position: relative;
  display: inline-block;
}

.hero-icon {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: iconPulse 3s ease-in-out infinite;
}

.hero-icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Featured News Enhancements */
.featured-news-card {
  border-radius: 20px !important;
  transition: all 0.4s ease;
}

.featured-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.2) !important;
}

.breaking-news-banner {
  border-radius: 0 0 15px 0;
  animation: breakingBlink 2s ease-in-out infinite alternate;
}

@keyframes breakingBlink {
  0% { opacity: 1; }
  100% { opacity: 0.8; }
}

.featured-image-container {
  overflow: hidden;
}

.featured-image-container img {
  transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-image-container img {
  transform: scale(1.02);
}

.image-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.pulse-animation {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
}

.featured-title {
  line-height: 1.3;
  font-weight: 600;
}

.author-avatar {
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Enhanced Filter Section */
.filter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #e9ecef;
}

.filter-btn {
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.filter-count {
  border-radius: 12px;
  font-size: 0.75rem;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-color) !important;
}

/* Enhanced News Cards */
.news-card .image-container {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.news-card .card-img-top {
  transition: transform 0.4s ease;
}

.news-card:hover .card-img-top {
  transform: scale(1.08);
}

.category-overlay {
  backdrop-filter: blur(10px);
  border-radius: 0 0 0 12px;
}

.news-card .image-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .image-overlay {
  opacity: 1;
}

.reading-time {
  display: flex;
  align-items: center;
}

.news-card .card-footer {
  padding-top: 1rem;
  border-top: 1px solid #f1f3f4;
}

.participant-info {
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 15px;
  padding: 0.3rem 0.8rem;
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  33% { 
    transform: translateY(-15px) rotate(120deg); 
  }
  66% { 
    transform: translateY(-5px) rotate(240deg); 
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
    text-align: center;
  }
  
  .hero-stats .stat-item {
    min-width: 80px;
  }
  
  .filter-section {
    padding: 1.5rem;
  }
  
  .filter-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  
  .featured-news-card .card-body {
    padding: 2rem !important;
  }
}

