* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/Frutiger LT Arabic 65 Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
html, body {
    background:#04615C;
    background: url('../img/main-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
      font-family: 'Frutiger', sans-serif;
}

.container-fluid {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
}

.row {
    margin: 0; /* Ensures no unwanted gaps */
}

.header {
   
    color: white;
    text-align: center;
    padding: 15px 0;
}

.main {
    flex-grow: 1;

    height: 100%;
}
.bg-div{
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 15px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.header-logo {
    height: 40px; /* Adjust size as needed */
}

.header-icon {
    height:40px; 
   
    
}
.header-icon:hover{
    
    cursor: pointer;
    transform: scale(1.3);
}
.lang-option {
    display: flex; /* To easily control spacing of image and text */
    align-items: center; /* Vertically align image and text */
}

.header-flag {
    width: 50px;
    height: 45px;
    object-fit: cover;
    border-radius: 0.7rem;
}

/* boarding pass start */
.boarding-panel{
    
    background:white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(56, 127, 123, 0.5);
}
/* Remove Blue Border and Box-Shadow on Click */
.accordion-button:focus, 
.accordion-button:active {
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Accordion Button */
.accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: none; /* Removes default border */
    box-shadow: none !important;
}

/* Change Button Color on Hover */
.accordion-button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Remove Focus Background Color */
.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

/* Smooth Animation for Collapse */
.accordion-collapse {
    transition: height 0.4s ease-in-out;
}

/* Accordion Body Styling */
.accordion-body {
    color: white;
    font-size: 1rem;
}
/* Remove Blue Border and Box-Shadow on Click */
.accordion-button:focus, 
.accordion-button:active {
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Accordion Button */
.accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border: none; /* Removes default border */
    box-shadow: none !important;
}

/* Change Button Color on Hover */
.accordion-button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Remove Focus Background Color */
.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: white !important;
    box-shadow: none !important;
}

/* Smooth Animation for Collapse */
.accordion-collapse {
    transition: height 0.4s ease-in-out;
}

/* Accordion Body Styling */
.accordion-body {
    color: white;
    font-size: 1rem;
}

.accordion-button::after {
    filter: invert(1);  /* Makes it white */
}

/* If you want a specific color instead of white */
.accordion-button::after {
    color: red !important; /* Change to any color */
    filter: none;
}
.lang-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Optional: makes entire area clickable */
}

.summaryText{
    font-size: 25px;
}
.lostfoundDiv {
  transition: padding-bottom 0.4s ease; /* smooth transition */
}

.col-bg2{
    background: transparent;
    /* background: rgba(255, 255, 255, 0.2); */
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(5px); */
    text-align: center;
    color: white;


}
.home-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: white;
    width: 50px;
    padding: 0.5rem;
    margin-right: 0.8rem;
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.home-btn:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.8);
    color: white;
    transform: scale(1.1); /* Adds a slight zoom effect */
}
  .weather-icon {
    width: 50px;
    height: auto;
    border: 0;
}
.weather-icon-wrapper {
    position: relative;
    display: inline-block;
}
.weather-temp-badge {
    position: absolute;
    top: -10px;
    /* right: -5px; */
    background: none;
    color: #fff;
    font-size: 0.85rem;
    padding: 0;
    border: none;
    font-weight: normal;
    min-width: unset;
    text-align: right;
    z-index: 2;
    box-shadow: none;
    pointer-events: none;
}
.weather-icon,
.city-time,
.temperature-overlay {
    transition: all 0.3s ease-in-out;
}