
:root {
  --gold: #eebb57;
  --red: #d7302c;

  --page-bg: #ffffff;
  --page-grad: linear-gradient(180deg,#ffffff 0%, #f7f7f8 100%);
  --text: #0b1220;
  --muted: #5b636b;
  --nav-link: #0b1220;
  --card-bg: rgba(255,255,255,0.95);
  --card-bg1: rgba(243, 188, 8, 0.2);
  --card-border: rgba(10,10,10,0.05);
  --mobile-bg: rgba(255,255,255,0.98);
  --overlay-bg: rgba(0,0,0,0.45);

  --btn-gradient: linear-gradient(90deg, var(--gold), var(--red));
  --btn-text: #000;

  --glass-shadow: 0 8px 26px rgba(14,18,24,0.06);
  --radius: 16px;
  --fw-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}


html.theme-dark {
  --page-bg: #07111a;
  --page-grad: linear-gradient(180deg,#061018,#07111a);
  --text: #f7f7f8;
  --muted: #bfc7cc;
  --nav-link: #ffffff;

  --card-bg: rgba(255,255,255,0.08);
  --card-border: rgba(255,255,255,0.10);
  --mobile-bg: rgba(4,6,10,0.94);
  --overlay-bg: rgba(0,0,0,0.6);

  --btn-text: #ffffff;
  --glass-shadow: 0 6px 20px rgba(2,6,23,0.6);
}



/* Import fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');


html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}


body {
  font-family: 'Inter', sans-serif;
  background: var(--page-bg);
  background-image: var(--page-grad);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 .5rem;
}


h1 { font-size: clamp(28px, 6vw, 52px); }
h2 { font-size: clamp(24px, 5vw, 40px); }
h3 { font-size: clamp(20px, 4vw, 30px); }
h4 { font-size: clamp(18px, 3vw, 24px); }
h5 { font-size: clamp(16px, 2.5vw, 20px); }
h6 { font-size: clamp(14px, 2vw, 18px); }


p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
}


a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

a:hover {
  opacity: .85;
}


button, .btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}


.nav-link, .navbar-brand, .mobile-nav a {
  font-family: 'poppins', sans-serif;
  font-weight: 700;
}


small {
  font-family: 'Inter', sans-serif;
  opacity: .8;
}







.navbar {
  background: var(--page-bg);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
}

.navbar-brand img {
  height: 48px;
  margin-right: 10px;
}

.navbar-brand h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.navbar-brand small {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}


.navbar-nav .nav-link {
  color: var(--nav-link);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: .25s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--gold);
}


.dropdown-menu {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: var(--glass-shadow);
  animation: fadeDown .25s ease;
}

@keyframes fadeDown {
  from { opacity: .1; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(0,0,0,0.05);
  color: var(--gold);
}

html.theme-dark .dropdown-item:hover {
  background: rgba(255,255,255,0.1);
}


.navbar-toggler, .mobile-menu-btn {
  border: none;
  background: transparent;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 3px;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: var(--mobile-bg);
  backdrop-filter: blur(14px);
  border-left: 1px solid var(--card-border);
  padding: 20px;
  transition: right .35s ease;
  z-index: 9999;
}

.mobile-menu.show { right: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  visibility: hidden;
  opacity: 0;
  transition: .3s ease;
}

.mobile-menu-overlay.show {
  visibility: visible;
  opacity: 1;
}


.mobile-nav a,
.mobile-dropdown-toggle {
  display: block;
  padding: 10px 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-dropdown-menu a {
  padding-left: 15px;
  font-size: 0.9rem;
}


html.theme-dark .navbar {
  background: rgba(10,14,18,0.9);
}



.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn i {
  font-size: 26px;
  color: var(--text);
  line-height: 1;
  transition: 0.3s ease;
}







.mobile-theme-toggle {
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-align: center;
  font-size: 1.6rem;
  color: var(--text);
  margin-top: 1.2rem;
  transition: 0.25s ease-in-out;
}


html.theme-light .mobile-theme-toggle {
  color: #444;
}


html.theme-dark .mobile-theme-toggle {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border-color: rgba(255,255,255,0.15);
}


.mobile-theme-toggle:hover {
  transform: scale(1.05);
  opacity: 0.9;
}




.mobile-nav {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mobile-nav li {
  margin-bottom: 0.4rem;
}


.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
  transition: 0.25s ease;
}


.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 6px;
}


html.theme-dark .mobile-nav a {
  color: #f7f7f7;
  border-bottom-color: rgba(255,255,255,0.12);
}


.mobile-dropdown {
  margin-bottom: 0.6rem;
}

.mobile-dropdown-toggle {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
  transition: .25s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--gold);
  padding-left: 6px;
}


.mobile-dropdown-menu {
  display: none;
  margin-top: 0.3rem;
  padding-left: 10px;
  animation: dropdownSlide 0.25s ease forwards;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}


.mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  font-size: 0.98rem;
  color: var(--text);
  border-bottom: 1px solid var(--card-border);
}


.mobile-dropdown-menu a:hover {
  color: var(--gold);
  padding-left: 6px;
}


html.theme-dark .mobile-dropdown-menu a {
  color: #f6f6f6;
  border-bottom-color: rgba(255,255,255,0.1);
}


@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}



.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 340px;
  height: 100vh;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);   
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 99999;
  transition: right .35s ease;
}


html.theme-dark .mobile-menu {
  background: rgba(10, 14, 18, 0.92);  
  color: #fff;
}


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 99998;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}


.mobile-menu.show {
  right: 0;
}


.mobile-nav a,
.mobile-dropdown-toggle {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111; 
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

html.theme-dark .mobile-nav a,
html.theme-dark .mobile-dropdown-toggle {
  color: #f5f5f5; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


.mobile-dropdown-menu a {
  padding-left: 1.2rem;
  font-size: 1rem;
  opacity: 0.85;
}







.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.swiper-slide {
  padding-top: 4.5rem; 
  padding-bottom: 3rem;
}


.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;  

  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.15),
      transparent
  );
}

html.theme-light .hero-slide-overlay {
  background: linear-gradient(
      to bottom,
      rgba(243,188,8,0.05),
      rgba(243,188,8,0.05),
      rgba(243,188,8,0.10),
      transparent
  );
}




.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 2.4rem;
}


@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }
}


@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-media {
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-lead {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }
}



.hero-title {
  font-size: clamp(28px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}



.hero-image-wrap {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}


@media (max-width: 992px) {
  .hero-photo {
    max-height: 420px;
  }
}


@media (max-width: 576px) {
  .hero-photo {
    max-height: 340px;
    border-radius: 10px;
  }
}


@media (max-width: 380px) {
  .hero-photo {
    max-height: 300px;
  }
}



@media (max-width: 600px) {
  .hero-glow {
    opacity: 0.45;
    filter: blur(26px);
    inset: auto -12% -22% -12%;
    width: 150%;
    height: 150%;
  }
}



.hero-panel {
  width: 100%;
  margin-top: 1.8rem;
  padding: 1.1rem;
}

@media (max-width: 768px) {

  .hero-panel {
    padding: 0.9rem;
    margin: auto;
  }

  
  .hero-panel .row {
    flex-direction: column !important;
    gap: 0.8rem !important;
    text-align: center;
    padding: 0.9rem;
  }

  
  .custom-select-wrapper,
  .custom-select {
    width: 100%;
  }

  
  .form-check-inline {
    margin-right: 12px;
  }
}



@media (max-width: 480px) {
  .btn-primary,
  .btn-cta {
    padding: 0.55rem 0.9rem !important;
    font-size: 0.9rem !important;
  }

  .hero-cta .btn {
    width: 100%;
    margin-bottom: 0.45rem;
  }
}


.navbar {
  position: relative;
  z-index: 3000;
}


.navbar .dropdown-menu {
  z-index: 5000 !important;
  position: absolute !important;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}



.dropdown-item {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text);
  transition: 0.2s;
}

.dropdown-item:hover {
  background: var(--gold);
  color: #000;
}



.theme-toggle-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
  color: var(--text);
}

.theme-toggle-btn i {
  transition: transform 0.3s ease, color 0.25s ease;
}


html.theme-light .theme-toggle-btn i {
  color: #444;
  transform: rotate(0deg);
}


html.theme-dark .theme-toggle-btn i {
  color: var(--gold);
  transform: rotate(180deg);
  text-shadow: 0 0 12px rgba(238, 187, 87, 0.55);
}


.theme-toggle-btn:hover i {
  transform: scale(1.15);
  opacity: 0.9;
}


.navbar-nav .theme-toggle-btn {
  margin-left: 12px;
}


#themeToggleMobile {
  border: 1px solid var(--card-border);
  padding: 10px;
  font-weight: 600;
  border-radius: 8px;
}

html.theme-dark #themeToggleMobile {
  background: rgba(255,255,255,0.07);
  color: var(--gold);
}





.btn-primary,
.btn-brand,
.btn-cta {
  background: var(--btn-gradient) !important;
  color: white !important;
  border: none !important;
  padding: .7rem 1.15rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: .22s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
}

.btn-primary:hover,
.btn-brand:hover,
.btn-cta:hover {
  filter: brightness(.92);
}

.btn-2 {
 background: var(--nav-link) !important;
  color: var(--page-bg) !important;
}
.btn-2:hover {
  background: var(--nav-link) !important;
  color: var(--page-bg) !important;
}



.custom-select-wrapper {
  position: relative;
  width: 100%;

}

.custom-select {
  position: relative;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
  z-index: 1000;
  
}

.custom-select.open {
  border-color: var(--gold);
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--text);
}


.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 9999999999;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
    z-index: 9999999999;

}


.custom-option {
  padding: 10px 16px;
  white-space: nowrap;
  color: var(--text);
  transition: 0.15s;
  display: block;
}

.custom-option:hover {
  background: rgba(238,187,87,0.15);
  cursor: pointer;
}

.custom-option.selected {
  background: rgba(238,187,87,0.25);
  font-weight: 600;
  
}


.custom-select::after {
  content: "▾";
  font-size: 14px;
  color: var(--text);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
    z-index: 9999999999;
}


html.theme-dark .custom-select,
html.theme-dark .custom-options,
html.theme-dark .custom-option {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

html.theme-dark .custom-option:hover {
  background: rgba(238,187,87,0.18);
}



.site-hero {
  padding: 4rem 0 5rem;
  background: var(--page-grad);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 2.4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(28px, 5vw, 70px);
  font-weight: 700;
  color: var(--text);
  line-height: 68px;
}

.hero-highlight {
  position: relative;
}
.hero-highlight::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 9px;
  background: linear-gradient(90deg,var(--gold),rgba(238,187,87,.65));
  border-radius: 6px;
  z-index: -1;
}

.hero-lead {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.3rem;
}


.hero-image-wrap {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;             
  border-radius: 0;        
  box-shadow: none;        
  position: relative;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;     
  object-fit: cover;
  object-position: center;
}


@media (min-width: 1200px) {
  .hero-photo {
    max-height: 540px;
  }
}


@media (max-width: 991px) {
  .hero-photo {
    max-height: 420px;
    border-radius: 12px;
  }
}


@media (max-width: 576px) {
  .hero-photo {
    max-height: 360px;
    border-radius: 10px;
  }
}


@media (max-width: 380px) {
  .hero-photo {
    max-height: 300px;
  }
}



.hero-glow {
  position: absolute;
  inset: auto -4% -10% -4%;
  width: 115%;
  height: 115%;

  background:
    radial-gradient(circle at 58% 42%,
      rgba(238,187,87,0.10) 0%,   
      rgba(215,48,44,0.18) 32%,   
      rgba(215,48,44,0.08) 55%,   
      transparent 80%
    );

  filter: blur(28px);
  z-index: 0;
  opacity: 0.55;
}


html.theme-dark .hero-glow {
  background:
    radial-gradient(circle at 58% 42%,
      rgba(238,187,87,0.16) 0%,
      rgba(215,48,44,0.30) 32%,
      rgba(215,48,44,0.18) 55%,
      transparent 80%
    );
  filter: blur(34px);
  opacity: 0.62;
}



.hero-panel {
  margin-top: 2rem;
  max-width: 92%;
  padding: 1rem 1.3rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
}


.hero-form .form-select,
.hero-form .form-control {
  min-height: 44px;
  border-radius: 8px;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}


.form-check-input[type="radio"] {
  border-color: var(--text);
}
.form-check-input:checked {
  background: var(--btn-gradient);
  border-color: var(--gold);
}




.hero-media {
  position: relative;
}

.hero-bottom-overlay {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 55%; 

  pointer-events: none;
  z-index: 3;

  background: linear-gradient(
      to top,
      rgba(243, 188, 8, 0.05) 0%,     
      rgba(243, 188, 8, 0.05) 30%,   
      rgba(10,10,10,0.08) 75%,      
      transparent 100%
  );
}


html.theme-dark .hero-bottom-overlay {
  background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,           
      rgba(0,0,0,0.55) 35%,
      rgba(0,0,0,0.25) 70%,
      transparent 100%
  );
}



@media (max-width: 768px) {
  .hero-content {
    position: relative;
    padding: 1.8rem 1rem;
    border-radius: 12px;
    z-index: 5;

  }

  html.theme-dark .hero-content {
    background: linear-gradient(
      to bottom,
      rgba(10,14,18,0.60),
      rgba(10,14,18,0.85)
    );
  }
}



@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-media {
    text-align: center;
  }

  .hero-image-wrap {
    padding: 0 !important;
    margin: 0 auto;
    margin-top: -8px;
    width: 100%;
  }

  .hero-photo {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
  }
}



@media (max-width: 768px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
  }

  .hero-media {
    order: 2;
    margin-top: 1rem;
  }

  
  .hero-image-wrap {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
}



@media (max-width: 480px) {

  .hero-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
    text-align: center;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 1.3rem;
    text-align: center;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 260px;
  }
}



@media (max-width: 768px) {

  .hero-panel {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
  }

  html.theme-dark .hero-panel {
    background: rgba(10,14,18,0.75);
  }
}



@media (max-width: 480px) {
  .custom-select-wrapper {
    width: 100%;
  }

  .custom-select {
    width: 100%;
  }
}



@media (max-width: 768px) {
  .site-hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}





.hero-panel {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--glass-shadow);
}


.hero-form .form-check-inline {
  margin-right: 1.2rem;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
}


.custom-select {
  width: 100%;
}


.hero-form .row {
  align-items: center;
}





@media (max-width: 768px) {

  .hero-panel {
    padding: 1.2rem 1.1rem;
    margin-top: 2rem;
  }

  
  .hero-form .row {
    flex-direction: column;
    text-align: center;
  }

  
  .hero-form .form-check-inline {
    display: inline-block;
    margin: 0 0.8rem 0.6rem 0.8rem;
  }

  
  .custom-select-wrapper {
    width: 100%;
    margin-top: 0.8rem;
  }

  
  .hero-form button.btn-cta {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
}


@media (max-width: 480px) {

  .hero-panel {
    padding: 1rem 0.9rem;
  }

  .hero-form .form-check-inline label {
    font-size: 0.9rem;
  }

  .custom-select-trigger {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .hero-form button.btn-cta {
    font-size: .95rem;
    padding: 0.75rem;
  }
}




.services .glass-card {
  min-height: 160px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  transition: .25s;
}
.services .glass-card:hover {
  transform: translateY(-6px);
}


.site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,246,0.98));
  border-top: 1px solid rgba(0,0,0,0.06);
  color: var(--muted);
}
html.theme-dark .site-footer {
  background: linear-gradient(180deg, rgba(4,6,8,0.95), rgba(8,12,18,0.95));
  border-top: 1px solid rgba(255,255,255,0.06);
}


@media (max-width: 576px) {
  .navbar-brand img { height: 36px; }
  .navbar .brand-text small { display: none; }
}






.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 40px; 
  display: flex;
  align-items: center;
}


.site-header {
  position: fixed;
  top: 40px; 
  left: 0;
  width: 100%;
  z-index: 9998;
  background: var(--page-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}


body {
  padding-top: 110px; 
}


.navbar .dropdown-menu {
  z-index: 10000 !important;
  position: absolute !important;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}




.dropdown-item {
  font-weight: 500;
  padding: .65rem 1rem;
}


.dropdown-item:hover {
  background: var(--gold);
  color: #000;
}



.announcement-bar {
  width: 100%;
  padding: 0.55rem 0;
  position: fixed;
  left: 0;
  z-index: 1500;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
}


html.theme-dark .announcement-bar {
  background: rgba(10, 14, 18, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #f7f7f7;
}


.announcement-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3rem;
  animation: slide-left 18s linear infinite;
}


.announcement-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-shadow: 0 0 6px rgba(0,0,0,0.2);
}

html.theme-dark .announcement-item {
  color: #fdfdfd;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.announcement-item i {
  margin-right: .6rem;
  font-size: 1.1rem;
  opacity: 0.9;
}


@keyframes slide-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


@media (max-width: 576px) {
  .announcement-item {
    font-size: .85rem;
  }
  .announcement-item i {
    font-size: .95rem;
  }
}


.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-pagination-bullet {
  background: var(--gold);
  opacity: .6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  transform: scale(0.8);
}


.trusted-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.trusted-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.trusted-slider {
  width: 100%;
  overflow: hidden;
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: slide-left 25s linear infinite;
}

.trusted-track img {
  height: 55px;
  width: auto;
  opacity: 0.85;
  transition: opacity .3s ease;
}

.trusted-track img:hover {
  opacity: 1;
}




@media (max-width: 992px) {
  .trusted-track {
    gap: 2.4rem;
  }
  .trusted-track img {
    height: 50px;
  }
  .trusted-title {
    font-size: 1.2rem;
  }
}


@media (max-width: 768px) {
  .trusted-section {
    padding: 2.2rem 0;
  }

  .trusted-track img {
    height: 45px;
  }

  .trusted-track {
    gap: 2rem;
  }
}


@media (max-width: 576px) {
  .trusted-section {
    padding: 1.8rem 0;
  }

  .trusted-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .trusted-track img {
    height: 38px;
  }

  .trusted-track {
    gap: 1.6rem;
  }
}


@media (max-width: 400px) {
  .trusted-track img {
    height: 34px;
  }
  .trusted-track {
    gap: 1.2rem;
  }
}




.map-section {
  padding: 3.5rem 0;
  text-align: center;
}

html.theme-dark .map-section {
  background: linear-gradient(180deg,
              rgba(8,12,18,0.85),
              rgba(4,7,12,0.95));
}

.map-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.map-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.map-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
  }
  .map-title {
    font-size: 1.45rem;
  }
}



.giti-services-section {
  padding: 4rem 0 5rem;
  margin-top: 2rem;
}


.section-header {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: .5rem;
}






.giti-services-section {
  position: relative;
  padding: 8rem 0 5rem;
   background: linear-gradient(180deg,
              rgba(245,247,249,0.85),
              rgba(232,234,238,0.95));
}


.services-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;  
  background: url('../img/graduates.jpg') center ;
  z-index: 0;
  opacity: 0.85; 
  pointer-events: none; 
}


.giti-services-section .container {
  position: relative;
  z-index: 2;
}


.giti-profile-card {
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  padding-top: 60px;
  text-align: center;
  position: relative;
  min-height: 330px;
  transition: .25s ease;
}

.giti-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}


.profile-img-wrap {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

html.theme-dark .profile-img-wrap {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}


.profile-body {
  padding: 1rem 1.4rem 1.5rem;
}

.profile-title {
  font-size: 3rem;

  font-weight: 700;
  color: var(--text)
}

.profile-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}


.read-more {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: .2s ease;
}

.read-more:hover {
  opacity: .8;
  letter-spacing: .5px;
}


.giti-profile-card {
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: var(--glass-shadow);
  padding-top: 65px;
  text-align: center;
  position: relative;
  min-height: 350px;
  transition: 0.25s ease-in-out;
}

.giti-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}


.profile-img-wrap {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

html.theme-dark .profile-img-wrap {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
}




html.theme-dark .giti-profile-card {
  background: rgb(0, 0, 0);       
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
  color: #f7f7f7;
}


html.theme-dark .profile-img-wrap {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 26px rgba(0,0,0,0.50);
}


html.theme-dark .profile-title {
  color: #ffffff;
}

html.theme-dark .profile-text {
  color: rgba(255, 255, 255, 0.82);
}


html.theme-dark .giti-profile-card .read-more {
  background: var(--btn-gradient);  
  color: #fff !important;
  border: none;
}

html.theme-dark .giti-profile-card .read-more:hover {
  opacity: .9;
  transform: translateY(-2px);
}


.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-body {
  padding: 1rem 1.4rem 2rem;
}

.profile-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.profile-text {
  font-size: 1rem;
  color: var(--text);
}

.read-more {
  margin-top: .3rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: 6px;
}





@media (max-width: 992px) {
  .profile-title {
    font-size: 1.6rem;
  }
  .profile-text {
    font-size: .95rem;
  }
  .giti-profile-card {
    min-height: 330px;
    padding-top: 50px;
  }
  .profile-img-wrap {
    width: 100px;
    height: 100px;
  }
}


@media (max-width: 768px) {
  .giti-profile-card {
    min-height: 320px;
    padding-top: 50px;
  }
  .profile-img-wrap {
    width: 90px;
    height: 90px;
    top: -45px;
  }
  .profile-title {
    font-size: 1.5rem;
  }
  .profile-text {
    font-size: .9rem;
  }
}


@media (max-width: 576px) {
  .row.g-4 {
    row-gap: 3.5rem !important; 
  }

  .giti-profile-card {
    margin-top: 2.5rem;
    padding-top: 10px;
  }

  .profile-img-wrap {
    width: 95px;
    height: 95px;
    top: -50px;
  }

  .profile-body {
    padding: 1rem 1.1rem 1.7rem;
  }

  .profile-title {
    font-size: 1.45rem;
  }

  .read-more {
    font-size: .95rem;
  }
}


@media (max-width: 400px) {
  .profile-img-wrap {
    width: 85px;
    height: 85px;
  }

  .profile-title {
    font-size: 1.3rem;
  }

  .profile-text {
    font-size: .88rem;
  }
}




@media (max-width: 576px) {

  .giti-profile-card {
    min-height: auto;
    min-width: auto;            
    padding-top: 50px;           
    padding-bottom: 1.2rem;      
    margin-top: 2rem !important;
    border-radius: 14px;

  }

  .profile-img-wrap {
    width: 75px;                 
    height: 75px;
    top: -38px;                  
    padding: 4px;
  }

  .profile-body {
    padding: 0.8rem 1rem;        
  }

  .profile-title {
    font-size: 1.25rem;          
  }

  .profile-text {
    font-size: 0.85rem;          
    line-height: 1.25;
  }

  .read-more {
    font-size: 0.85rem;
    padding: 0.55rem 0.9rem;
    border-radius: 6px;                
  }
}


@media (max-width: 400px) {

  .profile-img-wrap {
    width: 68px;
    height: 68px;
    top: -34px;
  }

  .profile-title {
    font-size: 1.15rem;
  }

  .profile-text {
    font-size: 0.82rem;
  }
}



.back-to-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--btn-gradient);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .25s ease;
  z-index: 1200;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}


html.theme-dark .back-to-top {
  background: linear-gradient(90deg, #f7b531, #e04632);
}



.giti-search-bar {
  width: 100%;
  max-width: 480px;
  margin: 0 2rem;
  padding: 0.45rem 0.9rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--glass-shadow);
  transition: .25s ease;
}

html.theme-dark .giti-search-bar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.giti-search-bar i {
  font-size: 1rem;
  color: var(--muted);
}

.giti-search-bar input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: .95rem;
  color: var(--text);
}

.giti-search-bar input::placeholder {
  color: var(--muted);
}


.giti-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(238,187,87,0.25);
}


@media (max-width: 991px) {
  .giti-search-bar {
    display: none !important;
  }
}


.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}


.desktop-menu {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.desktop-menu .navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.navbar-nav .nav-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}

.navbar-nav .nav-link:hover {
  color: var(--gold);
}


.giti-search-bar {
  flex: 1;           
  max-width: 450px;
}


.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}


@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }
}















.site-footer {
  padding: 3.5rem 0;
  background: #292828;
  color: #ffffff;
  border-top: none;
}


.site-footer h6,
.site-footer p,
.site-footer ul li,
.site-footer small {
  color: #ffffff !important;
}


.site-footer h6::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 3px;
}


.site-footer ul li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.2s ease;
}

.site-footer ul li:hover {
  color: var(--gold) !important;
  opacity: 1;
  transform: translateX(4px);
}


.site-footer img {
  filter: brightness(1.1) drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}


@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .site-footer h6::after {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer img {
    margin-bottom: 10px;
  }
}
