@font-face {
  font-family: b-nazanin;
  src: url('../fonts/B-NAZANIN.TTF');
}
@font-face {
  font-family: b-titr;
  src: url('../fonts/B\ Titr\ Bold_0.ttf');
}
.h-phone p{
  text-align: end !important;
}

h1{
  font-family: b-titr !important;
}
p{
  font-family: b-nazanin !important;
   text-align: justify !important;
}
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5bab0c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #5fcf80; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/* ========================================= */

    html, body {

            margin: 0;
            padding: 0;

        }

        body {
            position: relative;
            background: #f8f9fa; /* Light base color */
        }

        /* Color circles */
        body::before {
            content: "";
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4; /* Very subtle visibility */
            background:
                /* #5bab0c circles */
                radial-gradient(circle at 20% 30%, #5bab0c 0%, transparent 15%),
                radial-gradient(circle at 80% 70%, #5bab0c 0%, transparent 20%),

                /* #a1ca0a circles */
                radial-gradient(circle at 40% 20%, #a1ca0a 0%, transparent 18%),
                radial-gradient(circle at 60% 80%, #a1ca0a 0%, transparent 22%),

                /* #dfe626 circles */
                radial-gradient(circle at 10% 50%, #dfe626 0%, transparent 12%),
                radial-gradient(circle at 90% 50%, #dfe626 0%, transparent 25%);
        }
      :root {
            --primary-color: #5bab0c;
            --secondary-color: #aed6f1;
            --text-color: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .top-header {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 10px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            direction: rtl;
        }

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

        .school-info {
            display: flex;
            align-items: center;
            flex-direction: row-reverse;
        }

        .school-logo {
            width: 40px;
            height: 40px;
            margin-left: 10px;
            object-fit: contain;
        }

        .school-name {
            font-weight: 700;
            font-size: 18px;
        }

        .school-motto {
            font-size: 12px;
            opacity: 0.9;
            margin-top: 3px;
        }

        .header-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }

        .phone-number {
            display: flex;
            align-items: center;
            margin-right: 15px;
            font-size: 14px;
            white-space: nowrap;
        }

        .phone-icon {
            margin-left: 5px;
            color: var(--secondary-color);
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            color: var(--text-color);
            font-size: 16px;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .quick-links {
            display: flex;
            gap: 15px;
            margin-right: 20px;
        }

        .quick-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .quick-link:hover {
            color: var(--secondary-color);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .header-right {
                justify-content: space-between;
                margin-top: 10px;
            }

            .quick-links {
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .header-right {
                flex-direction: column-reverse;
                align-items: flex-start;
                gap: 15px;
            }
             .school-info div{
                text-align: center !important;
                margin: 0 auto !important;
             }

            .contact-info {
                margin-left: 0;
                margin-right: 0;
                width: 100%;
                justify-content: space-between;
            }

            .social-icons {
                width: 100%;
                justify-content: center;
            }

            .quick-links {
                width: 100%;
                justify-content: space-around;
                padding: 10px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                margin: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .school-name {
                font-size: 16px;
                text-align: center;
            }

            .school-motto {
                font-size: 11px;
            }

            .phone-number {
                font-size: 13px;
            }

            .quick-links {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
        }
        /* ===================================header=========================== */

.header {
  color: var(--default-color);
background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}



/* Base Styles */
a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

a:hover, a.active {
    color: #4CAF50;
}

/* Mobile Menu Styles */
.mobile-menu {
    margin-bottom: 1rem;
}

.mobile-menu-toggle {
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background-color: #f8f9fa;
}

.mobile-menu-items {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: white;
}

.mobile-menu-items a {
    border-bottom: 1px solid #eee;
}

.mobile-menu-items a:last-child {
    border-bottom: none;
}

.mobile-menu-items a.active {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Large Screen Styles */
@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }
}
/* ========================= */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* اجازه می‌دهد در صورت کم بودن فضا، آیتم‌ها به خط بعدی بروند */
  gap: 15px;
}

.counts .stats-item {
  padding: 20px;
  flex: 1 1 150px; /* آیتم‌ها به صورت ریسپانسیو کش می‌آیند یا جمع می‌شوند */
  max-width: 200px;
  text-align: center;
}

.counts .stats-item span {
  font-size: 40px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
}

/* برای صفحه‌های خیلی کوچک */
@media (max-width: 480px) {
  .counts {
    gap: 10px;
    justify-content: center;
  }

  .counts .stats-item {
    padding: 15px;
    font-size: 12px;
    max-width: 150px;
  }

  .counts .stats-item span {
    font-size: 32px;
  }
}



/* ============================================================== */
 /* Additional styling for better visual harmony */
    .text-shadow {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .btn:hover {
        background-color: #a1ca0a !important;
        border-color: #5bab0c !important;
        transform: translateY(-2px);
    }

    .carousel-indicators button {
        background-color: #dfe626 !important;
    }

    .carousel-indicators .active {
        background-color: #5bab0c !important;
    }
/* ====================================================== */

.left {
  max-width: 45%;
  text-align: center !important;
}

.tag {
  color: #2f855a;
  font-weight: bold;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 30px;
}

.cta {
  background-color: #2f855a;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-align: center !important;
}

.right {
  position: relative;
  width: 400px;
  height: 400px;
  text-align: center !important;
  margin: 0 auto !important;
}
@media (max-width:676px){
  .right{
  transform: translateX(25px);
  }
}


.dot-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
   border-radius: 50%;
  border: 4px solid #2f855a2d;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #2f855a;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(calc(var(--i) * 30deg)) translateX(170px);
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 260px;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 10px;
  object-fit: cover;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}



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


/* Primary Navigation (Visible on Large Screens) */
.primary-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
}

.primary-nav a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    color: rgb(132, 59, 0);
    padding: 5px 5px;

 border-bottom: 3px solid rgb(250, 249, 249);
}

.primary-nav a:hover {
    color: #00a859;
    border-bottom: 3px solid #00a859;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    text-decoration: none;
    color: #644032;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
}

.sidebar-nav a:hover {
    background: #f0f0f0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .primary-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-btn {
        padding: 5px;
        font-size: 12px;
    }
}
/* ================================ */
.description{
    font-size: 18px !important;
    font-family: 'Times New Roman', Times, serif;
}
/* ================================================================ */
/* General styles for the carousel */
#bootstrapCarousel {
    height: 90vh;
    /* Default height for larger screens */
}

#bootstrapCarousel .carousel-item {
    height: 90vh;
    /* Default height for each slide */
}

#bootstrapCarousel .carousel-item img {
    object-fit: cover;
    /* Ensures the image scales properly */
    width: 100%;
    height: 100% !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #bootstrapCarousel {
        height: 80vh !important;
        /* Reduce height on smaller devices */
    }

    #bootstrapCarousel .carousel-item {
        height: 80vh !important;
        /* Reduce slide height */
    }
 #bootstrapCarousel .carousel-item img{
        height: 80vh !important;
        /* Further reduce slide height */
    }

    #bootstrapCarousel .carousel-caption {
        bottom: 10%;
        /* Adjust caption position */
        font-size: 14px;
        /* Smaller text for captions */
    }
}

@media (max-width: 576px) {
    #bootstrapCarousel {
        height: 50vh;
        /* Further reduce height for very small devices */
    }

    #bootstrapCarousel .carousel-item {
        height: 50vh;
        /* Further reduce slide height */
    }
    #bootstrapCarousel .carousel-item img{
        height: 80vh !important;
        /* Further reduce slide height */
    }

    #bootstrapCarousel .carousel-caption {
        bottom: 5%;
        /* Adjust caption position further */
        font-size: 12px;
        /* Even smaller text for captions */
    }
}

/* =========================================================== */
/* Styling the Pagination Links */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover {
    background-color: #007bff;
    color: white;
}

.pagination li.active span {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
}

/* ===============================about-info============================ */
.last-event{
  width: 90%;
  border-radius: 20px;
  margin: 0 auto;
  background-color: #f8d31d;
  position: absolute;
  top: 95vh;
 left: 4%;
 padding: 5px;
 
}
.last-event img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

@media(max-width:560px){
  .last-event img{
   display: none;
  }
  .last-event{
  width: 90%;
  border-radius: 20px;
  margin: 0 auto;
  background-color: #f8d31d;
  position: absolute;
  top: 90vh;
 left: 0;
 padding: 5px;
 
}
}
/* .about-info p {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;

} */
p{
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}
.main-title {
    color: rgb(255, 77, 0);
}

.sub-title {
    color: rgb(0, 190, 0);
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    overflow: hidden;

}

.why-us .box {
    padding: 20px 30px;
    height: 300px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #5bab0c !important;
}

.why-us .box span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #dfe626 !important;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
    color: #fff !important;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    background: #29a558;
    padding: 15px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}
/* ========================== */
.activee {
    border-bottom: 3px solid #29a558 !important;
    color: #29a558 !important;
}
/* ============================Menus========================== */
/* Style for tabs */
.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 10px;
    justify-content: center;
}

.tab {
    padding: 10px 10px;
    font-size: 15px;
    color: #000000;
    margin-right: 5px;
    font-weight: bold;

}

.tab.active {
    border-bottom: 3px solid #29a558;
    color: #29a558;
}

/* Style for tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.food-item {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.food-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.food-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-bottom: 1px solid #f5f5f5;
}

.food-item:hover img {
    transform: scale(1.03);
}

.details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.name {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.fw-bold {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
    flex: 1;
    min-width: 60%;
}

.price {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.2);
}

.description {
    color: #5a6a7e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 8px;
    flex-grow: 1;
}

.des {
    display: inline-block;
    padding-top: 8px;
    border-top: 1px dashed #e0e6ed;
    width: 100%;
}

/* Optional badge for special programs */
.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
/* .chefs .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.chefs .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.chefs .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.chefs .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}
.chefs .member .member-info-content p {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}


.chefs .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.chefs .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.chefs .member .social a:hover {
    color: #cda45e;
}

.chefs .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.chefs .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.chefs .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
}

.chefs .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
} */

 .member {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-img-container {
    height: 250px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    background: white;
}

.member-info h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.position {
    display: inline-block;
    background-color: #5bab0c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.bio {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 100px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar styling */
.bio::-webkit-scrollbar {
    width: 4px;
}

.bio::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.bio::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .member-img-container {
        height: 200px;
    }
}
/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
    width: 100%;
}

.book-a-table .php-email-form .form-group {
    padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.book-a-table .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
    margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.book-a-table .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: #ffffff;
    border-color: #625b4b;
    color: rgb(0, 0, 0);
}

.book-a-table .php-email-form input::-webkit-input-placeholder,
.book-a-table .php-email-form textarea::-webkit-input-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: #cda45e;
}

.book-a-table .php-email-form input {
    height: 44px;
}

.book-a-table .php-email-form textarea {
    padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
    background: #644032;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 16px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
    background: #d3af71;
}

/* ==================================blogs====================================== */
/* Container styling */
.slider-container {
   width: 100% !important;
    height: 80vh;
    margin: 0 auto;
    padding: 0 !important;
    box-sizing: border-box;
}
@media (max-width:650px){
    .slider-container {
        width: 100%;
         height: 50vh;
         margin: 0 auto;
         box-sizing: border-box;
     }
}

/* Slide styling */
.slide {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 450px !important;

}
.slide-image{
width: 100%;
height: 250px;
overflow: hidden;
}
.slide-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 1.2s;
}
.slide-image img:hover{
    transform: scale(1.2);
}
/* Add spacing between slides */
.slick-slide {
    margin: 0 1px;
    display: block;
    /* Adjust the value as needed */
}

.slide-content {
    padding: 15px;
}

.slide-content span {
    font-size: 14px;
    color: #777;
}

.slide-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.slide-content p {
    font-size: 12px;
    color: #777;
}

.slide-content a {
    color: #00a859;
    font-weight: bold;
    text-decoration: none;
}

.slide-content a:hover {
    text-decoration: underline;
}

/* Arrows styling */
.slick-prev,
.slick-next {
    font-size: 0;
    color: transparent;

    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px !important;
    color: #d8ff15 !important;


    width: 40px !important;
    height: 40px !important;

}

.slick-prev {
    left: 0px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 1;
}

.slick-next {
    right: 0px !important;
    width: 40px !important;
    height: 40px !important;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
  }

  .contact .info i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #5bab0c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }

  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
  }

  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: #bab3a6;
  }

  .contact .info .open-hours, .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }

  .contact .php-email-form {
    width: 100%;
  }

  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }





  .contact .php-email-form .sent-message {
    display: none;
    color: #000;
    background: #5bab0c;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
  }

  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;

    border-color: #625b4b;
    color: 000;
  }

  .contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #cda45e;
  }

  .contact .php-email-form input {
    height: 44px;
  }

  .contact .php-email-form textarea {
    padding: 10px 12px;
  }

  .contact .php-email-form button[type="submit"] {
    background: #5bab0c;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 16px;
  }

  .contact .php-email-form button[type="submit"]:hover {
    background: #dfe626;
  }

  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.test{
    background-color: #a1ca0a;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: white;
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
  }

  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d3af71;
    font-size: 26px;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #26231d;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cda45e;
  }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #a1ca0a;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    width: 100%;
    overflow: hidden !important;
  }

  #footer .footer-top {
    background: #a1ca0a;
    border-top: 1px solid #37332a;
    border-bottom: 1px solid #28251f;
    padding: 60px 0 30px 0;
  }

  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }

  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    color: #fff;
  }
  #footer .footer-top .footer-info .social-links{
    display: flex;
    align-items: center;
}
  #footer .footer-top .social-links a {
    font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
    background: #fff;
    color: #00a859;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }

  #footer .footer-top .social-links a:hover {
    background: #e1ff00;
    color: #00a859;
    text-decoration: none;
  }

  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }

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

  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }

  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul a:hover {
    color: #cda45e;
  }

  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #28251f;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #454035;
  }

  #footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    background: #28251f;
    color: white;
  }

  #footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #cda45e;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
  }

  #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #d3af71;
  }

  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }

  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
/* ==================================================== */
.banner{
    background-color: #dfe626;
}
.banner a{
    text-decoration: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #cda45e;
  }

  .back-to-top i {
    font-size: 28px;
    color: #cda45e;
    line-height: 0;
  }

  .back-to-top:hover {
    background: #cda45e;
    color: #1a1814;
  }

  .back-to-top:hover i {
    color: #444444;
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  /* ================================== */
  .sociallinks{
    display: flex;
    justify-content: center;
    gap: 5px;
  }
  .sociallinks a{
    color: #5bab0c;
    transition: all 1s;
  }
.sociallinks a:hover{
    color: #dfe626;
}
/* ========================================= */
.blog-box img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.blog-link{
    text-decoration: none;
    color: #343a40;
}
/* ================================================== */
/* =====    textimonials============= */
/* ============================================= */
/* .test{
    background: #a1ca0a;
} */
.custom-slider{
    width: 100%;

}
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    padding: 0;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: white;
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
  }

 .testimonials .testimonial-item h5 {
    font-size: 12px;
   font-style: italic;
    margin: 10px 0 5px 45px;
    color: white;
  }
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d3af71;
    font-size: 26px;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0  0;
width: 100%;
    background: #29a558;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cda45e;
  }

/* ====================Search============================ */
.search-container {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}
.search-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}
.search-button {
    background-color: #007bff;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-button i {
    color: white;
    font-size: 16px;
}
.search-button:hover {
    background-color: #0056b3;
}
/* ===================================================== */

/*--------------------------------------------------------------
# About----vision-mision-value
--------------------------------------------------------------*/
.why-us .box {
    padding: 5px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #644032;
  }

  .why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00a859;
  }

  .why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 2px 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
  }

  .why-us .box:hover {
    background: #00a859;
    padding: 3px 3px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }

  .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
    color: #fff;
  }
  /* ========================================== */
  /* Scroll Top Button Styles */
    #scroll-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: #5bab0c;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    #scroll-top i {
        font-size: 2rem;
    }

    #scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top:hover {
        background-color: #5bab0c;
        transform: translateY(-3px);
    }
    /* ========================================================map */
       .maps-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        padding: 0 5px;
    }

    .map-wrapper {
        flex: 1 1 45%;
        min-width: 300px;
        margin-bottom: 20px;
    }

    .map-wrapper h3 {
        text-align: right;
        margin-bottom: 15px;
        color: #1a5276;
        font-size: 1.2rem;
    }

    .google-map {
        border: 0;
        width: 100%;
        height: 350px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .maps-container {
            flex-direction: column;
            gap: 20px;
        }

        .map-wrapper {
            flex: 1 1 100%;
        }
    }
    /* =================more info================================ */
 .animated-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.75rem 2rem;
        background-color: #5bab0c;
        color: white;
        border-radius: 0.75rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .animated-btn:hover {
        background-color: #dfe626;
        transform: translateY(-2px);
        color: #fff;
        text-decoration: none;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .animated-btn:active {
        transform: translateY(0);
    }

    .arrow-icon {
        margin-right: 0.5rem;
        transition: transform 0.3s ease;
        font-size: 1.2em;
    }

    .animated-btn:hover .arrow-icon {
        transform: translateX(5px);
    }

    /* Ripple effect */
    .animated-btn::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 1%) center/15000% 15000%;
        opacity: 0;
        transition: opacity 0.5s, background 0.5s;
    }

    .animated-btn:active::after {
        background-size: 100% 100%;
        opacity: 1;
        transition: 0s;
    }
