:root {
  --accent: #ffd700;
  --dark: #0b1220;
  --light: #f9fafb;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}
.nav-item .active {
  color: #007bff !important; /* Example: blue text color */
  font-weight: bold; /* Example: bold text */
  border-bottom: 2px solid #007bff; /* Example: blue underline */
}
.btn-light{
  background-color: #c40404 !important;
  color: white;
}

.navbar {
  background: #17181b !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}


/* Navbar with golden gradient border */
.navbar {
border-bottom: 2px solid transparent; /* placeholder for gradient */
background-color: #fff; /* or transparent if over a video */
position: sticky;
top: 0;
z-index: 1000;
}

/* Gradient border using pseudo-element */
.navbar::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 8px;
background: linear-gradient(180deg,rgba(162, 121, 13, 1) 0%, rgba(235, 209, 151, 1) 50%, rgba(162, 121, 13, 1) 100%);
}



.navbar-brand img {
  height: 100px;
}
.nav-link {
  color: #ffd700 !important;
  font-weight: 500;
  margin-right: 1.3rem;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--accent) !important;
}

/* Dropdown styling */
.nav-item.dropdown .dropdown-menu {
border: none;
border-radius: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
color: #333;
transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
background: linear-gradient(90deg, #ffd700, #b8860b);
color: #fff;
}

/* Optional: Hover dropdown on desktop */
@media (min-width: 992px) {
.nav-item.dropdown:hover .dropdown-menu {
display: block;
}

}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
}
.hero-content .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
}
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-outline-light {
  border: 2px solid white;
  color: white;
}



.welcome-section {
  background: #A37502;
background: linear-gradient(180deg, rgba(163, 117, 2, 1) 0%, rgba(201, 158, 46, 1) 23%, rgba(235, 169, 2, 1) 50%, rgba(209, 159, 31, 1) 73%, rgba(163, 117, 2, 1) 100%);
      color: white;
      text-align: center;
      padding: 25px 0;
      font-family: "Times New Roman", serif;
      font-size: 2rem;
      letter-spacing: 2px;
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 20% 100%);
      /* clip-path: polygon(41% 0, 100% 0, 100% 100%, 14% 100%); */
    }


@media (max-width: 992px) {
  .welcome-section {
    background: #A37502;
background: linear-gradient(180deg, rgba(163, 117, 2, 1) 0%, rgba(201, 158, 46, 1) 23%, rgba(235, 169, 2, 1) 50%, rgba(209, 159, 31, 1) 73%, rgba(163, 117, 2, 1) 100%);
        color: white;
        text-align: center;
        padding: 25px 0;
        font-family: "Times New Roman", serif;
        font-size: 2rem;
        letter-spacing: 2px;
        clip-path: none;
      }
      .welcome-section2 {
        background: #A37502;
      background: linear-gradient(180deg, rgba(163, 117, 2, 1) 0%, rgba(201, 158, 46, 1) 23%, rgba(235, 169, 2, 1) 50%, rgba(209, 159, 31, 1) 73%, rgba(163, 117, 2, 1) 100%);
            color: white;
            text-align:left;
            padding: 25px 0;
            font-family: "Times New Roman", serif;
            font-size: 2rem;
            letter-spacing: 2px;
            clip-path: none !important;
          }


}

.welcome-section2 {
  background: #A37502;
background: linear-gradient(180deg, rgba(163, 117, 2, 1) 0%, rgba(201, 158, 46, 1) 23%, rgba(235, 169, 2, 1) 50%, rgba(209, 159, 31, 1) 73%, rgba(163, 117, 2, 1) 100%);
      color: white;
      text-align:left;
      padding: 25px 0;
      font-family: "Times New Roman", serif;
      font-size: 2rem;
      letter-spacing: 2px;
      /* clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 20% 100%); */
      clip-path: polygon(0 0, 75% 0, 80% 100%, 0% 100%);
    }


    .welcome-section span{
      font-family: "Oleo Script Swash Caps", system-ui;
      font-weight: 400;
      font-style: normal;
    }

section {
  padding: 80px 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.give-section {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.give-2 {
  background: var(--accent);
  color: white;
  padding: 100px 20px;
}
.give-section .btn {
  background: white;
  color: var(--accent);
  border-radius: 50px;
}

footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 50px 0;
}
footer a {
  color: #93c5fd;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}:root {
  --accent: #A2790D;
  --dark: #0b1220;
  --light: #f9fafb;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}

.navbar {
  background: #17181b !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}


/* Navbar with golden gradient border */
.navbar {
border-bottom: 2px solid transparent; /* placeholder for gradient */
background-color: #fff; /* or transparent if over a video */
position: sticky;
top: 0;
z-index: 1000;
}

/* Gradient border using pseudo-element */
.navbar::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 8px;
background: linear-gradient(180deg,rgba(162, 121, 13, 1) 0%, rgba(235, 209, 151, 1) 50%, rgba(162, 121, 13, 1) 100%);
}



.navbar-brand img {
  height: 100px;
}
.nav-link {
  color: #ffbb00 !important;
  font-weight: 500;
  margin-right: 1.3rem;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--accent) !important;
}

/* Dropdown styling */
.nav-item.dropdown .dropdown-menu {
border: none;
border-radius: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
color: #333;
transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
background: linear-gradient(90deg, #ffd700, #b8860b);
color: #fff;
}

/* Optional: Hover dropdown on desktop */
@media (min-width: 992px) {
.nav-item.dropdown:hover .dropdown-menu {
display: block;
}

}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
}
.hero-content .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
}
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-outline-light {
  border: 2px solid white;
  color: white;
}

section {
  padding: 0px 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.give-section {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.give-section .btn {
  background: white;
  color: var(--accent);
  border-radius: 50px;
}

footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 50px 0;
}
footer a {
  color: #93c5fd;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.hero-section {
  position: relative;
  height: 80vh; /* Full screen height */
  /* background: url('../Images/app_bg.jpg') center/cover no-repeat; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
  z-index: 1;
}
.page_slider {
  position: relative;
  height: 55vh; /* Full screen height */
  /* background: url('../Images/app_bg.jpg') center/cover no-repeat; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.page_slider h1{
  position: absolute;
  color: #ffffff !important;
  z-index: 10;
}

.page_slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
  z-index: 1;
}



.hero-section .btn {
  background: goldenrod;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-section .btn:hover {
  background: gold;
}
/* ################ contact us ############################# */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: url('assets/Images/contact-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* black overlay */
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: gold;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form .btn {
  background: goldenrod;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: gold;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}


.hero-section .content {
  /* width: 60%; */
  position: relative;
  z-index: 2;
}
.app img{
  cursor: pointer;
  margin:  15px 15px;
  border-radius: 4px;
  box-shadow: 2px 3px 13px -5px rgba(0,0,0,0.56);
-webkit-box-shadow: 2px 3px 13px -5px rgba(0,0,0,0.56);
-moz-box-shadow: 2px 3px 13px -5px rgba(0,0,0,0.56);
}

@media (max-width: 768px) {
  .hero-section .content {
    width: 100%;
    position: relative;
    z-index: 2;
}
  /* .app{
    display: inline-flex;
  } */
  .app img{
    width: 100px;
  }
}
@media (max-width: 1056px) {
  .hero-section .content {
    width: 90%;
    position: relative;
    z-index: 2;
}
  /* .app{
    display: inline-flex;
  } */
  .app img{
    width: 80px !important;
  }
}
@media (max-width: 1200px) {
  .hero-section .content {
    width: 70%;
    position: relative;
    z-index: 2;
}
  /* .app{
    display: inline-flex;
  } */
  .app img{
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .hero-section .content {
    width: 70%;
    position: relative;
    z-index: 2;
}
  /* .app{
    display: inline-flex;
  } */
  .app img{
    width: 120px;
  }
}



/* ######################## marque #################### */
.base-template__wrapper {
	max-width: 100dvw;
  margin-top: -50px;
  margin-bottom: -70px;
	/* padding-bottom: 50px; */

}

/**
 * Slider Instance
 */

.swiper {
	width: 100%;
}

.swiper-wrapper {
	transition-timing-function: linear !important;
}

.swiper-slide {
	height: auto !important;
}

.horizontal-ticker {
	margin: 0 -20px;
	display: flex;
	flex-direction: column;
	row-gap: 2.85vw;
}

@media screen and (max-width: 767.9px) {
	.horizontal-ticker {
		row-gap: 15px;
	}
}

/**
 * Slider Slides
 */

.horizontal-ticker__slide {
	position: relative;
	width: 15.625vw;
	aspect-ratio: 300 / 205;
	border-radius: 10px;
	overflow: hidden;
	backdrop-filter: blur(50px);
}

@media screen and (max-width: 767.9px) {
	.horizontal-ticker__slide {
		width: 150px;
	}
}

.horizontal-ticker__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.6s ease-out;
}

.horizontal-ticker__slide img:last-child {
	position: absolute;
	inset: 0;
	opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
	.horizontal-ticker__slide:hover img:last-child {
		opacity: 1;
	}
}

/* ################### Footer css ####################### */
/* ############### Footer section ################### */
.site-footer {
            background-color: #1a1a1a; /* Dark background matching the theme */
            color: #ffffff;
            padding: 60px 0 20px 0; /* Increased top padding to accommodate menus */
            border-top: 5px solid #b8860b; /* Gold/Brown accent line */
        }
        .footer-menu-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #b8860b; /* Gold/Brown color for menu titles */
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .footer-menu-list {
            list-style: none;
            padding: 0;
        }
        .footer-menu-list li {
            margin-bottom: 8px;
        }
        .footer-menu-list a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        .footer-menu-list a:hover {
            color: #ffffff; /* White hover effect */
        }

        /* Bottom Row Styles */
        .bottom-footer-row {
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #333; /* Separator line */
        }
        .social-icons a {
            color: #ffffff;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #b8860b; /* Gold/Brown hover effect */
        }
        .copyright-text {
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Scroll Top Button Styling */
        #scrollTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            border: none;
            outline: none;
            background-color: #b8860b; /* Gold/Brown button */
            color: white;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s, background-color 0.3s;
        }
        #scrollTopBtn:hover {
            background-color: #8b6b0b;
        }
        #scrollTopBtn.show {
            opacity: 1;
        }

  /* ################### Bio ################## */
  .main-container {
     background-color: #fff;
     /* border: 1px solid #ccc; */
     /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
     margin: 40px auto;
     padding: 30px;
     max-width: 1200px;
   }
   h2 {
     text-align: center;
     text-transform: uppercase;
     font-weight: bold;
     margin-bottom: 30px;
     letter-spacing: 1px;
   }
   .profile-img {
     /* border: 1px solid #ccc; */
     padding: 5px;
     background: #fff;
     width: 100%;
     max-width: 300px;
   }
   .profile-img img {
     width: 100%;
     height: auto;
     border-radius: 5px;
   }
   .content p {
     text-align: justify;
     margin-bottom: 15px;
     font-size: 14px;
   }
   @media (max-width: 768px) {
     .profile-img {
       margin: 0 auto 20px;
       display: block;
     }
   }
