/* Declare the primary colors variables */
:root {
  --primary-color: #fef9ef;
  --secondary-color: #fe6d73;
  --tertiary-color: #ffcb77;
  --quaternary-color: #17c3b2;
  --quinary-color: #227c9d;
  --accent-color: #002bff;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  /* 
    --primary-color: #2c3e50;
            --secondary-color: #e91e63;
            --accent-color: #3498db;
            --light-color: #f8f9fa;
            --dark-color: #343a40; */
}

.top-bar {
  background-color: #1b203f;
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 0;
}

.top-bar i {
  margin-right: 5px;
}

.nav-link {
  color: #000 !important;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--quinary-color) !important;
}

.contact-info {
  font-size: 0.85rem;
  text-align: right;
}

.quote-btn {
  background-color: #4d4dff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
}

.quote-btn:hover {
  background-color: #3737cc;
}
.top-bar a{
  text-decoration: none;
  color:#fff;
 }
.brand-logo {
  font-size: 1.4rem;
  font-weight: bold;
}

.logo-icon {
  height: 40px;
  margin-right: 8px;
}

.bi-headset {
  font-size: 2rem !important;
  font-weight: 900 !important;
}
.navbar-nav .nav-item .nav-link {
  font-size: 14px !important;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding-bottom: 0.2rem;
  color: #000;
  font-weight: 500;
}

/* .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #4A56A6;
  border-radius: 2px;
} */

.book-consultation {
  padding: 0.4em 1.5em;
  border: none;
  outline: none;
  color: #000;
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.book-consultation:before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-book-consultation 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-book-consultation {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

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

.book-consultation:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  border-radius: 10px;
}

/* ===================
Hero section 
======================*/
.hero-section {
  position: relative;
  /* background-color: #fff; */
  /* padding: 60px 0; */
  height: 70vh;


}

.hero-section .hero-slider {
  background-image: url('../resources/slider-h1-bg-1.jpg');
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  min-height: 80vh;

}

.hero-section .hero-slider .container {
  position: relative;
  /* z-index: 2; */
}

.subtitle {
  color: #4a56a6;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 40px;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  color: #0b0e25;
}

.description {
  color: #6c757d;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #4a56a6;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #3a4476;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 700px;
  /* position: absolute; */
  /* right: 0;
  top: 80%;
  transform: translateY(-50%);
  object-fit: contain; */
  /* background-image: url('../resources/slider-h1-shape-1.png'); */
}

.hero-image-2 img {
  width: 100%;
  height: auto;
  max-width: 700px;
  /* position: absolute;  */
  /* right: 0;
  top: 80%;
  transform: translateY(-50%);
  object-fit: contain;  */
}

.service-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  background-image: url('../resources/world.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;


}

.service-boxes {
  z-index: 100;
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;

}

.service-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--tertiary-color);
}

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

.service-box i {
  font-size: 2rem;
  color: var(--tertiary-color);
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
}

.about-list i {
  color: var(--tertiary-color);
  margin-right: 10px;
}

.stat-box {
  height: 200px;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

.stat-blue {
  background-color: var(--tertiary-color);
}

.stat-pink {
  background-color: var(--secondary-color);
}

.btn-custom {
  background-color: var(--quinary-color);
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
}

.btn-custom:hover {
  background-color: var(--tertiary-color);
  color: #fff;
}

.service-card {
  height: 400px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
  max-width: 400px;
  margin: 20px auto;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;

}

.service-title .icon-title {
  color: #4a56a6;
  font-size: 2rem !important;
  margin-left: 45px !important;
  /* display: none; */
}

.service-title-text {
  display: inline-block;
  margin-left: 45px !important;

}

.service-card img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 1rem;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  transition: bottom 0.4s ease;
}

.navbar {
  /* box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2) !important; */
  /* border: 1px solid #002bff; */
}



.services-banner-background {
  background: linear-gradient(to right, #1d2671, #c33764);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 400px;
  width: 100%;
}

.service-card:hover .service-overlay {
  bottom: 0;
}

.section-container {
  background: #fff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* position: absolute; */
  /* top: 50%; */
  /* left: 0%; */
  width: 100%;
  z-index: 100;
  transform: translate(0%, -30%);

}

.section-container .progress {
  background-color: #4a60f6;
  font-weight: bold;
  text-align: right;
  padding-right: 10px;
  color: #fff;
  line-height: 20px;
}

.section-container .progress-bar {
  background-color: #5c6bc0;
}

.section-container .image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 12px;
}

.section-container .title {
  font-size: 2rem;
  font-weight: bold;
}

.section-container .subtitle {
  font-size: 1rem;
  color: #777;
}

.section-container .label-progress {
  font-weight: 500;
}

.section-container .content {
  padding: 2rem;
}

.section-container .info-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.explore-recent-projects {
  background: #ecf2f8;
  background-image: url('../resources/slider-h1-bg-1.jpg');
  background-repeat: no-repeat;
  /* background-position: center top; */
  background-size: contain;
  /* display: none; */
}

.recent-projects-section .col-sm-6 {
  max-width: 640px;
  width: 100%;
  height: 400px;
  /* width: 600px; */

}


.project-item {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 640px !important;
  min-width: 640px;
  height: 400px;
  min-height: 400px;
  box-shadow: 0 12px 24px rgba(78, 76, 76, 0.1);

}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(78, 76, 76, 0.1);
}

.project-item img {
  min-width: 640px;
  min-height: 400px;
  height: 400px;
  width: 640px;
  object-fit: cover;


}

.project-ite5m.shadow-sm {
  /* background-color: var(--quinary-color); */
  /* color: #fff; */
}

.more-about-us {
  background-image: url('../resources/h2-bg67.jpg') !important;
  background-size: contain;
  background-color: transparent !important;
  color: #fff !important;
  /* background-repeat: no-repeat; */
  height: 350px;
  width: 100%;
  /* background-color: #002bff; */

}


.footer {
  background-color: #f9f9f9;
  color: #333;
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.cta-box {
  flex: 1;
  padding: 40px;
  color: white;
}

.cta-left {
  background-color: #c60084;
}

.cta-right {
  background-color: #172983;
}

.cta-box h2 {
  margin-bottom: 10px;
}

.cta-box p {
  margin-bottom: 15px;
}

.cta-box a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
}



.call-support {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.call-support .col-img {
  background-image: url("../resources/logosquare.png");
  background-position: center;
  background-size: contain;
  height: 150px;
  min-width: 220px;
  background-repeat: no-repeat;

}

.call-support .call-support-add {
  flex: 1;
  min-width: 220px;
  padding: 10px 20px;
}

.call-support h3 {
  margin: 5px 0;
  font-size: 16px;
}

.actual-footer {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #555;
  font-size: 14px;
}
footer a {
  text-decoration: none !important;
  color: #000;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  padding: 20px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #222;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.contact-card .form-control {
  background-color: #f8f9fa;
  border-radius: 10px;
}

.contact-card .btn {
  background-color: #5864e5;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
}

.contact-card .btn:hover {
  background-color: #4752cc;
}


.footer-column input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.copyright {
  text-align: center;
  font-size: 13px;
  padding: 20px;
  background-color: #f0f0f0;
}

@media (max-width: 768px) {

  .cta-section,
  .call-support,
  .actual-footer {
    flex-direction: column;
    align-items: center;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4a56a6;
  color: white;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: #3a4476;
}


.aboutus__page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}


.aboutus__page .hero-section {
  background: url('../resources/h1-footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  color: #f8f9fa !important;
  padding: 120px 0;
  text-align: center;
  max-height: 40vh;

}

.aboutus__page .hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;

}

.aboutus__page .hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.aboutus__page .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 10px 25px;
  font-weight: 500;
}

.aboutus__page .btn-primary:hover {
  background-color: #c2185b;
  border-color: #c2185b;
}

.aboutus__page .section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.aboutus__page .section-title h2 {
  font-weight: 700;
  color: var(--accent-color) !important;
}

.aboutus__page .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.aboutus__page .about-content {
  padding: 80px 0;
}

.aboutus__page .about-img {
  border-radius: 10px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
}

.aboutus__page .about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.aboutus__page .about-img:hover img {
  transform: scale(1.05);
}

.aboutus__page .mission-vision {
  background-color: var(--light-color);
  padding: 80px 0;
}

.aboutus__page .mv-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s;
}

.aboutus__page .mv-card:hover {
  transform: translateY(-10px);
}

.aboutus__page .mv-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.aboutus__page .mv-card h3 {
  color: var(--accent-color);
  font-weight: 700;
}

.aboutus__page .team-section {
  padding: 80px 0;
}

.aboutus__page .team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.aboutus__page .team-card:hover {
  transform: translateY(-10px);
}

.aboutus__page .team-img {
  height: 250px;
  overflow: hidden;
}

.aboutus__page .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.aboutus__page .team-card:hover .aboutus__page .team-img img {
  transform: scale(1.1);
}

.aboutus__page .team-info {
  padding: 20px;
  text-align: center;
}

.aboutus__page .team-info h4 {
  color: var(--dark-color) !important;
  font-weight: 700;
  margin-bottom: 5px;
}

.aboutus__page .team-info p {
  color: var(--tertiary-color);
  font-weight: 500;
}

.aboutus__page .social-links {
  margin-top: 15px;
}

.aboutus__page .social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: var(--primary-color);
  color: var(--quaternary-color);
  border-radius: 50%;
  margin: 0 3px;
  transition: all 0.3s;
}

.aboutus__page .social-links a:hover {
  background: var(--secondary-color);
  color: white;
}

.aboutus__page .values-section {
  background: url('../resources/h2-bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 80px 0;
}

.aboutus__page .values-section h2 {
  color: #fff !important;

}

.aboutus__page .value-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.aboutus__page .value-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.aboutus__page .value-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.aboutus__page .cta-section {
  padding: 80px 0;
  /* background-color:#000; */
  background-color: var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  color: #000;
  text-align: center;
}

.aboutus__page .cta-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutus__page .cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.aboutus__page .btn-light {
  background-color: white;
  color: var(--accent-color);
  font-weight: 500;
  padding: 10px 25px;
}


@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    padding: 80px 0;
  }
}

.services_page .hero-section {
  background: url('../resources/banner.jpg') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  color: #f8f9fa !important;
  padding: 120px 0;
  text-align: center;
  max-height: 40vh;
}

.services_page .hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services_page .hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.services_page .btn-primary {
  padding: 10px 25px;
  font-weight: 500;
  background-color: var(--accent-color) !important;
}

.services_page .btn-primary:hover {
  background-color: #c2185b;
  border-color: #c2185b;
}

.services_page .section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.services_page .section-title h2 {
  font-weight: 700;
  color: var(--accent-color) !important;
}

.services_page .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services_page .service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s;
  height: 100%;
}

.services_page .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services_page .service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.services_page .service-card:hover .service-img img {
  transform: scale(1.1);
}

.services_page .service-body {
  padding: 25px;
}

.services_page .service-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.services_page .service-body h3 {
  color: var(--accent-color) !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.services_page .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.services_page .service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.services_page .service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.services_page .service-tabs {
  margin-bottom: 50px;
}

.services_page .nav-pills .nav-link {
  color: #000 !important;
  font-weight: 500;
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 50px;
}

.services_page .nav-pills .nav-link.active {
  background-color: var(--secondary-color);
  color: white !important;
}



.services_page .process-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.services_page .process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  opacity: 0.03;
  z-index: 0;
}

.services_page .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.services_page .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.services_page .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services_page .process-steps {
  position: relative;
  z-index: 1;
}

.services_page .process-step {
  position: relative;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  border-left: 4px solid var(--secondary-color);
}

.services_page .process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services_page .step-number {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.services_page .step-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.services_page .step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.services_page .step-content p {
  color: #666;
  margin-bottom: 20px;
}

.services_page .step-features {
  list-style: none;
  padding: 0;
}

.services_page .step-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.services_page .step-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.services_page .process-connector {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), rgba(233, 30, 99, 0.3));
  z-index: 0;
}

.services_page .process-connector-dots {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: radial-gradient(circle, var(--secondary-color) 2px, transparent 3px);
  background-size: 20px 6px;
  z-index: 1;
}

@media (min-width: 992px) {
  .process-step {
    margin-bottom: 0;
  }

  .process-connector,
  .process-connector-dots {
    top: 100px;
  }
}

@media (max-width: 991.98px) {

  .process-connector,
  .process-connector-dots {
    display: none;
  }

  .process-step {
    margin-bottom: 50px;
  }
}

.services_page .cta-section {
  padding: 80px 0;
  background-color: var(--accent-color);
  color: white;
  text-align: center;
}

.services_page .cta-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.services_page .cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.services_page .btn-light {
  background-color: white;
  color: var(--accent-color);
  font-weight: 500;
  padding: 10px 25px;
}



@media (max-width: 768px) {
  .services_page .hero-section h1 {
    font-size: 2.5rem;
  }

  .services_page .hero-section {
    padding: 80px 0;
  }

  .process-step {
    margin-bottom: 30px;
  }

  .process-step::after {
    display: none;
  }
}




.subsidiaries-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.subsidiaries-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.subsidiaries-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.subsidiaries-hero .btn-primary {
  background-color: var(--accent-color) !important;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.subsidiary-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.subsidiary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.subsidiary-img {
  height: 400px;
  overflow: hidden;
}

.subsidiary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.subsidiary-card:hover .subsidiary-img img {
  transform: scale(1.05);
}

.subsidiary-body {
  padding: 30px;
}

.subsidiary-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.subsidiary-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.subsidiary-body p {
  color: #666;
  margin-bottom: 20px;
}

.subsidiary-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.subsidiary-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.subsidiary-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.btn-subsidiary {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-subsidiary:hover {
  background: #c2185b;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.subsidiary-stats {
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .subsidiaries-hero {
    padding: 80px 0;
  }

  .subsidiaries-hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}


.contact-page .contact-hero {
  background: url('../resources/h1-footer-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color:#fff;
}

.contact-page .z-index-1 {
  z-index: 1;
}

.contact-page .contact-icon {
  transition: transform 0.3s ease;
}

.contact-page .card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-page .form-control-lg {
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #dee2e6;
}

.contact-page .form-control-lg:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}



.contact-page .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
}

.contact-page .invalid-feedback {
  display: none;
  color: #dc3545;
}

.contact-page .was-validated .form-control:invalid~.invalid-feedback {
  display: block;
}

.contact-page .contact-form {
  padding: 80px 0;
  /* background-color:#000; */
  background-color: var(--light-color) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* Responsive Design */
/* @media (max-width: 991px) {
  .hero-section .hero-slider {
    background-position: center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-image,
  .hero-image-2 {
    position: static;
    transform: none;
    margin-top: 30px;
    text-align: center;
  }

  .hero-image img,
  .hero-image-2 img {
    max-width: 90%;
    height: auto;
  }

  .title {
    font-size: 2.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 10px 25px;
  }
}

@media (max-width: 575px) {
  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
} */

.more-about-us {
  background-image: url("../resources/");
}