.elementor-5018 .elementor-element.elementor-element-49795fb{--display:flex;}.elementor-5018 .elementor-element.elementor-element-34d7196{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-5018 .elementor-element.elementor-element-306110a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5018 .elementor-element.elementor-element-306110a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-5018 .elementor-element.elementor-element-e7a1921{--display:flex;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-5018 .elementor-element.elementor-element-534078c .elementor-repeater-item-6bced06.elementor-social-icon{background-color:#BF4012;}.elementor-5018 .elementor-element.elementor-element-534078c .elementor-repeater-item-6bced06.elementor-social-icon i{color:#FBE7E7;}.elementor-5018 .elementor-element.elementor-element-534078c .elementor-repeater-item-6bced06.elementor-social-icon svg{fill:#FBE7E7;}.elementor-5018 .elementor-element.elementor-element-534078c{--grid-template-columns:repeat(0, auto);--grid-column-gap:30px;--grid-row-gap:0px;}.elementor-5018 .elementor-element.elementor-element-534078c .elementor-widget-container{text-align:center;}.elementor-5018 .elementor-element.elementor-element-534078c .elementor-social-icon{--icon-padding:0.6em;}.elementor-5018 .elementor-element.elementor-element-a6e7c38{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5018 .elementor-element.elementor-element-a6e7c38.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-5018 .elementor-element.elementor-element-855152a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-search{--e-search-input-color:var( --e-global-color-text );}.elementor-widget-search.e-focus{--e-search-input-color:var( --e-global-color-text );}.elementor-widget-search .elementor-pagination{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-5018 .elementor-element.elementor-element-306110a{--width:55.007%;}.elementor-5018 .elementor-element.elementor-element-e7a1921{--width:100%;}.elementor-5018 .elementor-element.elementor-element-a6e7c38{--width:63.96%;}.elementor-5018 .elementor-element.elementor-element-855152a{--width:59%;}}@media(max-width:1024px) and (min-width:768px){.elementor-5018 .elementor-element.elementor-element-306110a{--width:506.431px;}}/* Start custom CSS for html, class: .elementor-element-1488219 *//* Menu &amp; Header Start */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
}

.e-con {
  padding: 0 !important;
}

.custom-header {
  background: var(--gradient);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px !important;
  width: auto;
}

.menu-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bceps-color-dark);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.menu-button:hover {
  /*background: #002066;*/
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-button-text {
  order: 2;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Modal Overlay */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-modal:target {
  opacity: 1;
  visibility: visible;
}

/* Modal Wrapper */
.modal-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  /*max-width: 800px;*/
  max-width: 50vh;
  height: 100vh;
  background: var(--white);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.menu-modal:target .modal-wrapper {
  right: 0;
}

.modal-content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0; /* CRITICAL FIX for mobile */
}

/* Top Row with Close Button */
.menu-top-row {
  padding: 0 5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}

.close-button {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #002066;
}

/* Main Menu */
.main-menu {
  flex: 1;
  padding: 1rem;
  overflow-y: auto; /* Allows scrolling */
  min-height: 0; /* Prevents flexbox overflow */
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 1rem 0 0;
  /*margin: 0;*/
  /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
  /* gap: 40px;*/
}

.menu-item {
  margin-bottom: 0;
}

.menu-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0 0 5px 0;
  padding: 0;
}

/*.menu-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}*/

.menu-link-item-wrapper {
  margin-bottom: 8px;
}

.menu-link-item {
  display: block;
  margin: 0;
  padding: 0;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*color: var(--text-dark);*/
  color: var(--primary-blue);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
}

.menu-link:hover {
  color: var(--primary-blue);
  background: var(--light-blue);
  margin: 0 -10px;
  padding: 12px 10px;
  border-radius: 4px;
}

.link-text {
  flex: 1;
}

/* Collapsible Menu Start*/

/* ===== COLLAPSIBLE MENU ITEM USING DETAILS/SUMMARY ===== */

.menu-item-details {
  margin-bottom: 0;
  border: none;
  background: transparent;

  margin-bottom: 1rem;
}

/* The summary contains the title link AND the toggle icon */
.menu-item-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 0;*/
  padding: 0 1rem 0 1rem;
  cursor: default;
}

.menu-item-details .menu-item-summary a:hover {
  background: var(--light-gray);
  border-radius: 10px;
}

.menu-item-summary::-webkit-details-marker {
  display: none;
}

/* The menu title link - clickable to navigate */
.menu-title-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  flex: 1;
  /*padding: 10px 0;*/
  padding: 0.5rem 1rem;
  display: block;
  /*border-radius: 8px;
    border: 1px solid var(--border);*/
  box-shadow: var(--shadow);
}

.menu-title-link:hover {
  color: #002066;
}

/* The toggle icon - clickable to expand/collapse */
.menu-toggle-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  user-select: none;
  /*transition: transform 0.3s ease;*/
  margin-left: 10px;
  background: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.menu-toggle-icon:hover {
  background: var(--primary-blue);
  color: white;
}

/* Show + when closed */
.menu-item-details:not([open]) .menu-toggle-icon::before {
  content: "+";
}

/* Show − when open */
.menu-item-details[open] .menu-toggle-icon::before {
  content: "−";
}

/* Submenu list styling */
.menu-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--border-light);
  margin-top: 5px;
  margin-left: 2rem;
}

/* Collapsible Menu End*/

/* Responsive */
@media (max-width: 768px) {
  .modal-wrapper {
    width: 100%;
    max-width: none;
    height: 100vh; /* Ensure full viewport height */
    max-height: 100vh;
  }

  .modal-content {
    height: 100%;
    max-height: 100vh;
    overflow-y: auto; /* Allow entire modal to scroll */
  }
  .menu-list {
    grid-template-columns: 1fr;
    /*gap: 30px;*/
  }

  .menu-title {
    font-size: 15px;
  }

  .menu-link {
    font-size: 12px;
    padding: 5px 0;
  }

  .main-menu {
    padding: 2rem 1rem 5rem 1rem;
    /*padding: 2rem 1rem;*/
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    overflow-y: visible;
    flex: none; /* Remove flex grow */
  }
}

/* Prevent body scroll when menu is open */
body:has(.menu-modal:target) {
  overflow: hidden;
}

/* Menu &amp; Header Ends */

/* =====  =====   =====   =====   =====   =====   =====   =====  ===== */

/* Root Start */
:root {
  --primary-blue: #003087;
  --light-blue: #e6f1ff;
  --white: #ffffff;
  /* --gray: #f8f9fa; */
  --text-dark: #1a1a1a;
  --border-light: #e1e4e8;
  /*--primary: #8ed1fc;*/
  --primary: #a3c4db;
  --primary-dark: #5a67d8;
  --primary-text: #6a95b3;
  --primary-light: #e1eff8;
  --bceps-color: #e8736e;
  --bceps-color-dark: #e2544e;
  /*--secondary: #abb8c3;*/
  --secondary: #a3c4db;
  --accent: #f093fb;
  --light: #f7fafc;
  --dark: #2d3748;
  --gray: #718096;
  --light-gray: #e2e8f0;
  --border: #cbd5e0;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #f56565;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  --card-hover: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 20px;*/
}

/* Root End */

/* Country Profile Header */
.country-header {
  background: var(--gradient);
  padding: 4rem 0 2rem;
  color: white;
  text-align: center;
}

.country-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.country-flag {
  width: 300px;
  height: 100px;
  /*background: rgba(255, 255, 255, 0.2);*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.country-flag a, .country-flag a:hover{
    /*border:none !important;*/
    outline:none;
}

.country-flag img.emoji,
.country-flag .emoji {
    height: 3em !important;
    width: 3em !important;
}

.country-title h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.country-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Main Content */
.country-content {
  padding: 3rem 0;
}

.content-section {
  background: var(--white);
  margin-bottom: 2rem;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.5rem;
}
/* Project Info Section */
.project-intro {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-blue);
}

.project-intro p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.project-intro p:last-child {
  margin-bottom: 0;
}
.work-packages-note {
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--primary-blue);
  font-style: italic;
  color: var(--text-light);
}

/* Project Objectives */
.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  background: var(--light-blue);
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  font-size: 1.1rem;
  line-height: 1.6;
}

.objectives-list li::before {
  content: "🎯 ";
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
.objectives-list .deliverables li {
  background: var(--light-blue);
  margin-bottom: 0;
  padding: 0.25rem;
  border-radius: 8px;
  border-left: none;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style: none;
  margin-left: 1.5rem;
}

.objectives-list .deliverables li::before {
  content: "\2714";
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.partners{
    margin-bottom:1rem;
}
.partners li {
  /*background: var(--light-blue);*/
  margin-bottom: 0.2rem;
  /*padding-left: 1rem;*/
  border-radius: 8px;
  border-left: none;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style: none;
  margin-left: 1.25rem;
}

.partners li::before {
  content: "\2714";
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(0, 500px));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

/*.member-photo {
            width: 120px;
            height: 120px;
            background: var(--gradient);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }*/

.member-photo {
  width: 200px;
  height: 250px;
  /*border-radius: 50%;*/
  margin: 0 auto 0.5rem;
  overflow: hidden; /* Critical: prevents image overflow */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray); /* Fallback background */
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the key property */
  display: block;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.member-contact {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.member-contact:hover {
  text-decoration: underline;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  width: 45%;
  border: 1px solid var(--border);
}

.timeline-phase {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: var(--gray);
  line-height: 1.6;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary);
}

/* Related Outputs */
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.output-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.output-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-hover);
}

.output-type {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.output-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.output-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.output-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.output-link:hover {
  text-decoration: underline;
}

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

.fade-in {
  /*opacity: 0;*/
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Up Down Scroll Navigation buttons - fixed position Start */
.updown-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999999999;
}

.updown-button {
  display: block;
  width: 40px;
  height: 40px;
  /*background: #333;*/
  color: white;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}

.updown-button:hover {
  background: #555;
}

/* Target anchors */
#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

#bottom {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -1px;
}
/* Up Down Scroll Navigation buttons - fixed position End*/

/* Footer Start*/
footer {
  /*background: var(--dark);*/
  background: var(--gradient);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 0.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #334155;
  color: white;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .footer-content {
    gap: 1rem;
  }
}

/* Footer End */

/* Responsive Design */
@media (max-width: 768px) {
  .country-header-content {
    flex-direction: column;
    text-align: center;
  }

  .country-title h1 {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-marker {
    left: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .outputs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==== Team Expand/Collapse Styles ==== */

/* The container for the toggle */
.member-details {
  margin-top: 1rem;
  width: 100%;
}

/* The clickable text (View Profile) */
.member-summary {
  cursor: pointer;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none; /* Hides default triangle */
  user-select: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--bceps-color-dark);
  border-radius: 50px;
  background: var(--bceps-color);
}

.member-summary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* Hide default marker in Webkit browsers */
.member-summary::-webkit-details-marker {
  display: none;
}

/* Add custom +/- icon */
.member-summary::after {
  content: "+";
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1;
}

/* Change icon when open */
.member-details[open] .member-summary::after {
  content: "−"; /* Minus sign */
}

.member-details[open] .member-summary {
  background: var(--primary-blue);
  color: var(--white);
  margin-bottom: 1rem;
}

/* The content that appears when expanded */
.member-expanded-content {
  text-align: left; /* Better readability for text */
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  animation: slideDown 0.3s ease-out;
}

.member-org {
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.member-bio {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Animation for smooth opening */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Development Overlay Styles Start*/
.output-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.output-modal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.output-modal-content h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.5rem;
}

.output-modal-content p {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

/* Development Overlay Styles End*//* End custom CSS */
/* Start custom CSS for social-icons, class: .elementor-element-534078c */.elementor-element .elementor-element-241bbc2 .elementor-widget .elementor-widget-html{
    text-align:center;
}/* End custom CSS */
/* Start custom CSS for search, class: .elementor-element-d21e342 *//* ===== FORCE SHOW ELEMENTOR SEARCH WIDGET ===== */

/* Override the hidden class that Elementor adds */
.e-search.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Force show all search elements */
.e-search {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search form */
.e-search-form {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input wrapper */
.e-search-input-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input */
.e-search-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width:100%;
}

/* Force show search button */
.e-search-submit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background:#e8736e !important;
    border-radius:30px !important;
    padding:1rem 2rem !important;
}

/* Force show results container */
.e-search-results-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide the hidden class completely */
.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any inline styles that might be added */
[style*="display: none"] {
    display: block !important;
}

[style*="visibility: hidden"] {
    visibility: visible !important;
}

[style*="opacity: 0"] {
    opacity: 1 !important;
}

/* Make sure search is always visible */
.elementor-widget-container search {
    display: block !important;
    visibility: visible !important;
}

/* Override Elementor's specific hidden states */
.elementor-widget-container .e-search.hidden,
.elementor-widget-container .hidden,
.elementor-widget-container [class*="hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
   /* height: auto !important;
    width: auto !important;*/
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-855152a *//* Override the hidden class that Elementor adds */
.e-search.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Force show all search elements */
.e-search {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search form */
.e-search-form {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input wrapper */
.e-search-input-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input */
.e-search-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width:100%;
}

/* Force show search button */
.e-search-submit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show results container */
.e-search-results-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide the hidden class completely */
.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any inline styles that might be added */
[style*="display: none"] {
    display: block !important;
}

[style*="visibility: hidden"] {
    visibility: visible !important;
}

[style*="opacity: 0"] {
    opacity: 1 !important;
}
/* Make sure search is always visible */
.elementor-widget-container search {
    display: block !important;
    visibility: visible !important;
}

/* Override Elementor's specific hidden states */
.elementor-widget-container .e-search.hidden,
.elementor-widget-container .hidden,
.elementor-widget-container [class*="hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
   /* height: auto !important;
    width: auto !important;*/
}/* End custom CSS */