/* Import Poppins font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* Reset Styles */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, header, nav, section, footer {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  color: #e0e0e0;
}

a {
  text-decoration: none !important;
  color: #00d4ff;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #b0b0b0;
}

img {
  width: 100%;
  overflow: hidden;
}

/* Global Styles */
::selection {
  background: #00d4ff;
  color: #000000;
}

::-moz-selection {
  background: #00d4ff;
  color: #000000;
}

.section {
  padding-top: 30px;
  margin-top: 120px;
  background-color: #000000;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 44px;
  color: #ffffff;
}

.section-heading h6 {
  color: #00d4ff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Header Styles */
.header-area {
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s ease;
  background-color: transparent;
}

.header-area .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 100%;
  background: transparent;
}

.header-area .main-nav .logo img {
  width: auto;
  max-height: 60px;
}

.header-area .main-nav ul.nav {
  display: flex;
  flex-basis: 100%;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav li {
  padding: 0 5px;
  height: 40px;
  line-height: 40px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding: 0 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 300;
  color: #e0e0e0;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  letter-spacing: 0.25px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #00d4ff;
  background-color: rgba(0, 212, 255, 0.15);
  opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 20px;
  width: 32px;
  height: 40px;
}

.mobile-menu-toggle i {
  color: #00d4ff;
  font-size: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #000000;
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e0;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  background-color: #16213e;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .header-area {
    height: auto !important;
    padding: 15px;
  }

  .header-area .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-area .main-nav .nav {
    width: 100%;
    flex-direction: column;
    display: none;
    background-color: #000000;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    background-color: #16213e;
  }

  .header-area .main-nav .nav li a {
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    color: #e0e0e0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }
}

/* Center Image Styles */
.center-image1 {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 767px) {
  .center-image1 {
    max-width: 90%;
    margin: 20px auto;
  }
}

/* Image Row Styles */
.image-row {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin: 30px 0;
}

.image-wrapper {
  text-align: center;
}

.circle-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2C3E50;
}

.image-name {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
}

.image-role {
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-top: 4px;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 150px;
  height: auto;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #00d4ff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Contact Form Styles */
.contact-us-content form {
  margin-top: 20px;
}

.contact-us-content input,
.contact-us-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #00d4ff;
  border-radius: 5px;
  background-color: rgba(0, 212, 255, 0.15);
  color: #e0e0e0;
  font-size: 14px;
}

.contact-us-content input::placeholder,
.contact-us-content textarea::placeholder {
  color: rgba(224, 224, 224, 0.75);
}

.contact-us-content .orange-button {
  background-color: #16213e;
  color: #00d4ff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #00d4ff;
  transition: all .3s;
}

.contact-us-content .orange-button:hover {
  background-color: #00d4ff;
  color: #1a1a2e;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Social Links */
.social-links a {
  margin-right: 10px;
}

.social-icon-img {
  width: 30px;
  height: 30px;
}

/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #b0b0b0;
}
/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner {
  background-image: url(../images/banner.png);  
  background-repeat: no-repeat;
  background-size: contain;
  padding: 120px 0 40px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* Header Text Styling */
.main-banner .header-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  width: 100%;
}

/* Countdown Timer */
.main-banner .countdown {
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
}

.main-banner .countdown .label {
  font-size: 14px;
  margin-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main-banner {
    padding: 140px 0 100px;
  }
}

@media (max-width: 768px) {
  .main-banner {
    padding: 120px 0 80px;
  }
  .main-banner .header-text h2 {
    font-size: 28px;
  }
  .main-banner .header-text p {
    font-size: 14px;
  }
}

/* 
---------------------------------------------
Food & Culture Section
--------------------------------------------- 
*/
.food-culture {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.food-culture:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #16213e;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.food-culture .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

/* 
---------------------------------------------
Accordion Style
--------------------------------------------- 
*/
.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: #000000;
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #16213e;
  border-radius: 40px;
  margin-bottom: 30px;
  border: none;
}

.accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px;
  color: #e0e0e0;
  background-color: #16213e;
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #00d4ff;
  background-color: #16213e;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+'; 
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #00d4ff;
  color: #1a1a2e;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #b0b0b0;
}


/* 
---------------------------------------------
General Styles
--------------------------------------------- 
*/
body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: #b0b0b0;
}

section {
  padding: 60px 0;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner {
  background-image: url(../images/banner.png);  
  background-repeat: no-repeat;
  background-size: contain;
  padding: 120px 0 40px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.main-banner .header-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  width: 100%;
}

.main-banner .countdown {
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
}

.main-banner .countdown .label {
  font-size: 14px;
  margin-left: 5px;
}

.event-details-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 20px;
}

.event-details {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main-banner {
    padding: 140px 0 100px;
  }
}

@media (max-width: 767px) {
  .main-banner {
    padding: 120px 0 80px;
  }
  .main-banner .header-text h2 {
    font-size: 28px;
  }
  .main-banner .header-text p {
    font-size: 14px;
  }
  .event-details-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 
---------------------------------------------
Header Navigation
--------------------------------------------- 
*/
.header-area .main-nav .nav li.register-link {
  margin-left: 20px;
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  line-height: 40px;
}

.header-area .main-nav .nav li.register-link a.register-btn {
  display: block;
  padding: 0 20px;
  border-radius: 20px;
  font-weight: 300;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #e0e0e0;
  background-color: rgba(33, 56, 134, 0.479);
  text-decoration: none;
  transition: all 0.4s ease;
  text-align: center;
  letter-spacing: 0.25px;
}

.header-area .main-nav .nav li.register-link a.register-btn:hover {
  color: #000000;
  background-color: #00b7eb;
  opacity: 1;
}

.header-area .main-nav .nav li.register-link a.register-btn.active {
  color: #000000;
  background-color: #00b7eb;
  opacity: 1;
}

.header-area .main-nav .nav {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .header-area .main-nav .nav li.register-link {
    margin-left: 0;
    padding: 0;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    background-color: #16213e;
  }
  .header-area .main-nav .nav li.register-link a.register-btn {
    line-height: 50px;
    height: 50px;
    padding: 0 10px;
    color: #e0e0e0;
    background-color: rgba(5, 28, 104, 0.3);
    border-radius: 0;
    display: block;
    text-align: center;
  }
  .header-area .main-nav .nav li.register-link a.register-btn:hover,
  .header-area .main-nav .nav li.register-link a.register-btn.active {
    color: #000000;
    background-color: #00b7eb;
    opacity: 1;
  }
}

/* 
---------------------------------------------
Food & Culture Section
--------------------------------------------- 
*/
.food-culture {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.food-culture:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #16213e;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.food-culture .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

/* 
---------------------------------------------
Accordion Style
--------------------------------------------- 
*/
.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: #000000;
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #16213e;
  border-radius: 40px;
  margin-bottom: 30px;
  border: none;
}

.accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px;
  color: #e0e0e0;
  background-color: #16213e;
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #00d4ff;
  background-color: #16213e;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+'; 
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #00d4ff;
  color: #1a1a2e;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #b0b0b0;
}

/* 
---------------------------------------------
Sponsors and Exhibitors Section
--------------------------------------------- 
*/
.sponsors-exhibitors.section {
  background-color: #000000;
  padding: 60px 0;
}

.sponsors-exhibitors .header-text {
  margin-bottom: 60px;
}

.sponsors-exhibitors .header-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.2;
}

.sponsors-exhibitors .sponsors-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sponsors-exhibitors .sponsor-category {
  background-color: #16213e;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sponsors-exhibitors .sponsor-category h3 {
  font-size: 24px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
}

.sponsors-exhibitors .sponsor-category:hover {
  background-color: #1f2a54;
  transform: translateY(-5px);
}

.sponsors-exhibitors .sponsor-category:hover h3 {
  color: #ffffff;
}

@media (max-width: 768px) {
  .sponsors-exhibitors .sponsors-list {
    grid-template-columns: 1fr;
  }
  .sponsors-exhibitors .sponsor-category {
    padding: 20px;
  }
  .sponsors-exhibitors .header-text h2 {
    font-size: 30px;
  }
  .sponsors-exhibitors .sponsor-category h3 {
    font-size: 20px;
  }
}


body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: #b0b0b0;
}

section {
  padding: 60px 0;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner {
  background-image: url(../images/banner.png);  
  background-repeat: no-repeat;
  background-size: contain;
  padding: 120px 0 40px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.main-banner .header-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  width: 100%;
  margin-bottom: 3rem;
}

.main-banner .header-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.main-banner .header-text p {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.main-banner .countdown {
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
}

.main-banner .countdown .label {
  font-size: 14px;
  margin-left: 5px;
}

.event-details-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 20px;
}

.event-details {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .main-banner {
    padding: 140px 0 100px;
  }
}

@media (max-width: 768px) {
  .main-banner {
    padding: 120px 0 80px;
  }
  .main-banner .header-text h2 {
    font-size: 2rem;
  }
  .main-banner .header-text p {
    font-size: 1rem;
  }
  .event-details-container {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/
.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #16213e; /* Darker blue-gray background */
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.contact-us .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #000000; /* Dark base for special offer */
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00d4ff; /* Cyan for offer tag */
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px;
  display: inline-block;
  text-align: center;
  color: #000000; /* Dark text for contrast */
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #b0b0b0; /* Muted gray for subtext */
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: #00d4ff; /* Cyan for emphasis */
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
  color: #e0e0e0; /* Light gray for title */
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: #00d4ff; /* Cyan for emphasis */
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: #00d4ff; /* Cyan button */
  color: #000000; /* Dark text */
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: #000000; /* Dark base for content */
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(0, 212, 255, 0.15); /* Subtle cyan tint */
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #e0e0e0; /* Light gray text */
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: rgba(224, 224, 224, 0.75); /* Muted light gray */
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(0, 212, 255, 0.15); /* Subtle cyan tint */
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #e0e0e0; /* Light gray text */
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: rgba(224, 224, 224, 0.75); /* Muted light gray */
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #00d4ff; /* Cyan button */
  padding: 0px 25px;
  border-radius: 25px;
  color: #1a1a2e; /* Dark text */
  transition: all .4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: linear-gradient(90deg, #00d4ff 0%, #00aaff 100%); /* Cyan gradient */
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #1a1a2e; /* Dark icons for contrast */
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #1a1a2e; /* Dark text for contrast */
  font-size: 16px;
  font-weight: 400;
}






/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  margin-top: 150px;
  position: relative;
  background-color: #01010c; /* Dark base for footer */
  vertical-align: middle;
  min-height: 150px;
  border-radius: 150px 150px 0px 0px;
}

footer p {
  text-align: center;
  line-height: 150px;
  color: #b0b0b0; /* Muted gray text */
  font-weight: 400;
}

footer p a {
  color: #00d4ff; /* Cyan for links */
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 30px;
  transform: rotate(180deg);
  opacity: 0.5; /* Slightly reduced opacity */
  bottom: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}
/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }
  .header-area .main-nav .logo h1 {
    border-right: none;
  }
  .main-banner .item {
    padding: 80px 30px 120px 30px !important;
  }
  .main-banner .owl-nav {
    left: 30px !important;
  }
  .event_filter  {
    padding: 15px 20px;
  }
  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }
  .header-area .main-nav .logo {
    border-right: none;
  }
  .main-banner {
    padding-top: 100px;
  }
  .main-banner .item {
    padding: 100px 60px 140px 60px;
    margin-left: 0px;
    text-align: center;
  }
  .main-banner .item h2,
  .main-banner .item p {
    width: 100%;
  }
  .main-banner .item h2 {
    font-size: 36px;
    line-height: 50px;
  }
  .main-banner .item .buttons {
    display: inline-block;
    text-align: center;
  }
  .main-banner .item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .main-banner .owl-nav {
    left: 50% !important;
    transform: translateX(-60px) !important;
    bottom: 60px;
  }
  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }
  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 65px;
  }
  .services {
    margin-top: 80px;
  }
  .about-us {
    margin-top: 100px;
  }
  .accordion {
    padding: 40px 25px 10px 25px;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }
  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }
  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }
  .about-us .section-heading .main-button {
    margin-top: 30px;
  }
  .about-us .main-button a {
    background-color: #7a6ad8;
    color: #fff;
  }
  .courses {
    margin-top: 100px;
  }
  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }
  .fun-facts {
    margin-top: 70px;
  }
  .fun-facts::before {
    width: 95%;
  }
  .team {
    margin-top: 160px;
  }
  .team-member {
    margin-bottom: 140px;
  }
  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }
  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }
  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }
  .testimonials .item h4 {
    font-size: 17px;
  }
  .testimonials .item img {
    margin-right: 15px;
  }
  .testimonials .owl-nav {
    display: none;
  }
  .events {
    margin-top: 80px;
  }
  .events .item {
    margin-bottom: 66px;
  }
  .events .item .image img {
    position: relative;
    max-width: 100%;
  }
  .events .item ul {
    margin-top: -40px;
  }
  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }
  .events .item ul li {
    display: inline-block;
    width: 28% !important;
  }
  .events .item ul li:last-child {
    text-align: right;
  }
  .events .item a {
    bottom: 150px;
    top: auto;
  }
  .events .item ul li h6 {
    font-size: 14px;
  }
  .contact-us {
    padding-top: 20px;
  }
  .contact-us .section-heading {
    margin-right: 0px;
  }
  .contact-us .special-offer {
    background-color: #f1f0fe;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }
  .contact-us .special-offer h4 {
    font-size: 17px;
  }
  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }
  .contact-us .contact-us-content {
    padding: 30px;
  }
  footer {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav #search input {
    width: 200px;
  }
  .header-area .main-nav .nav li.has-sub:after {
    right: 15px;
  }
  .fun-facts:before {
    width: 95%;
  }
}