@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
:root{
  --green-color: #008000;
  --yellow-color: #f39c12;
  --light-green: #e8f5e9;
  --light-yellow: #fffde7;
  --bg-gradient: linear-gradient(135deg, #ff954f 0%, #ffd8b1 100%);
  --bg-green-gradient: linear-gradient(135deg, #008000 0%, #4CAF50 100%);
  --bg-orange-gradient: linear-gradient(135deg, #f39c12, #e67e22);  
  --text-color: #333;
  --text-light: #666;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --bg-blue-gradient: linear-gradient(90deg, #3a5f9f, #5a7ebf, #7a9edf);
  --orange-color: #FF954F;
  --dark-blue-color: #2c3e50;
  --section-bg: #f2f7fb;
  --theme-blue: #2c7096;

}



html {
  scroll-padding-top: 100px; /* Match or slightly exceed the height of your .header-sticky */
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', serif;
  font-weight: 400; /* or 300, 700, 900 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6
{
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 700; /* or 300, 700, 900 */
}

p
{
  color: #000;
  font-size: 17px;
}
.site-content {
  flex: 1;
}
@media(max-width: 991px)
{
  .navbar-nav .dropdown-menu
  {
    position: absolute !important;
  }
  .top-header-bar
  {
    display: none;
  }
}


/* Adjust Bootstrap's container breakpoints */
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

input:focus,
input:focus-visible {
  outline: none;
  box-shadow: none;
}

/*Breadcrumb CSS Start*/


.breadcrumb-container {
  position: relative;
  /*background: #f3f1fa;*/
  background: linear-gradient(90deg, #e4eaee, #f8fafc);
  color: #e2e8f0;
  padding: 20px 0 20px 0;
  line-height: 1.6;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}

.breadcrumb-main-head
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.breadcrumb-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--green-color, #008000);
  transition: var(--transition, all 0.3s ease);
}

.breadcrumb-home:hover {
  color: var(--dark-blue-color, #172B43);
  transform: scale(1.1);
}

.breadcrumb-link {
  color: var(--dark-blue-color);
  text-decoration: none;
  transition: var(--transition, all 0.3s ease);
  font-size: 24px;
}

.breadcrumb-link:hover {
  color: var(--yellow-color);
}

.breadcrumb-current {
  color: var(--dark-blue-color);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--dark-blue-color);
}

.page-title {
  color: var(--dark-blue-color);
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}


/*Breadcrumb CSS End*/

/*Header CSS Start*/

/* Top Header */
.top-header-bar{
  font-size: 0.9rem;
  background: radial-gradient(circle at 20% 50%, rgb(0 61 145 / 90%) 0%, rgba(16, 42, 76, 0.95) 100%);
}

.top-header-bar.top-header-3
{
  background: radial-gradient(circle at 20% 50%, #2c3e50 0%, rgba(16, 42, 76, 0.95) 100%);  
}

.top-header-bar.top-header-2
{
  background: var(--bg-green-gradient);
}



.top-header-bar .social-icon li a
{
  background: rgb(255 255 255 / 12%);
  color: var(--white);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.top-header-bar .social-icon li a i
{
  color: var(--white);
}
.top-header-bar .contact-info a
{
  color: var(--white);
  font-size: 18px;
}
/* Main Header */
header {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: var(--white);
}

.navbar-brand img {
  transition: all 0.3s ease;
}

/* Navigation Links */

/* Main Navigation */
.navbar-nav {
  flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px; /* Space for scrollbar */
  gap: 10px;
}


/* Menu item spacing */
.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}


/* Mobile offcanvas menu fixes */
#mobileMenu .navbar-nav {
  overflow: visible;
  flex-direction: column;
  white-space: normal;
}
.navbar-nav::-webkit-scrollbar {
  display: none;
}
.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: #333;
  position: relative;
}
.navbar-nav-wrapper {
  width: 100%;
  max-width: 100%;
}

/* Highlight parent menu item when active/current */
.current-menu-parent > a,
.current-menu-item.menu-item-has-children > a,
.current_page_item.menu-item-has-children > a,
.current_page_ancestor > a,
.navbar__item--parent.active {
  color: var(--yellow-color) !important;
  font-weight: bold;
}

/* Reset/override color for submenus, even if they get an active class */
.sub-menu .current-menu-item > a,
.sub-menu .current_page_item > a,
.navbar__item--child.active {
  color: inherit !important;
  font-weight: normal;
}

.current-menu-item.current_page_item.active .navbar__item
{
  color: var(--yellow-color) !important;
  font-weight: bold;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--bg-gradient);
}

.navbar-nav .active > .nav-link {
  color: var(--bg-gradient) !important;
}

.submenu-toggle {
  background: none;
  border: none;
  font-size: 1.5em;
  line-height: 1;
  padding: 0 0.5em;
  cursor: pointer;
  color: var(--yellow-color);
}
@media (min-width: 992px) {
  .submenu-toggle {
    display: none !important;
  }
}


.dropdown-item {
  padding: 0.5rem 1.5rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
  color: var(--bg-gradient) !important;
}

/* Buttons */
.btn-success {
  background: var(--bg-orange-gradient);
  border:none;
}


/* Main Navigation */
.navbar-nav {
  display: flex;
  flex-grow: 1;
}

.navbar-nav > .nav-item {
  position: relative;
  flex: 1 0 auto;
  text-align: center;
  max-width: max-content;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}
.navbar-nav > .nav-item a
{
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 17px;
  font-weight: 600;
}
.navbar-nav > .nav-item a:hover
{
  color: var(--yellow-color);
}

.menu-item-has-children .dropdown-menu li a
{
  font-size: 16px;
  font-weight: 500;
}


.navbar-nav > .nav-item > .nav-link {
  font-weight: 600;
  padding: 1rem 0.5rem !important;
  color: #333;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar-nav > .nav-item :hover
{
  color: var(--bg-gradient);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 1rem 0.5rem !important;
  color: #333;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--bg-gradient);
}

.navbar-nav .active > .nav-link {
  color: var(--bg-gradient) !important;
}


.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

/* Dropdown Menu on Hover */
.navbar-nav > .nav-item:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 220px;
  text-align: left;
  padding: 10px;
}

.menu-item-has-children .dropdown-menu li {
  padding: 12px;
}  
.menu-item-has-children .dropdown-menu li:not(:last-child) {  
  border-bottom: 1px solid var(--dark-blue-color);
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

/* Logo and Call Us Button Positioning */
.navbar-brand {
  margin-right: auto;
}

@media (min-width: 992px) {
  .navbar-collapse {
    flex-grow: 0;
  }
}

/* Dropdown arrows for parent menu items */
.navbar-nav .menu-item-has-children > .nav-link:after {
  content: "\f107";
  font-family: "bootstrap-icons";
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;  
}

.navbar-nav .menu-item-has-children:hover > .nav-link:after {
  transform: rotate(180deg);
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
  color: var(--bg-gradient) !important;
}

/* Logo and Branding */
.navbar-brand {
  min-width: 150px;
  padding-right: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-nav > .nav-item {
    margin: 0 0.25rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0.25rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    min-width: 120px;
  }
}

/* Mobile Menu Offcanvas */
.offcanvas {
  max-width: 80%;
}



/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none;
  }

  .navbar-toggler {
    padding: 0.25rem;
  }
}

@media (max-width: 767.98px) {
  .top-header-bar .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .social-links {
    margin-bottom: 0.5rem;
  }

  .contact-info {
    width: 100%;
  }

  .navbar-brand img {
    max-height: 80px;
  }

  .offcanvas {
    max-width: 100%;
  }
}
/*Header CSS End*/



/*Banner Slider CSS Start*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 2;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 1200px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.2s;
}

.slide.active .content-wrapper {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  font-weight: 900;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: capitalize;
}

.slide-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--yellow-color);
  border-radius: 2px;
}

.home-3 .slide-title::after
{
  background: var(--bg-orange-gradient);
}


.slide-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slide-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--yellow-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.slide-button:hover {
  background: var(--green-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.slide-button:hover::before {
  left: 100%;
}

.slide-button svg {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.slide-button:hover svg {
  transform: translateX(5px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.slider-nav:hover {
  background: var(--yellow-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.home-2 .slider-nav:hover
{
  background: var(--green-color);
}
.home-3 .slider-nav:hover
{
  background: var(--bg-orange-gradient);
}

.slider-nav svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--bg-orange-gradient);
  transform: scale(1.3);
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-slider {
    height: 70vh;
  }

  .slide-title {
    font-size: 2.8rem;
  }

  .slide-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .slide-title {
    font-size: 1.7rem;
    padding-bottom: 0.8rem;
  }

  .slide-title::after {
    width: 80px;
    height: 3px;
  }

  .slide-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }


  .slide-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .slider-dots {
    bottom: 20px;
  }
}
/*Banner Slider CSS End*/


/*Feature CSS Start*/

/* Premium Feature Section - Self-contained */
.fs-premium-features {
  --fs-card-bg: #ffffff;
  --fs-text: #4a5568;
  --fs-light-text: #718096;  
  padding: 3rem 0;
  position: relative;
  background: var(--section-bg);
}

.fs-premium-container {
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.fs-premium-card {
  position: relative;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fs-premium-card-inner {
  position: relative;
  background: var(--fs-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(23, 43, 67, 0.12);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fs-premium-card:hover .fs-premium-card-inner {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -10px rgba(23, 43, 67, 0.2);
}

.fs-premium-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fs-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fs-premium-card:hover .fs-premium-img {
  transform: scale(1.1);
}


.fs-premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.7) 0%,        /* --yellow-color with 70% opacity */
    rgba(44, 62, 80, 0.9) 100%         /* --dark-blue-color with 90% opacity */
  );
  mix-blend-mode: multiply;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.fs-premium-overlay:hover {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.8) 0%,        /* More opaque on hover */
    rgba(44, 62, 80, 0.95) 100%        /* Darker blue on hover */
  );
}

.fs-premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: rotate(15deg);
  transition: all 0.4s ease;
}

.fs-premium-badge-icon {
  width: 24px;
  height: 24px;
}

.fs-premium-card:hover .fs-premium-badge {
  transform: rotate(0) scale(1.1);
}

.fs-premium-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.fs-premium-title {
  font-size: 1.7rem;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.fs-premium-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fs-premium-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--yellow-color);
  transition: width 0.4s ease;
}


.fs-premium-card:hover .fs-premium-title::after {
  width: 80px;
}

.fs-premium-desc {
  color: var(--fs-text);
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.fs-premium-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  margin-top: auto;
}

.fs-premium-cta-text {
  margin-right: 10px;
}

.fs-premium-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.fs-premium-cta-icon svg {
  width: 14px;
  height: 14px;
}

.fs-premium-cta:hover {
  letter-spacing: 0.5px;
}

.fs-premium-cta:hover .fs-premium-cta-icon {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .fs-premium-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .fs-premium-features {
    padding: 2rem 0;
  }

  .fs-premium-container {
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .fs-premium-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .fs-premium-container {
    grid-template-columns: 1fr;
  }

  .fs-premium-card-inner {
    border-radius: 12px;
  }

  .fs-premium-title {
    font-size: 1.3rem;
  }
}

/*Feature CSS End*/

/*Our Service Section CSS Start*/
.services-section {
  padding: 1rem 0;

}
.page-services-section
{
  padding: 1rem 0;
  background: var(--section-bg);

}

.home-2 .services-section
{
  background: var(--light-yellow);
}


.services-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-blue-color);
  margin-bottom: 1rem;
  position: relative;
  font-weight: 900;
}


.services-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-color, #f0a52e) 0%, rgba(240, 165, 46, 0.3) 100%);
  border-radius: 2px;
}


.home-2 .services-heading::after
{
  background: linear-gradient(90deg, var(--green-color) 0%, rgba(240, 165, 46, 0.3) 100%);
}

.services-intro {
  text-align: center;
  color: var(--text-color, #333);
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}


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

.tab-nav-container {
  position: relative;
  margin-bottom: 2px;
  background: var(--white);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-nav {
  display: flex;
  position: relative;
  z-index: 1;
}

.tab-btn {
  padding: 1.2rem 2rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  outline: none;
  flex: 1;
  text-align: center;
}

.tab-btn span {
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.tab-btn.active {
  color: var(--dark-blue-color);
  background: #d1e3f3;
  font-weight: 900;
}

.home-2 .tab-btn.active
{
  background: var(--light-green);
}
.home-3 .tab-btn.active
{
  background: var(--light-green);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--yellow-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.home-2 .tab-indicator
{
  background: var(--green-color);
}

.tab-btn.active .tab-indicator {
  transform: scaleX(1);
}

.tab-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

.tab-contents {
  background: var(--section-bg);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.tab-content {
  display: none;
  padding: 2.5rem;
  animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
  display: block;
  background: var(--light-green);
}

.home-2 .tab-content.active
{
  background: var(--light-green);
}

.service-content {
  line-height: 1.8;
  color: var(--text-color);
}

.service-content ul {
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.5rem;
}

.service-content li {
  margin-bottom: 0.8rem;
  position: relative;
  break-inside: avoid;
  color: var(--text-color, #333);
  font-size: 17px;
  list-style: none;
  padding-left: 1.8rem;
  transition: all 0.3s ease-out;
}


.service-content li:hover {
  transform: translateX(8px);
}
.service-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--yellow-color, #f0a52e);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(240, 165, 46, 0.3);
  transition: all 0.3s;
}


.service-content a {
  color: var(--green-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.service-content a:hover {
  color: var(--yellow-color);
  border-bottom-color: var(--yellow-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 1rem 0;
  }

  .tab-nav {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1 0 50%;
    padding: 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--yellow-color);
  }

  .tab-content {
    padding: 0.5rem;
  }

  .service-content ul {
    columns: 1;
  }
}


@media (max-width: 480px) {


  .tab-btn {
    flex: 1 0 100%;
  }
}
/*Our Service Section CSS End*/

/*Hospitaly Section CSS start*/

/* Scoped styles with high-specificity selector */
section.hospitality-section {
  padding: 4rem 0;
  color: var(--white, #ffffff);
  background: var(--section-bg);
  position: relative;
}

.home-2 section.hospitality-section
{
  background: var(--light-yellow);
}


section.hospitality-section .container {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

section.hospitality-section .hospitality-content {
  flex: 2;
  display: flex;
  gap: 3rem;
}

section.hospitality-section .hospitality-text-wrapper {
  flex: 1;
}

section.hospitality-section .hospitality-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-blue-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-transform: capitalize;
}

section.hospitality-section .hospitality-heading span {
  position: relative;
  display: inline-block;
}


section.hospitality-section .hospitality-heading span::after
{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-color) 0%, rgba(240, 165, 46, 0.3) 100%);
  border-radius: 2px;
  transition: var(--transition, all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1));
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-color, #f0a52e) 0%, rgba(240, 165, 46, 0.3) 100%);
  border-radius: 2px;
  transition: var(--transition, all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1));
}

section.hospitality-section .hospitality-description {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

section.hospitality-section .hospitality-description p {
  margin-bottom: 1.5rem;
  color: var(--text-color, #333);
}


section.hospitality-section .hospitality-decoration {
  flex: 1;
  position: relative;
  min-height: 300px;
}

section.hospitality-section .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

section.hospitality-section .circle-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation: hospitality-float 8s ease-in-out infinite;
}

section.hospitality-section .circle-2 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 60%;
  animation: hospitality-float 6s ease-in-out infinite 1s;
}

section.hospitality-section .circle-3 {
  width: 80px;
  height: 80px;
  top: 70%;
  left: 30%;
  animation: hospitality-float 5s ease-in-out infinite 0.5s;
}

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

section.hospitality-section .latest-post-area {
  flex: 1;
  background: var(--white, #ffffff);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
}

section.hospitality-section .latest-post-area h3
{
  color: var(--yellow-color);
}

.home-2 section.hospitality-section .latest-post-area h3
{
  color: var(--green-color);
}

section.hospitality-section .latest-post-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.hospitality-section .latest-post-area li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

section.hospitality-section .latest-post-area li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.hospitality-section .latest-post-area a {
  color: var(--text-color, #333);
  text-decoration: none;
  transition: var(--transition, all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1));
  display: block;
  font-size: 17px;
  line-height: 1.5;
}

section.hospitality-section .latest-post-area a:hover {
  color: var(--yellow-color);
}

@media (max-width: 992px) {
  section.hospitality-section .container {
    flex-direction: column;
  }

  section.hospitality-section .hospitality-content {
    flex-direction: column;
  }

  section.hospitality-section .hospitality-decoration {
    min-height: 200px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  section.hospitality-section {
    padding: 2rem 0;
  }

  section.hospitality-section .hospitality-heading {
    font-size: 1.7rem;
  }

  section.hospitality-section .hospitality-description {
    font-size: 16px;
  }
}
/*Hospitaly Section CSS end*/


/*About Us CSS Start*/




.about-section {
  background-color: var(--white);
  padding: 4rem 0;
}


.about-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.about-logo {
  flex: 0 0 180px; /* Fixed width for logo */
  text-align: center;
}

.logo-img {
  max-width: 150px;
  height: auto;
  transition: var(--transition);
}

.about-text {
  flex: 1;
}

.section-title {
  color: var(--dark-blue-color);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--yellow-color);
  margin-bottom: 1rem;
}

.about-description {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-button {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background-color: var(--orange-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.about-button:hover {
  background-color: var(--dark-blue-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-logo {
    flex: 0 0 auto;
  }

  .logo-img {
    max-width: 120px;
  }
}

/*About Us CSS End*/


/*Our Team CSS Start*/

.team-member-section {
  background-color: var(--white);
  padding: 4rem 0;
}


.member-profile {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.member-photo {
  position: relative;
  flex: 0 0 280px;
}

.member-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 2;
}

.photo-border {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange-color);
  border-radius: 8px;
  z-index: 1;
  transition: var(--transition);
}

.member-photo:hover .photo-border {
  top: -10px;
  left: -10px;
}

.member-details {
  flex: 1;
}

.member-name {
  color: var(--dark-blue-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.member-position {
  color: var(--orange-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.member-bio p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.intro {
  font-size: 1.1rem;
  font-weight: 500;
}

.member-achievements {
  background: rgba(23, 43, 67, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--orange-color);
}

.member-achievements h4 {
  color: var(--dark-blue-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.member-achievements ul {
  padding-left: 1.2rem;
  margin: 0;
}

.member-achievements li {
  color: var(--text-color);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .member-profile {
    flex-direction: column;
    align-items: center;
  }

  .member-photo {
    flex: 0 0 auto;
    max-width: 280px;
    margin-bottom: 2rem;
  }

  .member-name {
    text-align: center;
  }

  .member-position {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .team-member-section {
    padding: 3rem 0;
  }

  .member-name {
    font-size: 1.7rem;
  }

  .member-position {
    font-size: 1.1rem;
  }
}
/*Our Team CSS End*/

/* Footer Base Styles CSS Start */


.modern-footer.footer-1 
{
  position: relative;
  background-color: #003d91e6;
  background-image: 
  radial-gradient(circle at 20% 50%, rgb(0 61 145 / 90%) 0%, rgba(16, 42, 76, 0.95) 100%),
  url('https://inngeniuspsm.com/saphotels.com/wp-content/uploads/2025/07/cyazaw5qgrygels7ebse.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e2e8f0;
  padding: 50px 0 0;
  line-height: 1.6;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}
.modern-footer.footer-2
{
  background: #ffffff;
  padding: 50px 0 0;
  border-top: 1px solid var(--green-color);
}
.modern-footer.footer-3
{
  position: relative;
  background-color: #2c3e50;
  background-image: 
  radial-gradient(circle at 20% 50%, #2c3e50 0%, rgba(16, 42, 76, 0.95) 100%),
  url('https://inngeniuspsm.com/saphotels.com/wp-content/uploads/2025/07/cyazaw5qgrygels7ebse.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e2e8f0;
  padding: 50px 0 0;
  line-height: 1.6;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}




.footer-main {
  padding-bottom: 50px;
}


.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-column {
  margin-bottom: 25px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 165, 46, 0.25);
  font-weight: 900;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-2 .footer-column h3
{
  color: var(--green-color);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--yellow-color);
}

.footer-column p {
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.7;
}

.footer-2 .footer-column p
{
  color: #333;
}

.portfolio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: var(--white);
}

.footer-2 .portfolio-list li
{
  color: #333;
}

.portfolio-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--yellow-color);
  border-radius: 50%;
  opacity: 0.8;
}

.portfolio-list li:hover {
  transform: translateX(5px);
}



address {
  font-style: normal;
  color: var(--white);
  line-height: 1.8;
}

.footer-2 address
{
  color: #333;
}

address a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.footer-2 address a
{
  color: var(--green-color);
}

address a:hover {
  color: #f0a52e;
  border-bottom-color: rgba(240, 165, 46, 0.5);
}

.footer-search {
  display: flex;
  margin-bottom: 30px;
  max-width: 300px;
}

.footer-search input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.footer-2 .footer-search input
{
  background: var(--light-green);
}

.footer-search input::placeholder {
  color: #a0aec0;
}

.footer-2 .footer-search input::placeholder {
  color: #000;
}

.footer-3 .footer-search input::placeholder {
  color: #fff;
}

.footer-search input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(240, 165, 46, 0.3);
}

.footer-search button {
  background-color: #f0a52e;
  color: var(--white);
  border: none;
  padding: 0 18px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-2 .footer-search button
{
  background: var(--bg-green-gradient);
}

.footer-3 .footer-search button
{
  background: var(--bg-orange-gradient);
}

.footer-search button:hover {
  background-color: #ffb83d;
}

.download-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-2 .download-link
{
  color: var(--green-color);
}

.download-link:hover {
  color: var(--yellow-color);
  transform: translateX(3px);
}

.download-link::after {
  content: '→';
  margin-left: 8px;
  transition: all 0.3s ease;
}

.download-link:hover::after {
  transform: translateX(3px);
}

.footer-bottom {
  background-color: rgba(16, 42, 76, 0.7);
  padding: 15px 0;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.footer-2 .footer-bottom
{
  background: var(--light-green);
}

.copyright p {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.footer-2 .copyright p
{
  color: #000;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: rgba(240, 165, 46, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-2 .back-to-top
{
  background: var(--bg-green-gradient);
}

.footer-3 .back-to-top
{
  background: var(--bg-orange-gradient);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #f0a52e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .modern-footer {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Footer Base Styles CSS End */


/*Our Service Page CSS Start*/

.services-section {
  padding: 2rem;
  background-color: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.home-3 .services-section
{
  background: var(--light-yellow);
}

.container {  
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.header-content {
  flex: 1;
}

.header-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(23, 43, 67, 0.1);
}

.header-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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


.section-intro {
  font-size: 17px;
  color: var(--dark-blue-color);
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(23, 43, 67, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--dark-blue-color);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-blue-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(23, 43, 67, 0.1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-head
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-head h3
{
  color: var(--theme-blue);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  font-weight: 900;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-card ul li {
  padding: 4px 0;
  padding-left: 30px;
  position: relative;
  color: var(--dark-blue-color);
  transition: all 0.3s ease;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--light-green);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--light-green);
  transition: all 0.3s;
}

.service-card ul li:hover {
  transform: translateX(5px);
}


.learn-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more:hover {
  transform: translateX(5px);
}

.cta-section {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(23, 43, 67, 0.05);
  margin-top: 30px;
}

.cta-section p {
  font-size: 2.3rem;
  color: var(--dark-blue-color);
  margin-bottom: 25px;
  font-weight: 900;
  font-family: 'Nanum Myeongjo', serif;
  text-transform: capitalize;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(240, 165, 46, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 165, 46, 0.4);
}

@media (max-width: 1024px) {
  .services-header {
    flex-direction: column;
  }

  .header-image {
    margin-top: 40px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .service-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 30px 0;
  }

  .cta-section p {
    font-size: 1.7rem;
  }

  .cta-button {
    padding: 12px 30px;
  }
}

/*Our Service Page CSS End*/


@media(max-width: 767px)
{
  .fs-premium-title, .service-card h3
  {
    font-size: 1.3rem;
  }
  p, .services-intro, .service-content li, section.hospitality-section .latest-post-area a, .footer-column p, .portfolio-list li, address
  {
    font-size: 15px;
  }
  .footer-column h3
  {
    font-size: 1.3rem;
  }
  .cta-section p
  {
    font-size: 1.7rem;
  }
  .cta-button
  {
    padding: 10px 25px;
  }
  .slider-nav svg {
    width: 45px;
    height: 45px;
  }
  .about-section
  {
    padding: 1rem 0;
  }
  section.hospitality-section .container
  {
    gap: 1rem;
  }
  section.hospitality-section .latest-post-area
  {
    padding: 1rem;
  }
  .modern-footer.footer-3
  {
    padding: 20px 0 0;
  }
  .footer-main
  {
    padding-bottom: 10px;
  }

  .service-content ul
  {
    padding-left: 0.5rem;
  }
  .service-content li {
    margin-bottom: 0.5rem;
  }
  .services-intro
  {
    margin: 0 auto 2rem;
  }

    .page-title
  {
    display: none;
  }
    .services-heading {
    font-size: 1.7rem;
  }
  .footer-3 .footer-search button
  {
    font-size: 12px;
  }
  .about-text
  {
    flex: 1 1 100px;
  }
}

/*about us page css start*/
.about-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue-color);
            position: relative;
            display: inline-block;
            font-weight: 900;
        }

        .section-header h1:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--bg-orange-gradient);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-header p.subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 50px;
        }

        .about-image {
            flex: 1 1 200px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(23, 43, 67, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-text {
            flex: 1 1 500px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .highlight-box {
            background: var(--light-yellow);
            color: var(--white);
            padding: 18px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .highlight-box p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .features-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .feature-card {
            flex: 1 1 300px;
            background: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border-top: 4px solid var(--dark-blue-color);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .feature-card h3 {
            color: var(--dark-blue-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            font-weight: 900;
        }


        .feature-card ul {
            padding-left: 20px;
        }

        .feature-card ul li {
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .content-block {
            margin-bottom: 40px;
        }

        .content-block h2 {
            color: var(--dark-blue-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
            font-weight: 900;
        }

        .content-block h2:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--yellow-color);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        .content-block p
        {
          color: #333;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }

        .stat-item {
            flex: 1 1 200px;
            text-align: center;
            padding: 20px;
            background: var(--light-green);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .stat-item .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--green-color);
            margin-bottom: 5px;
        }

        .stat-item .label {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .locations-container {
            background: var(--light-green);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .locations-container h3 {
            color: var(--dark-blue-color);
            margin-bottom: 20px;
            text-align: center;
            font-weight: 900;
        }

        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .location-tag {
            background: var(--white);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .cta-box {
            text-align: center;
            margin-top: 50px;
        }

        .cta-box h3 {
            font-size: 1.8rem;
            color: var(--dark-blue-color);
            margin-bottom: 20px;
            font-weight: 900;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--bg-orange-gradient);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .feature-card {
                flex: 1 1 100%;
            }
        }
/*about us page css end*/
