
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #C0EEF2;
  --secondary-color:              #5a6f80;
  --section-bg-color:             #f0f8ff;
  --site-footer-bg-color:         #44525d;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #5bc1ac;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Metropolis', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                18px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}



/********** Template CSS **********/
:root {
    --primary: #F3525A;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
  }

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
    color: #F3525A;
    margin-top: 0%;
    font-size: 52px;
}


h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h4,
.font-weight-bold {
    font-weight: 700 !important;
    font-size: 30px;
    color: #383e52;
}

h3,
.font-weight-bold {
    font-weight: 700 !important;
    color: #F3525A
}

h5,
h6,
.font-weight-bold {
    font-weight: 700 !important;
    color: #F3525A;
}

h6,
.font-weight-bold {
    font-weight: 700 !important;
    color: #F3525A;
    font-size: 50px;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.navbar {
    height: 70px; /* Fixed height for the navbar */
    display: flex;
    align-items: center; /* Center items vertically */
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-brand {
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove default padding */
}

.navbar-logo {
    max-height: 450px; /* Ensures the image doesn't exceed the navbar height */
    max-width: none; /* Allows the image to scale proportionally */
    width: auto; /* Maintain aspect ratio */
    margin-bottom: 10px;
}


/* Responsive Adjustments */
/* Media Query for Small Media Views */
@media (max-width: 991.98px) {
    /* Hide the logo image and show the title */
    .navbar-logo {
        display: none !important;
    }

    .navbar-title {
        display: inline-block;
        font-size: 13px;
        font-weight: bolder;
        color: red;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif      
            
    }
}

/* Media Query for Medium and Larger Media Views */
@media (min-width: 992px) {
    /* Show the logo image and hide the title */
    .navbar-logo {
        display: inline-block !important;
    }

    .navbar-title {
        display: none !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: #F3525A;
    outline: none;
    transition: .5s;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
    h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
    color: #F3525A;
    margin-top: 0%;
    font-size: 32px;
    position: relative;
}
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .about-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 350px;
    height: 400px;
    object-fit: cover;
  }
  
  .custom-text-box {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center;    /* Center horizontally */
    justify-content: center; /* Center vertically */
   
    text-align: center; /* Align text */
    padding: 1rem; /* Add padding for smaller screens */
}

.counter-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0; /* Space between counter items */
}

.counter-thumb .d-flex {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

.counter-number {
    font-size: 2.5rem; /* Default size */
    font-weight: bold;
    color: #333; /* Customize color */
}

.counter-number-text {
    font-size: 1rem;
    margin-left: 0.5rem; /* Space between number and text */
    color: #666; /* Customize color */
}

.counter-text {
    font-size: 1.25rem;
    margin-top: 0.5rem; /* Space between number and description text */
    color: #444; /* Customize color */
    font-weight: 400;
}
  .custom-text-box {
    padding: 60px 40px;
    font-size: 20px;
  }


  @media (max-width: 991.98px) {
    .custom-text-box {
        padding: 10px 0;
        text-align: center;
        font-weight: bold;
    }

    .custom-text-box p {
        
        font-size: 18px;
        text-align: center;
        color: #5a6f80;
      }

      .counter-number .custom-text-box p  {
        
        font-size: 52px;
        color: #2b82c9;
        padding: 10px;

        
      }

      /* Responsive Styles */
@media (max-width: 768px) {
    .counter-number {
        font-size: 52px; /* Reduce size for small screens */
    }

    .counter-number-text {
        font-size: 18px; /* Adjust text size */
    }

    .counter-text {
        font-size: 1rem; /* Adjust description text size */
    }
}

@media (max-width: 480px) {
    .custom-text-box {
        padding: 0.5rem; /* Add more padding for extra small screens */
    }

    .counter-thumb {
        margin: 0.8rem 0; /* Reduce spacing */
    }

    .counter-number {
        font-size: 1.8rem; /* Further reduce size */
    }

    .counter-number-text {
        font-size: 0.8rem; /* Adjust text size */
    }

    .counter-text {
        font-size: 0.9rem; /* Adjust description text size */
    }
}
}
  
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .section-bg {
    background-color: #F3E5F5;
  }
  
  .section-overlay {
    background: #F3525A;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }
  
  .section-overlay + .container {
    position: relative;
  }
  
  /*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
    color: #F3525A;
  }
  
  
  /*---------------------------------------
    CUSTOM LIST               
  -----------------------------------------*/
  .custom-list {
    margin-bottom: 0;
    padding-left: 0;
  }
  
  .custom-list-item {
    list-style: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  
  /*---------------------------------------
    CUSTOM TEXT BOX               
  -----------------------------------------*/
  .custom-text-box {
    background: white;
    border-radius: 20px;
    margin-bottom: 24px;
    padding: 40px;
  }
  
  .custom-text-box-image {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .custom-text-box-icon {
    background: #F3E5F5;
    border-radius: 100px;
    color: #FF8A65;
    font-size: 22px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    line-height: 30px;
  }
  
  
  /*---------------------------------------
    COUNTER NUMBERS              
  -----------------------------------------*/
  .counter-thumb {
    margin: 20px;
    margin-bottom: 0;
  }
  
  .counter-number,
  .counter-text {
    
    color: #5a6f80;
    display: block;
  }
  
  .counter-number,
  .counter-number-text {
    color:  #F3525A;
    font-size: 52px;
    font-weight: 700;
    line-height: normal;
  }
  
  /*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .testimonial-section::before {
    content: "";
    background-color: #F3525A;
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -30px;
    margin: auto;
    width: 250px;
    height: 250px;
  }
  
  .testimonial-section::after {
    content: "";
    background: var(--custom-btn-bg-color);
    border-radius: 50%;
    position: absolute;
    bottom: -110px;
    right: -80px;
    width: 350px;
    height: 350px;
  }
  
  #testimonial-carousel .carousel-caption {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  #testimonial-carousel .carousel-title {
    background: var(--section-bg-color);
    line-height: normal;
    margin-bottom: 30px;
  }
  
  #testimonial-carousel .carousel-title::before {
    content: open-quote;
    color: var(--p-color);
    font-size: var(--h1-font-size);
    position: relative;
    top: 10px;
    right: 10px;
  }
  
  #testimonial-carousel .carousel-title::after {
    content: close-quote;
    color: var(--p-color);
    font-size: var(--h1-font-size);
    position: relative;
    top: 10px;
    left: 10px;
  }
  
  #testimonial-carousel .carousel-title {
    quotes: "“" "”" "‘" "’";
  }
  
  #testimonial-carousel .carousel-name {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
  }
  
  #testimonial-carousel .carousel-name::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
  }
  
  .carousel-name-title {
    font-weight: var(--font-weight-semibold);
  }
  
  #testimonial-carousel .carousel-indicators {
    position: relative;
    top: 150px;
    bottom: auto;
    margin-top: 50px;
    margin-bottom: 150px;
  }
  
  #testimonial-carousel .carousel-indicators li {
    text-indent: inherit;
    background: transparent;
    margin: 0 10px; 
  }
  
  #testimonial-carousel .carousel-indicators li,
  #testimonial-carousel .carousel-indicators li::before {
    width: 45px;
    height: 45px; 
  }
  
  #testimonial-carousel .carousel-indicators .avatar-image {
    width: 45px;
    height: 45px; 
  }
  
  #testimonial-carousel .carousel-indicators .active,
  #testimonial-carousel .carousel-indicators .active .avatar-image {
    background: transparent;
    width: 50px; 
    height: 50px;
  }

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

/*---------------------------------------
  PROGRAMS              
-----------------------------------------*/

/* General Program Grid Layout */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns for the first row */
    gap: 20px; /* Space between program cards */
    margin: 20px auto;
    width: 90%; /* Adjust container width */
}


/* Program Card Styling */
.program-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 15px;
}

.program-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    border-radius: 10px 10px 0 0;
}

.program-card .program-content {
    padding: 15px;
}

.program-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Hover Effects */
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
        gap: 15px;
    }

    /* Make program cards 4 and 5 stack horizontally within their grid space */
    .program-grid .program-card:nth-child(4),
    .program-grid .program-card:nth-child(5) {
        grid-column: span 1; /* Make sure these are same size as others */
        display: flexbox;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
}

/* Media Query for Extra Small Screens */
@media (max-width: 480px) {
    .program-grid {
        grid-template-columns: 1fr; /* One column for very small screens */
    }

    .program-card {
        padding: 10px; /* Less padding on very small screens */
    }
}

/* ==========================
   General Section Styling
=========================== */
.partners-section {
    padding: 60px 0; /* Add padding to the section */
    background-color: #f9f9f9; /* Light background color */
}

/* ==========================
   Grid Layout & Column Styling
=========================== */

.col-lg-3, .col-md-6, .col-12 {
    padding: 0 15px; /* Padding around columns */
    margin-bottom: 30px; /* Space between the blocks vertically */
}

/* ==========================
   Featured Block Styling
=========================== */
.featured-block {
    background-color: #ffffff; /* White background for each partner block */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Ensure no overflow from images */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-block-image {
    max-width: 100%; /* Make image fill the block */
    height: auto;
    display: block; /* Remove space below images */
    border-radius: 8px; /* Make images have rounded corners */
}

/* ==========================
   Hover Effects for Featured Block
=========================== */
.featured-block:hover {
    transform: translateY(-5px); /* Slightly raise the block */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

/* ==========================
   ==========================
   Responsive Styling
=========================== */

/* Medium Screen (Tablet) Adjustments */
@media (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 48%; /* Make two columns on medium-sized screens */
    }
}

/* Small Screen (Phone) Adjustments */
@media (max-width: 576px) {
    .col-12 {
        flex: 0 0 100%; /* Full-width blocks on small screens */
    }

    .partners-section {
        padding: 30px 0; /* Less padding on small screens */
    }

    .featured-block {
        margin-bottom: 15px; /* Reduce bottom margin for better spacing */
    }
}

/* ==========================
   General Topbar Styling
=========================== */
.topbar {
    background-color: #0056b3; /* Primary background color */
    color: #ffffff; /* White text color */
    padding: 10px 0; /* Padding for spacing */
}

.top-shape {
    display: inline-flex; /* Inline-flex layout for content alignment */
    align-items: center; /* Center items vertically */
    background-color: #0056b3; /* Match the primary color */
    border-radius: 30px; /* Rounded edges for the topbar container */
    padding: 10px 20px; /* Inner padding for spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.top-shape p {
    margin: 0; /* Remove default margin */
    font-size: 14px; /* Adjust font size for readability */
}

.top-shape a {
    color: #ffffff; /* White text for email links */
    text-decoration: none; /* Remove underline from links */
    font-weight: 500; /* Slightly bold font */
    transition: color 0.3s ease; /* Smooth hover transition */
}

/* ==========================
   Responsive Adjustments
=========================== */
@media (max-width: 768px) {
    .topbar {
        text-align: center; /* Center-align content on smaller screens */
        padding: 15px 0; /* Increase padding */
    }

    .top-shape {
        flex-direction: flex; /* Stack items vertically */
        padding: 15px; /* Adjust padding for smaller viewports */
    }

    .me-3, .pe-3 {
        margin-right: 0 !important; /* Remove margins for stacked layout */
        padding-right: 0 !important;
    }

    .border-end {
        border: none; /* Remove the divider on smaller screens */
    }
}

/* Donation Section Styling */
.container {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    position: center;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    color: #F3525A;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #F3525A;
    margin-bottom: 20px;
    
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.bg-light {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-light p {
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.bg-light strong {
    color: #333;
}

p.mt-3 {
    margin-top: 20px;
    font-style: italic;
    color: #555;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


     /* reCAPTCHA Styling */
     .g-recaptcha {
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }
    
    button {
        background-color: #f0ad4e; /* Blue color */
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    
    button:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: scale(1.05); /* Slightly enlarges on hover */
    }
    
    button:active {
        background-color: #004494; /* Even darker on click */
        transform: scale(0.98); /* Slightly shrinks on click */
    }
    

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    p.mt-3 {
        margin-top: 20px;
        font-style: italic;
        color: #555;
        text-align: center;
    }

    h1 {
        font-size: 25px;
        font-weight: 700;
        color: #F3525A;
        margin-bottom: 20px;
        text-align: center;
    }

    p {
        font-size: 0.9rem;
        text-align: center;
    }

    .bg-light {
        padding: 15px;
    }
}



/* Map Section Styling */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    height: 80%;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* General Responsive Design */
@media (max-width: 768px) {
    .contact-section .form-floating {
        margin-bottom: 15px;
    }

    .contact-section button {
        font-size: 16px;
        padding: 12px;
    }
}

/* Linkedin*/
:root {
    --primary-color: #0077b5;
    --shadow-light: #ffffff;
    --shadow-dark: #d1d9e6;
    --background: #ecf0f3;
}

[data-theme="dark"] {
    --primary-color: #00a0dc;
    --shadow-light: #2a2a2a;
    --shadow-dark: #1a1a1a;
    --background: #232323;
}

.container1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--background);
    box-shadow: 5px 5px 10px var(--shadow-dark), -5px -5px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

    .theme-toggle:hover {
        transform: scale(1.1);
    }

.linkedin-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--background);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .linkedin-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(0, 119, 181, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .linkedin-icon:hover::before {
        transform: translateX(100%);
    }

    .linkedin-icon:hover {
        transform: translateY(-5px);
        box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    }

    .linkedin-icon:active {
        transform: translateY(2px);
        box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    }

    .linkedin-icon i {
        font-size: 2.5rem;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .linkedin-icon:hover i {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .linkedin-icon {
        width: 30px;
        height: 30px;
    }

        .linkedin-icon i {
            font-size: 2rem;
        }
     }

     
   /* Navbar General Styles */
.navbar {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* Logo Title (Visible on Small Devices) */
.navbar-title {
    font-size: 15px;
    font-weight: bolder;
    color: #F3525A;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
}

/* Navbar Logo */
.navbar-logo {
    max-height: 450px;
    max-width: 100%;
}

/* Menu Toggle Icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 25px;
    height: 25px;
    margin-right: 100%;
}

/* Collapse Menu Styling */


.navbar-nav .nav-item .nav-link {
    font-size: 14px;
    color: blue;
    padding: 8px 15px;
    text-transform: capitalize;
}

.navbar-nav .nav-item .nav-link.active {
    color: #007bff;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Donate Button Styling */
custom-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

@media (max-width: 1080px) {
    /* Ensure the navbar stays fixed */
    .navbar {
        position: relative;
        z-index: 1000; /* Higher z-index to stay on top */
    }

    /* Style the toggle menu to display on top */
    .navbar-collapse {
        position: relative;
        top: 100%; /* Position just below the navbar */
        left: 0;
        width: 50%; /* Full width */
        background-color: #fff; /* Ensure menu has a background color */
        z-index: 1050; /* Ensure it stays on top of other elements */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    }

    .navbar-nav .nav-item {
        text-align: center;
        margin: 0;
        height: 50px;
        font-size: 12px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px; /* Add padding for touch-friendly navigation */
        font-size: 16px;
        color: #555;
       

    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none; /* Remove border for the last item */

    }

    .custom-btn {
        margin: 10px auto; /* Center the button */
        display: block;
        width: 90%; /* Adjust width for small screens */
    }


}
