
/* Fonts */
:root {
  --font-default: "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";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

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

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

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

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}


/* slightly reduced top padding on
#new header section 
/* Get Started Section */


.get-started .container {
  padding-top: 30px;
  /* empty space at the top */
}

.get-started {
  background: #f9fafc;
  margin-top: 100px;
  padding: 80px 20px 60px 20px;
}


@media (max-width: 768px) {
  .get-started {
    padding-top: 60px;
    /* slightly reduced top padding on mobile */
  }
}

.get-started .content-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started .content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.get-started .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.get-started .section-title span {
  color: #d4af37;
  /* gold highlight */
}

.get-started .section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.btn-learn-more {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(90deg, #FFD700, #D4AF37);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-learn-more:hover {
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  color: #fff;
}



/* Equal height alignment */
@media (min-width: 992px) {
  .get-started .row {
    display: flex;
    align-items: stretch;
    /* ensures both columns stretch equally */
  }

  .get-started .col-lg-6 {
    display: flex;
    flex-direction: column;
  }

  .get-started .content-box,
  .get-started .image-box {
    flex: 1;
    /* equal height for both */
    display: flex;
    flex-direction: column;
  }

  .get-started .image-box img {
    flex: 1;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* Logo container */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Image styling */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-text {
  color: #d4af37;
  /* gold color */
  font-weight: 700;
  font-size: 2rem;
  font-family: "Trebuchet MS";
  /* single font family */
}

#header.header-scrolled .logo-text {
  color: #d4af37;
}

#header.header-scrolled .logo-text.golden {
  color: #d4af37;
  font-family: "Trebuchet MS";
  /* single font family */
}


/* Transparent header by default */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
}

#header .container-xl {
  padding: 25px 0;
  transition: padding 0.3s ease;
}

/* White text before scroll */
#navbar a {
  color: #fff;
  transition: color 0.3s ease;
}

/* On scroll — white background + smaller padding + black text */
#header.header-scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled .container-xl {
  padding: 10px 0;
}

#navbar a.scrolled-link {
  color: #000;
}


.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}






/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

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

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

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

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

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

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Focus - Services Unified Style
--------------------------------------------------------------*/

.aboutfocus.services {
  padding: 0px 0;
  background: linear-gradient(135deg, #f9fbff 0%, #eef2f7 100%);
}

.aboutfocus.services .section-header {
  margin-bottom: 0px; /* Reduced spacing */
}

.aboutfocus.services .aboutfocus-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px; /* Reduced spacing below title */
}

.aboutfocus.services .aboutfocus-text {
  color: #555;
  font-size: 16px;
  margin-bottom: 0; /* Remove extra space */
}

/* ======= Cards ======= */
.aboutfocus-card {
  background: linear-gradient(135deg, #ffffff, #fff9f0);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.aboutfocus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffd565; /* Golden hover color */
  transition: 0.5s ease;
  z-index: 0;
  border-radius: 20px;
}

.aboutfocus-card:hover::before {
  left: 0;
}

.aboutfocus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.aboutfocus-iconbox {
  font-size: 40px;
  color: #ffd565; /* Golden icon */
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.aboutfocus-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.aboutfocus-card-text {
  font-size: 15px;
  color: #666;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.aboutfocus-card:hover .aboutfocus-card-title,
.aboutfocus-card:hover .aboutfocus-card-text,
.aboutfocus-card:hover .aboutfocus-iconbox {
  color: #fff;
}

/* ======= Popup ======= */
.aboutfocus-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.aboutfocus-popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
}

.aboutfocus-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #ffd565; /* Golden close button */
  cursor: pointer;
  transition: all 0.3s ease;
}

.aboutfocus-close:hover {
  transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

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

/* ======= Responsive ======= */
@media (max-width: 991px) {
  .aboutfocus-card {
    padding: 30px 20px;
  }
  .aboutfocus.services .aboutfocus-title {
    font-size: 30px;
  }
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .row.gy-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact .info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  /* Top padding for icons */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  min-height: 240px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  border: 2px solid transparent;
  /* No border initially */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
}

.contact .info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: gold;
  /* Smooth gold border on hover */
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 26px;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact .info-item:hover i {
  transform: scale(1.1);
  /* Icon pop on hover */
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
}

/* Animation delays for each info-item */
[data-aos="fade-up"][data-aos-delay="100"] {
  animation-delay: 0.1s;
}

[data-aos="fade-up"][data-aos-delay="200"] {
  animation-delay: 0.3s;
}

[data-aos="fade-up"][data-aos-delay="300"] {
  animation-delay: 0.5s;
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# VisionProduct Section
--------------------------------------------------------------*/

/* ======= VisionProduct Section Styles ======= */
.visionproduct {
  font-family: 'Segoe UI', sans-serif;
  /* Modern clean font */
  color: #333;
}

/* Card styling */
.visionproduct .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

/* Hover effect — gold border + lift */
.visionproduct .post-item:hover {
  border: 2px solid #d4af37;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

/* Image zoom effect */
.visionproduct .post-item .post-img img {
  transition: 0.5s ease-in-out;
}

.visionproduct .post-item:hover .post-img img {
  transform: scale(1.1);
}

/* Post date badge */
.visionproduct .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #d4af37;
  /* Gold color badge */
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
}

/* Post content padding */
.visionproduct .post-item .post-content {
  padding: 20px;
  flex: 1;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* Post titles */
.visionproduct .post-item .post-title {
  font-size: 18px;
  color: #222;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
  font-family: 'Segoe UI', sans-serif;
}

/* Hover text color */
.visionproduct .post-item:hover .post-title,
.visionproduct .post-item:hover .readmore {
  color: #d4af37;
  /* Gold hover color */
}

/* Read more link */
.visionproduct .post-item .readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 10px;
}

.visionproduct .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

/* Reduced image height */
.visionproduct .post-img img.reduced-img {
  height: 130px;
  object-fit: cover;
  width: 100%;
}

/* Bullet points style */
.visionproduct .post-points {
  list-style-type: none;
  /* Removed bullets */
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 15px;
  color: #555;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Individual bullet points spacing */
.visionproduct .post-points li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 15px;
}

/* Bullet custom style */
.visionproduct .post-points li:before {
  content: "•";
  /* Simple bullet */
  color: #d4af37;
  /* Gold bullet */
  position: absolute;
  left: 0;
}

/* Bold important keywords in bullet points */
.visionproduct .post-points li strong {
  font-weight: 700;
  background: linear-gradient(90deg, #c5a253, #b49338);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Trebuchet MS, Helvetica, sans-serif;
}

/* Post date font style */
.visionproduct .post-item .post-date {
  font-family: Arial, Helvetica, sans-serif;
}

/* Learn More button */
.visionproduct .learn-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #d4af37;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.visionproduct .learn-more-btn:hover {
  background: #bfa238;
}




/*font-family: Arial, Helvetica, sans-serif;
font-family: Verdana, Geneva, sans-serif;
font-family: Tahoma, Geneva, sans-serif;
font-family: Trebuchet MS, Helvetica, sans-serif;
font-family: Georgia, serif;
font-family: "Times New Roman", Times, serif;
font-family: "Courier New", Courier, monospace;
font-family: "Lucida Console", Monaco, monospace;
font-family: "Segoe UI", Tahoma, Geneva, sans-serif; 
font-family: "Roboto", sans-serif;
font-family: "Open Sans", sans-serif;
font-family: "Lato", sans-serif;
font-family: "Poppins", sans-serif;
font-family: "Ubuntu", sans-serif;
font-family: "Merriweather", serif;
font-family: "Oswald", sans-serif;*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}



/*--------------------------------------------------------------
# New
--------------------------------------------------------------*/


.animated-text {
  display: inline-block;
  white-space: nowrap;
  /* keeps text on one line */
  animation: fadeSlide 1s ease-in-out forwards;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-get-started {
  animation: popIn 1s ease-in-out forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}



/*** Banner ***/
.banner {
  position: relative;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, rgba(241,196,15,0.15), rgba(255,223,186,0.15)), url('../img/bg.jpg') center center no-repeat;
  background-size: cover;
}

.banner-inner {
  background: #fff8dccc; /* semi-transparent light gold */
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
}

.banner-inner::before,
.banner-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}

.banner-inner::before {
  top: 0;
  left: 0;
  border-top: 150px solid var(--bs-primary);
  border-right: 150px solid transparent;
}

.banner-inner::after {
  right: 0;
  bottom: 0;
  border-bottom: 150px solid var(--bs-secondary);
  border-left: 150px solid transparent;
}

.banner h1.display-4 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e1ba38, #f4c430);
  background-clip: text;          /* Standard property for future compatibility */
  -webkit-background-clip: text;  /* WebKit-specific for Chrome, Safari, Edge */
  -webkit-text-fill-color: transparent; /* Makes the text itself transparent to show gradient */
  color: transparent;             /* Fallback for browsers that support standard background-clip */
  margin-bottom: 20px;
}


.banner h2.display-6 { 
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
}

.banner .btn-primary {
  background: linear-gradient(90deg, #e1ba38, #f4c430);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225,186,56,0.4);
}

.banner-img-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.banner-img-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .banner-inner {
    padding: 30px 20px;
  }
  .banner h1.display-4 {
    font-size: 2.2rem;
  }
  .banner h2.display-6 {
    font-size: 1rem;
  }
}





/* ===== About Section ===== */
.about {
  padding: 60px 0;
}

.about-img {
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.our-story {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-text-strong {
  font-weight: 500;
  color: #444;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: #444;
}

.about-icon {
  position: absolute;
  left: 0;
  top: 3px;
  color: #3498db;
  font-size: 1.3rem;
}

.watch-video {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.watch-icon {
  font-size: 2rem;
  color: #3498db;
  margin-right: 10px;
}

.watch-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
}

.watch-link:hover {
  color: #3498db;
}



.counter {
  position: relative;
  z-index: 1;
}

.counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay for readability */
  z-index: 0;
}

.counter .container {
  position: relative;
  z-index: 1;
}

.counter h2,
.counter p {
  color: #fff;
}

.counter__item {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.counter__item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.counter-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  transition: background 0.3s ease;
}

.counter-icon i {
  font-size: 40px;
  color: #fff;
}

.counter__item p {
  font-size: 16px;
  margin-top: 5px;
}

.counter_num {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}




.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230066cc' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.section-header {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #e1ba38;
}

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

.section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-item {
  border-radius: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item .icon {
  font-size: 2.5rem;
  color: white;
  background: var(--gradient);
  padding: 20px;
  border-radius: 18px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-light);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.4;
}

.service-item ul {
  padding-left: 0;
  list-style: none;
  margin-top: auto;
}

.service-item ul li {
  font-size: 0.95rem;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item ul li:last-child {
  border-bottom: none;
}

.service-item ul li i {
  color: #28a745;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

/* Animation delays for staggered effect */
.service-item:nth-child(1) {
  animation-delay: 0.1s;
}

.service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.service-item:nth-child(3) {
  animation-delay: 0.3s;
}

.service-item:nth-child(4) {
  animation-delay: 0.4s;
}

.service-item:nth-child(5) {
  animation-delay: 0.5s;
}

.service-item:nth-child(6) {
  animation-delay: 0.6s;
}

.service-item:nth-child(7) {
  animation-delay: 0.7s;
}

.service-item:nth-child(8) {
  animation-delay: 0.8s;
}

.service-item:nth-child(9) {
  animation-delay: 0.9s;
}

.service-item:nth-child(10) {
  animation-delay: 1.0s;
}

.service-item:nth-child(11) {
  animation-delay: 1.1s;
}

.service-item:nth-child(12) {
  animation-delay: 1.2s;
}

.service-item:nth-child(13) {
  animation-delay: 1.3s;
}

.service-item:nth-child(14) {
  animation-delay: 1.4s;
}

.service-item:nth-child(15) {
  animation-delay: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .service-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }
}



:root {
  --gold-gradient: linear-gradient(135deg, #d4af37, #f6e27f);
  --gold-gradient-light: linear-gradient(135deg, #f9e79f, #ffe066);
  --gold-dark: #5c4710;
}

/* ===== Services Section ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #fffaf0, #fff7e0);
  position: relative;
  overflow: hidden;
}

/* ===== Section Header ===== */
.section-header {
  margin-bottom: 30px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  animation: textGradientShift 5s infinite alternate ease-in-out;
}

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

.section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Tabs Styling ===== */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding-left: 10px;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  position: relative;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-dark);
  background: transparent;
  transition: all 0.4s ease;
}

.nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient-light);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.nav-tabs .nav-link:hover {
  color: white;
  transform: translateY(-3px);
}

.nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.nav-tabs .nav-link.active {
  color: var(--gold-dark);
  font-weight: 700;
}

.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  animation: underlineGrow 0.5s ease forwards;
}

/* ===== Service Item Styling ===== */
.service-item {
  border-radius: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: fadeInUp 0.8s ease forwards;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item .icon {
  font-size: 2.5rem;
  color: white;
  background: var(--gold-gradient);
  padding: 20px;
  border-radius: 18px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  animation: iconPop 0.6s ease forwards;
}

.service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient-light);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-dark);
  line-height: 1.4;
  animation: fadeInUp 1s ease forwards;
}

.service-item ul {
  padding-left: 0;
  list-style: none;
  margin-top: auto;
}

.service-item ul li {
  font-size: 0.95rem;
  padding: 10px 0;
  padding-left: 30px;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item ul li:last-child {
  border-bottom: none;
}

.service-item ul li i {
  color: var(--gold-gradient);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes iconPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .nav-tabs {
    justify-content: center;
  }
}


/* ===== Vision Section with Light Gold Container & No Top Padding ===== */
.vision-section {
  padding: 0 20px 40px 20px;
  /* top padding 0, bottom 40px */
  background: linear-gradient(135deg, #fff8dc, #fffae3);
  /* Light gold gradient */
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  /* Soft rounded container */
  position: relative;
}

.vision-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  /* Set header color white */
}

.vision-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
  color: #ffffff;
  /* White heading */
}

.vision-header h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #fff, #ffd700);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Vision Text Styling */
.vision-text {
  font-size: 1.2rem;
  /* Custom font size */
  color: #ffffff;
  /* White text */
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 500;
}

/* Vision Points List */
.vision-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.vision-points li {
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 35px;
}

.vision-points li::before {
  content: "✔";
  color: #ffd700;
  font-weight: bold;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.vision-points li:hover {
  background: linear-gradient(90deg, #fffbea, #fff5d7);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-header h2 {
    font-size: 1.8rem;
  }

  .vision-text {
    font-size: 1rem;
  }

  .vision-points {
    grid-template-columns: 1fr;
  }

  .vision-points li {
    font-size: 0.9rem;
  }
}


.product-title {
  margin: 30px 0 20px;
  position: relative;
}

.product-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;

  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

/* Gold underline with animation */
.product-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffcc00);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover effect for underline */
.product-title h2:hover::after {
  width: 100px;
}

/* Background highlight behind text */
.product-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120%;
  height: 12px;
  background: rgba(255, 215, 0, 0.2);
  /* light gold highlight */
  border-radius: 6px;
  z-index: -1;
}




/* ===== header section welcome ===== */
.info h2 {
  font-size: 2.5rem;
  /* larger on desktop */
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  word-wrap: break-word;
  /* allow wrapping */
}

.info h2 span {
  display: inline-block;
}

.info h2 .gold-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd700, #ffb300);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Background gradient overlay */
.info::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  top: 0;
  left: 0;
  z-index: 0;
}

.info .container {
  position: relative;
  z-index: 1;
}

/* Responsive font sizes */
@media (max-width: 1200px) {
  .info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .info h2 {
    font-size: 1.6rem;
    white-space: normal;
    /* allow text wrapping */
  }
}

@media (max-width: 480px) {
  .info h2 {
    font-size: 1.4rem;
    white-space: normal;
  }
}


.desc-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.desc-btn p {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  font-family: 'Open Sans', sans-serif;
}

.btn-get-started {
  display: inline-block;
  padding: 14px 40px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white;
}

/* Responsive layout */
@media (max-width: 768px) {
  .info h2 {
    font-size: 2rem;
  }

  .desc-btn {
    flex-direction: column;
    text-align: center;
  }

  .desc-btn p {
    font-size: 1rem;
  }
}



.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}




.map-part {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.map-part:hover {
  transform: scale(1.02);
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.15);
}



.talk-to-us {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.talk-to-us:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.15);
}

.talk-to-us .section-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffb300);

  /* Standard property for background clipping */
  background-clip: text;
  -webkit-background-clip: text;
  /* Safari, Chrome, Edge */

  -webkit-text-fill-color: transparent;
  /* Safari, Chrome */
  color: transparent;
  /* Standard fallback */

  animation: fadeInUp 1s ease forwards;
}


.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0px 4px 15px rgba(0, 123, 255, 0.2);
}

.send-btn {
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: linear-gradient(135deg, #0056b3, #0099ff);
  transform: translateY(-2px);
}

/* AOS animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/* =================================
   1. Global About Focus Section & Equal Height
   ================================= */
.aboutfocus {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.aboutfocus>.container>.row {
  display: flex;
  align-items: stretch;
}

/* =================================
   2. Typography Base
   ================================= */
.aboutfocus-content {
  padding-left: 20px;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =================================
   3. Image Card Styling (Static)
   ================================= */
.aboutfocus-img {
  flex: 0.9;
  /* slightly smaller column width */
  display: flex;
  align-items: flex-start;
  /* keeps image aligned top */
  height: auto;
  /* allow text column to be taller */
}

.aboutfocus-img .image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: auto;
  /* allow image height control */
  max-height: 500px;
  /* smaller than text column */
}

.aboutfocus-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================================
   4. Text & Content Improvements
   ================================= */
.aboutfocus-text {
  flex: 1.1;
  /* make text column taller */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aboutfocus-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.aboutfocus-text {
  color: #444444;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
}

.aboutfocus-text-strong {
  font-weight: 600;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
}

.aboutfocus-list {
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.aboutfocus-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.aboutfocus-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.aboutfocus-icon {
  color: #28a745;
  margin-right: 15px;
  font-size: 1.4rem;
  min-width: 30px;
}

/* =================================
   5. "Watch Video" Button Design
   ================================= */
.watch-video {
  margin-top: auto;
  padding-top: 30px;
}

.watch-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff;
  padding: 10px 25px;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}

.watch-link:hover {
  background-color: #0056b3;
}

.watch-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #fff;
}



/* =================================
   5. "Learn More" Button Design
   ================================= */
.post-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 0px;
  /* adds space below entire card */
  border-radius: 10px;
  transition: all 0.3s ease;
}

.post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
  margin-bottom: 0;
  /* space before button area */
}

.learn-more-btn {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0px;
  /* <-- adds visible gap at the bottom */
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(90deg, #c5a253, #b49338);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: linear-gradient(90deg, #b49338, #c5a253);
  box-shadow: 0 4px 10px rgba(197, 162, 83, 0.4);
  transform: translateY(-2px);
}

/* Modal styles */
.custom-modal {
  display: none;
  /* hide by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background: white;
  padding: 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.modal-body {
  font-size: 16px;
  color: #333;
  margin: 20px 0;
}

.modal-buttons {
  display: flex;
  justify-content: space-around;
}

.btn-ok {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.btn-ok:hover {
  background: #218838;
}

.btn-cancel {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cancel:hover {
  background: #c82333;
}


.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.modal-icon {
  font-size: 50px;
  /* larger icon */
  color: orange;
  margin-bottom: 10px;
}









/* =================================
   5. "Asset Details screen"
   ================================= */

.asset-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.asset-section-description {
  font-size: 1.1rem;
  color: #555;
}

.asset-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.asset-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.asset-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4af37;
  /* GOLD COLOR */
}

.asset-card-list {
  padding-left: 20px;
  text-align: left;
}

.asset-card-list li {
  margin-bottom: 5px;
}

.asset-card-icon {
  padding-top: 30px;
  /* Extra top padding */
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.asset-card-icon i {
  font-size: 5rem;
  /* Increased icon size */
  color: #d4af37;
  /* GOLD COLOR */
}



/* Flight management*/
.flightmange-header {
  background-color: #f8f9fa;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.flightmange-logo img {
  height: 50px;
}

.flightmange-breadcrumbs {
  position: relative;
  width: 100%;
  height: 250px;
  background: url('../assets/img/contactus.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
}

.flightmange-section-title {
  margin-bottom: 2rem;
}

.flightmange-card-header {
  background-color: #0d6efd;
  color: #fff;
  font-weight: bold;
}

.flightmange-card {
  margin-bottom: 1.5rem;
}

.flightmange-service-list li {
  margin-bottom: 0.5rem;
}





 /* Commitment Section */
.commitment-section {
  padding: 30px 0 40px 0; /* Top space increased: 120px, bottom: 80px */
  font-family: "Inter", sans-serif;
  color: #fff;
}

.commitment-header {
  margin-bottom: 0px;  
}

.commitment-title {  
  font-size: 2.8rem;
  color: #d4af37; /* Gold color */
  font-weight: 700;
  margin-bottom: 10px;
}

.commitment-divider {
  width: 60px;
  height: 3px;
  background-color: #d4af37; /* Gold divider */
  margin: 0 auto 15px auto;
  border-radius: 2px;
}

.commitment-subtitle {
  font-size: 1.1rem;
  color: #f1f1f1;
}

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

.commitment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.commitment-icon-wrap {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #FFD70033; /* Gold with opacity */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.commitment-icon {
  font-size: 1.5rem;
  color: #d4af37;
}

.commitment-text strong {
  color: #d4af37;
  display: block;
  margin-bottom: 5px;
}

.commitment-box {
  background: #1e293b; /* Example background, adjust as needed */
  color: #fff;
  padding: 30px;
  height: 100%; /* Or a fixed height like 400px */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical centering */
  align-items: center;     /* Horizontal centering */
  text-align: center;      /* Ensure text is centered */
  border-radius: 12px;     /* Optional rounded corners */
}


.commitment-box-title {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 15px;
}
 
.commitment-box-text {
  font-size: 1rem;
  color: #f1f1f1;
  margin-bottom: 10px;
}


.commitment-box-text strong.drona-highlight {
  color: #FFEC8B; /* Light gold color */
  font-weight: 700;
  position: relative;
  animation: dronaGlow 1.5s infinite alternate;
}

/* Subtle glow animation */
@keyframes dronaGlow {
  0% {
    text-shadow: 0 0 3px #d4af37, 0 0 6px #d4af37, 0 0 10px #d4af37;
  }
  100% {
    text-shadow: 0 0 6px #d4af37, 0 0 12px #d4af37, 0 0 18px #d4af37;
  }
}











.read-more-btn,
.read-less-btn {
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s ease;
}

.read-more-btn:hover,
.read-less-btn:hover {
  color: #0056b3;
}




  .counter-detail {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
  }






  