

: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: "Montserrat",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color:#ff0083; /* 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: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color:#ff0083; /* 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: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e84545; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



.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;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  /* color: var(--default-color); */
   color:color-mix(in srgb, var(--default-color), transparent 25%);
  background-color: var(--background-color);
  font-family: var(--default-font);
  width: 100%;
  overflow-x: hidden;
}

html{
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
color: black;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;

}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: black;
  background-color: white;
  z-index: 997;
}

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

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

  
  .header .navmenu {
    order: 2;
  }
}

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



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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: 20px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    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 - 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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;
  }

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


  .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;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  /* color: var(--default-color); */
   color:color-mix(in srgb, var(--default-color), transparent 25%);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  margin-top: 40px;
}

.hero h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 30px;
}

.hero .cta-btn {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 6px;
  background:var(--accent-color);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  color: white;
  font-size: 25px;
  outline:10px white;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

 .about .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.about .content ul,
.coding-courses ul {
  list-style: none;
  padding: 0;
}

.about .content ul li,
.coding-courses ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.about .content ul li img,
.coding-courses ul li img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  object-fit: contain;
}

/* Ensures image keeps original aspect ratio without stretching */
.about-img {
  max-width: 100%;
  height: auto;
  
  object-fit: contain;
}

/*--------------------------------------------------------------
# objectives Section
--------------------------------------------------------------*/
 .objectives .icon-box {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objectives .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
.icon-box img {
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
}

/* On icon-box hover, apply zoom and focus effect to image */
.icon-box:hover  img{
  transform: scale(1.02);
  filter: contrast(1.1) brightness(1.1);
}

.postcont{
padding: 25px 35px;
}

.objectives .icon-box h4 {
font-size: 1.5rem;
color: var(--accent-color);
}

.objectives .icon-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# coding courses Section
--------------------------------------------------------------*/


.coding-courses .program-banner {
  background-color: var(--surface-color);
  border-radius: 20px;

  overflow: hidden;
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
  height: 100%;
  display: flex;
  flex-direction: column;

}

.coding-courses .program-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 color-mix(in srgb, var(--heading-color), transparent 85%);
}

.coding-courses .banner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.coding-courses .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coding-courses .banner-image:hover img {
  transform: scale(1.05);
}
.coding-courses .banner-info {
  padding: 35px 30px;
}

.coding-courses .banner-info .program-header {
  margin-bottom: 20px;
}

.coding-courses .banner-info .program-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.coding-courses .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.7;
}

.coding-courses .banner-info .start-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coding-courses .banner-info .start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}


.coding-courses .program-banner,
.coding-courses .programs-grid {

  display: flex;
  flex-direction: column;
  justify-content:space-between;
  }


.coding-courses .program-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  
}

#highlight-item{
  background-color:color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-color)
}
#highlight-item:hover {
   transform: translateY(10px);
  border: 1px solid var(--accent-color)
}

.coding-courses .program-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(10px);
}

.coding-courses .program-item .item-icon {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.coding-courses .program-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coding-courses .program-item .item-content {
  flex: 1;
}

.coding-courses .program-item .item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.coding-courses .program-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
#highlight-item h4{
  
  font-size: 1.3rem;
   font-weight: 600;
}
#highlight-item p{
color:black;
}

.animated-arrow {
  animation: bounceDown 2s infinite ease-in-out;
  display: inline-block;
  margin-top: -20px;
}

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

.coding-courses .program-item .item-content .meta-info {
  display: flex;
  gap: 20px;
  
}

.coding-courses .program-item .item-content .meta-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-weight: 500;
}

@media (max-width: 992px) {
  
  .coding-courses .program-item {
    flex-direction: column;
    text-align: center;
  }
  .coding-courses .program-item .meta-info{
    justify-content: center;
  }
  

  .coding-courses .banner-info {
    padding: 25px 20px;
  }

  .coding-courses .banner-info .program-header h3 {
    font-size: 1.5rem;
  }

  .coding-courses .banner-info .program-details {
    flex-direction: column;
    gap: 15px;
  }

  .coding-courses .program-item {
    padding: 15px;
  }

  .coding-courses .program-item .item-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .coding-courses .program-item .item-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .coding-courses .banner-image {
    height: 220px;
  }

  .coding-courses .program-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  
}
/*--------------------------------------------------------------
# team Section
--------------------------------------------------------------*/
 
 .team {
  padding-top: 60px;
  padding-bottom: 60px;
} 

.team .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

 .team .info h3 {
  font-weight: 700;
  font-size: 42px;
}

.team .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
  border:1px solid color-mix(in srgb, var(--default-color), transparent 92%); ;
}

.team .team-carousel,
.team .team-slider {
  overflow: hidden;
}

.team .team-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}



 .image-wrapper {
  width: 150px;      
  aspect-ratio: 1 / 1; 
  position: relative;
  overflow: hidden;
  border-radius: 8px; 
  flex-shrink: 0;     
}

.image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  
  top: 0;
  left: 0;
}


.team .team-item h3 {
  font-size: 30px;
  font-weight: bold;
}
.team .team-item p {
 margin: 15px auto 15px auto;
}

.team .swiper-wrapper {
  height: auto;
}

.team .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.team .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.team .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .team .team-carousel,
  .team .team-slider {
    overflow: hidden;
  }

  
  
.team .team-item h3 {
  font-size: 15px;
  font-weight: bold;
}
}
/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .nav-tabs {
  border: 0;
}

.events .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.events .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .events .nav-link h4 {
    font-size: 16px;
  }
}

.events .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.events .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.events .tab-content {
  margin-top: 30px;
}
.events .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.events .content ul {
  list-style: none;
  padding: 0;
}

.events .content ul li {
  padding-bottom: 10px;
}

.events .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.events .content p:last-child {
  margin-bottom: 0;
}

.events .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.events .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.events .content .read-more:hover i {
  margin-left: 10px;
}

.events .about-images img {
  border-radius: 10px;
}

/* features grid upcoming events */
.features-grid .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
   .features-grid .section-header h3 {
    font-size: 2rem;
  }
}

 .features-grid .section-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
   
  margin: 0;
}

 .features-grid .feature-card {
  height: 280px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

 .features-grid .feature-card .feature-front,
 .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

 .features-grid .feature-card .feature-front {
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

 .features-grid .feature-card .feature-front .feature-icon {
  width: 75px;
  height: 75px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
 .features-grid .feature-card .feature-front h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

 .features-grid .feature-card .feature-front p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

 .features-grid .feature-card .feature-back {
  background: var(--accent-color);
  transform: rotateY(180deg);
}

 .features-grid .feature-card .feature-back p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
    .features-grid .feature-card .feature-back p{
    font-size: 0.8rem;
    
  }
}
.features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
}
.features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact{
  padding-bottom: 100px;
}
.contact .info-item {
 background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}


.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
  
  font-size: 16px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 10px;
  color: 
 color-mix(in srgb, var(--default-color), transparent 30%);
  
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}


.contact .contact-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer {
  position: relative;
  color: #fff;
  padding: 7rem 0;
  background-color: #141d2a;
 }
  
  
  .footer .brand {
    box-shadow: -20px -20px 0 0 rgb(236 66 131 / 20%);
    padding: 20px;
    background-color:#ff0083;
    top: -150px;
    position: relative;
   }
    
  .footer .brand h3 {
      font-size: 20px;
     }
.footer .brand h2{
  color:white;
}
footer h5{
  color:white;
}

/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title p {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 767px){
  .page-title p{
    font-size: 10px;
  }
}





/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

.gallery-slider .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-slider:hover .swiper-button-next:hover,
.gallery-slider:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  
  .gallery-slider .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery-slider .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}



.custom-bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  
}

.bullet-item img {
  width: 20px; /* Adjust size as needed */
  height: 20px;
  object-fit: contain;
  margin-top: 4px; /* Adjust to align vertically with text */
}

.bullet-item span {
  flex: 1;
}
