/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;

  --default-color: #444444;

  --heading-color: #37517e;

  --accent-color: #47b2e4;

  --surface-color: #ffffff;

  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;

  --nav-hover-color: #47b2e4;

  --nav-mobile-background-color: #ffffff;

  --nav-dropdown-background-color: #ffffff;

  --nav-dropdown-color: #444444;

  --nav-dropdown-hover-color: #47b2e4;
}

.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
.header {
  --background-color: #171c35;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #6f8fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 25px;
  margin: 0 0 0 0;
  border-radius: 50px;
  transition: 0.3s;
  width: 45%;
  text-align: left;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #526edf;
  background: white;
}

/*--------------------------------------------------------------
# Index Page Header
--------------------------------------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

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

.navmenu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.navmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
  text-decoration: none !important;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
}

.navmenu a:hover,
.navmenu a.active {
  color: #ffffff;
}

.btn-getstarted {
  background: #0f2a6a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .navmenu ul {
    display: flex;
    align-items: center;
  }

  .nav-cta {
    margin-left: 20px;
  }

  .mobile-nav-toggle {
    display: none;
  }
}
.navmenu .btn-getstarted::after {
  display: none !important;
}
/* ================= TABLET & MOBILE ================= */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    overflow: hidden;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 72px;
    
    width: calc(100% - 32px);
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 1001;
  }

  body.mobile-nav-active .navmenu ul {
    display: block;
  }

  .navmenu a {
    display: block;
    padding: 14px 22px;
    color: #3660c0;
    font-weight: 500;
  }
  .navmenu a::after {
    display: none;
  }
  .navmenu a.active {
    background: rgba(15, 42, 106, 0.08);
    color: #0f2a6a;
    font-weight: 600;
  }

  .navmenu a:hover {
    background: rgba(15, 42, 106, 0.05);
    color: #0f2a6a;
  }
  .navmenu li {
    width: 100%;
  }
  .nav-cta {
    padding: 10px 20px;
  }

  .btn-getstarted {
   
    text-align: center;
  }
}
/* ================= TABLET & MOBILE ================= */
@media (max-width: 991px) {

  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }

  /* MOBILE MENU PANEL */
  .navmenu ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0px;              
    right: 12px;             
    width: auto;             
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 1001;
  }

  body.mobile-nav-active .navmenu ul {
    display: block;
  }

  /* MENU LINKS */
  .navmenu a {
    display: block;
    padding: 14px 22px;
    color: #3660c0;
    font-weight: 500;
    text-align: left;
  }

  .navmenu a::after {
    display: none;
  }

  .navmenu a.active {
    background: rgba(15, 42, 106, 0.08);
    color: #0f2a6a;
    font-weight: 600;
  }

  .navmenu a:hover {
    background: rgba(15, 42, 106, 0.05);
    color: #0f2a6a;
  }

  .navmenu li {
    width: 100%;
  }

  /* CTA AREA */
  .nav-cta {
    padding: 10px 22px;
  }

  /* 🔥 BUTTON FIX (NOT FULL WIDTH) */
  .btn-getstarted {
    width: auto;            /* KEY FIX */
    min-width: 160px;
    text-align: center;
    display: inline-block;
  }
}

/*Global Footer*/
.footer {
  background-color: #f8f9fa;
  color: #333;
  font-size: 14px;
  padding-bottom: 30px;
}

.footer a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}
.footer a:hover {
  color: #4e89ff;
}

.footer .footer-top {
  padding-top: 40px;
}
.footer h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #171c35;
}

.footer-logo-img {
  max-height: 55px;
}

.footer-about-text {
  line-height: 1.6;
  color: #555;
}

.footer .footer-links ul {
  padding: 0;
  list-style: none;
}
.footer .footer-links ul li {
  padding: 5px 0;
}
.footer .footer-links ul li a {
  color: #555;
  font-size: 14px;
}
.footer-contact-box h4 {
  margin-bottom: 15px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-contact p i {
  font-size: 18px;
  color: #4e89ff;
  margin-right: 10px;
}
.footer-contact a {
  color: #555 !important;
  font-size: 14px;
  display: inline-block;
  line-height: 1.4;
}

.footer .social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}
.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: #555;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: #4e89ff;
  color: #fff;
}
.footer-links ul li a,
.footer-contact a {
  position: relative;
  transition: 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
  color: #4e89ff !important;
  padding-left: 5px;
}

.footer .copyright {
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.footer .copyright p {
  margin-bottom: 0;
  font-size: 15px;
  color: #444;
}
@media (max-width: 768px) {
  .footer-links,
  .footer-contact-box {
    margin-top: 20px;
  }
  .footer .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1193px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer h4 {
    font-size: 20px;
  }

  .footer .footer-links ul li {
    font-size: 14px;
  }

  .footer .footer-contact p {
    font-size: 15px;
  }

  .footer .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-right: 8px;
  }
  .footer .sitename {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer h4 {
    font-size: 18px;
  }

  .footer .footer-links ul li {
    font-size: 15px;
  }

  .footer .footer-contact p {
    font-size: 15px;
  }

  .footer .social-links a {
    width: 33px;
    height: 33px;
    font-size: 12px;
  }

  .footer .sitename {
    font-size: 12px !important;
  }

  .footer-contact a {
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-bottom: 10px !important;
  }

  .footer .footer-top {
    flex-direction: column;
  }

  .footer h4 {
    font-size: 16px;
  }

  .footer .footer-links ul li {
    font-size: 14px;
  }

  .footer .footer-contact p {
    font-size: 14px;
  }

  .footer .social-links a {
    width: 30px;
    height: 30px;
    font-size: 13px;
    margin-right: 6px;
  }

  .footer .copyright p {
    font-size: 14px;
  }

  .footer-contact a {
    font-size: 13px !important;
  }
}
@media (max-width: 768px) {
  .footer .row {
    row-gap: 0 !important;
  }
}
@media (max-width: 768px) {
  .footer-links,
  .footer-contact-box,
  .footer-about {
    margin-top: 5px !important;
    padding-top: 0 !important;
  }
}

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

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

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

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

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.about-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.about-section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.about-section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .about-section-title h2 {
    font-size: 26px;
  }
}
/* HERO SECTION */
.hero {
  width: 100%;
  min-height: 90vh;
  background: #171c35;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  flex-direction: column;
  /* Center content for smaller screens */
  text-align: start;
}

/* TITLE */
.hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

/* SUBTEXT */
.hero p {
  color: #b5c4ff;
  margin: 15px 0 35px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 700px;
}

/* MAIN CTA BUTTON */
.hero .btn-get-started {
  background: #6f8fff;
  color: #171c35;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  transition: 0.3s ease;
  letter-spacing: 1px;
}

.hero .btn-get-started:hover {
  background: #6f8fff;
  color: #171c35;
}

/* WATCH VIDEO BUTTON */
.hero .btn-watch-video {
  font-size: 16px;
  margin-left: 25px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero .btn-watch-video i {
  color: #6f8fff;
  font-size: 32px;
  margin-right: 10px;
  transition: 0.3s ease;
}

.hero .btn-watch-video:hover {
  color: #6f8fff;
}

.hero .btn-watch-video:hover i {
  color: #88a0ff;
}

/* ANIMATED IMAGE */
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* FLOAT ANIMATION */
@keyframes up-down {
  0% {
    transform: translateY(12px);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE STYLES */

/* <= 1193px */
@media (max-width: 1193px) {
  .hero h1 {
    font-size: 50px;
    text-align: start;
  }

  .hero p {
    font-size: 20px;
    max-width: 600px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 11px 28px;
  }

  .hero .btn-watch-video {
    font-size: 15px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 50px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 46px;
  }

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

  .hero .btn-get-started {
    font-size: 13px;
    padding: 10px 24px;
    margin-bottom: 15px;
  }

  .hero .btn-watch-video {
    font-size: 14px;
    margin-left: 0;
    display: block;
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 16px;
    line-height: 22px;
  }

  .hero .btn-get-started {
    font-size: 12px;
    padding: 8px 20px;
  }

  .hero .btn-watch-video {
    font-size: 13px;
    margin-left: 0;
  }
}

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

/* ABOUT SECTION */
.about {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.section-title h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: #37517e;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-left,
.about-right {
  flex: 1 1 45%;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #171c35;
  text-align: left;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.about-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-card {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  color: #555;
}

.about-card:hover {
  background: linear-gradient(
    135deg,
    rgba(69, 132, 255, 0.2),
    rgba(69, 132, 255, 0.6)
  );
  color: #171c35;
  transform: translateY(-5px);
}

.about-card:hover .card-icon {
  color: #171c35;
}

.card-icon {
  font-size: 40px;
  color: #4584ff;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  transition: color 0.4s ease;
}

.about-card p {
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.4s ease;
}

.about-right {
  position: relative;
}

.about-image {
  position: relative;
  width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.shape-1 {
  width: 60px;
  height: 60px;
  background: #4584ff;
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 40px;
  height: 40px;
  background: #ff5845;
  bottom: 15%;
  right: 10%;
}

.shape-3 {
  width: 30px;
  height: 30px;
  background: #45ff84;
  top: 50%;
  right: 20%;
}

/* =======================
   Responsive Styles
======================= */

/* <= 1193px */
@media (max-width: 1193px) {
  .about-grid {
    gap: 30px;
  }

  .about-left,
  .about-right {
    flex: 1 1 48%;
  }

  .about-cards {
    gap: 15px;
  }

  .about-card {
    flex: 1 1 48%;
    padding: 22px 18px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .about-content h3 {
    font-size: 36px;
    text-align: center;
  }

  .about-content p,
  .about-card p {
    font-size: 16px;
  }

  .card-icon {
    font-size: 38px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    gap: 25px;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .about-cards {
    flex-direction: column;
  }

  .about-card {
    flex: 1 1 100%;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .about-content p,
  .about-card p {
    font-size: 14px;
  }

  .card-icon {
    font-size: 36px;
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .section-title h2 {
    font-size: 26px;
  }

  .about-content h3 {
    font-size: 20px !important;
  }

  .about-content p,
  .about-card p {
    font-size: 14px !important;
    text-align: center !important;
    line-height: 1.5;
  }

  .about-card {
    padding: 18px 15px;
  }

  .card-icon {
    font-size: 32px;
  }

  .shape-1 {
    width: 40px;
    height: 40px;
  }

  .shape-2 {
    width: 25px;
    height: 25px;
  }

  .shape-3 {
    width: 20px;
    height: 20px;
  }
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 60px 0;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 36px;
  text-align: center !important;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.why-us .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.why-us .content h3 {
  font-size: 36px;
  font-weight: 700;
}

/* ---------- Max-width: 1193px ---------- */
@media (max-width: 1193px) {
  .why-us .content h3 {
    font-size: 36px;
    font-weight: 700;
  }

  .why-us .faq-container .faq-item h3 {
    font-size: 19px;
  }

  .why-us .why-us-img img {
    max-width: 90%;
  }
}

/* ---------- Max-width: 768px (Tablet) ---------- */
@media (max-width: 768px) {
  .why-us {
    padding: 20px 0;
  }

  .why-us .content h2 {
    font-size: 28px;
    text-align: center !important;
  }

  .why-us .content p {
    text-align: center;
    font-size: 15px;
  }

  .why-us .faq-container .faq-item {
    padding: 15px;
  }

  .why-us .faq-container .faq-item h3 {
    font-size: 18px;
    margin-right: 25px;
  }

  .why-us .faq-container .faq-item .faq-icon {
    top: 18px;
    left: 15px;
    font-size: 20px;
  }

  .why-us .faq-container .faq-item .faq-toggle {
    top: 18px;
    right: 15px;
    font-size: 14px;
  }

  .why-us .why-us-img img {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .why-us {
    padding: 45px 0;
  }

  .why-us .faq-container {
    padding: 0;
  }

  .why-us .faq-container .faq-item {
    padding: 16px;
  }

  .why-us .faq-container .faq-item h3 {
    font-size: 18px;
  }

  .why-us .why-us-img img {
    max-width: 360px;
    margin-bottom: 25px;
  }
}

/* ---------- Max-width: 480px (Mobile) ---------- */
@media (max-width: 480px) {
  .why-us {
    padding: 15px 0;
  }

  .why-us .content h2 {
    font-size: 26px;
    text-align: center;
  }

  .why-us .faq-container .faq-item {
    padding: 14px;
  }

  .why-us .faq-container .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .why-us .faq-container .faq-item .faq-icon {
    font-size: 18px;
    top: 16px;
  }

  .why-us .faq-container .faq-item .faq-toggle {
    top: 16px;
    right: 14px;
    font-size: 16px;
  }

  .why-us .why-us-img img {
    max-width: 280px;
    margin-bottom: 0px;
  }

  .why-us .content p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  background-color: #6f8fff30;
}

.services h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #37517e;
}

.services .service-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  color: #555;
}
.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  transform: scale(0);
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.services .service-item:hover::before {
  transform: scale(1);
  background: linear-gradient(
    135deg,
    rgba(69, 132, 255, 0.2),
    rgba(69, 132, 255, 0.6)
  );
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 42px;
  transition: 0.4s ease;
}

.services .service-item:hover .icon i {
  transform: scale(1.15);
  color: #171c35;
  filter: drop-shadow(0 0 10px rgba(69, 132, 255, 0.6));
}

.services .service-item h4 {
  font-weight: 700;
  margin: 15px 0;
  font-size: 22px;
  transition: 0.3s ease;
}

.services .service-item h4 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.services .service-item p {
  line-height: 26px;
  font-size: 16px;
  opacity: 0.85;
  transition: 0.3s ease;
}
.services .service-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #4584ff;
  color: #171c35;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: #171c35;
}

/* =======================
   RESPONSIVENESS
======================= */

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

  .services .service-item {
    padding: 38px 28px;
  }

  .services .service-item .icon i {
    font-size: 40px;
  }

  .services .service-item h4 {
    font-size: 21px;
  }

  .services .service-item p {
    font-size: 16px;
  }

  .services h2 {
    font-size: 36px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .service-item {
    padding: 32px 22px;
  }

  .services .service-item .icon i {
    font-size: 34px;
  }

  .services .service-item h4 {
    font-size: 19px;
  }

  .services .service-item p {
    font-size: 14px;
  }

  .services h2 {
    font-size: 26px;
  }

  /* Reduce hover lift on small screens */
  .services .service-item:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .services {
    padding: 50px 0;
  }

  .services h2 {
    font-size: 26px;
  }

  .services .service-item {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .services .service-item .icon i {
    font-size: 30px;
  }

  .services .service-item h4 {
    font-size: 18px;
  }

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

  .services .service-item:hover {
    transform: translateY(-4px) scale(1);
  }
}

/*--------------------------------------------------------------
# Use Case / Team Section - LIGHT THEME*/
.team {
  padding: 40px 0;
  background-color: #6f8fff30 !important;
  position: relative;
  z-index: 1;
}

/* SECTION TITLE */
.team .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #37517e;
  margin-bottom: 15px;
}

.team .section-title p {
  font-size: 16px;
  color: #555;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}

/* USE CASE CARDS */
.use-case {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 25px 20px;
}

/* Hover effect */
.use-case:hover {
  transform: translateY(-10px) scale(1.02);
  background: #e6f0ff;
  border-color: #b3d1ff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ICONS */
.use-case .icon {
  font-size: 20px !important;
  color: #4e89ff;
  flex-shrink: 0;
  transition: transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #e6f0ff33;
  border-radius: 50%;
  cursor: pointer;
}

.use-case:hover .icon,
.use-case:active .icon {
  transform: scale(1.2);
  background: #4e89ff33;
  color: #1a3d7c;
}

/* CASE INFO */
.use-case .case-info {
  margin-left: 15px;
  flex: 1;
}

.use-case .case-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #37517e;
  transition: color 0.3s ease;
}

.use-case:hover .case-info h4 {
  color: #004080;
}

.use-case .case-info p {
  font-size: 16px;
  color: #555;
  line-height: 24px;
  margin: 0;
  transition: color 0.3s ease;
}

.use-case:hover .case-info p {
  color: #333;
}

/* GAP BETWEEN ROWS */
.row.gy-4 {
  gap: 30px 0;
}

/* ===========================
   RESPONSIVE STYLES
=========================== */

/* <= 1193px */
@media (max-width: 1193px) {
  .team .section-title h2 {
    font-size: 36px;
  }

  .team .section-title p {
    font-size: 16px;
  }

  .use-case {
    padding: 22px 18px;
  }

  .use-case .icon {
    width: 55px;
    height: 55px;
    font-size: 32px;
  }

  .use-case .case-info h4 {
    font-size: 21px;
  }

  .use-case .case-info p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .team .section-title h2 {
    font-size: 30px;
  }

  .team .section-title p {
    font-size: 16px;
  }

  .use-case {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px 15px;
  }

  .use-case .icon {
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .use-case .case-info h4 {
    font-size: 18px;
  }

  .use-case .case-info p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .team {
    text-align: center !important ;
  }
  .team .section-title h2 {
    font-size: 26px !important;
  }

  .team .section-title p {
    font-size: 16px;
  }

  .use-case {
    flex-direction: column !important;
    text-align: center !important;
    padding: 18px 12px;
  }
  .use-case .case-info {
    text-align: center !important;
  }

  .use-case .icon {
    margin-bottom: 12px;
    width: 45px;
    height: 45px;
    font-size: 26px;
  }

  .use-case .case-info h4 {
    font-size: 16px;
  }

  .use-case .case-info p {
    font-size: 16px;
    line-height: 22px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding: 80px 0;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}

/* SECTION TITLE */
.team .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #37517e;
  margin-bottom: 15px;
}

.team .section-title p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* USE CASE CARDS */
.use-case {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 25px;
}

.use-case:hover {
  transform: translateY(-10px) scale(1.02);
  background: #e6f0ff;
  border-color: #b3d1ff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ICON */
.use-case .icon {
  font-size: 36px;
  color: #4e89ff;
  flex-shrink: 0;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #e6f0ff33;
  border-radius: 50%;
}

.use-case:hover .icon {
  transform: scale(1.2);
  background: #4e89ff33;
  color: #1a3d7c;
}

/* CASE INFO */
.use-case .case-info {
  margin-left: 15px;
  flex: 1;
}

.use-case .case-info h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #37517e;
  transition: 0.3s;
}

.use-case:hover .case-info h4 {
  color: #004080;
}

.use-case .case-info p {
  font-size: 16px;
  color: #555;
  margin: 0;
  transition: 0.3s;
}

.use-case:hover .case-info p {
  color: #333;
}

/* GAP */
.row.gy-4 {
  gap: 30px 0;
}

/* -------------------------------------------------------------
   📱 RESPONSIVE BREAKPOINTS
--------------------------------------------------------------*/

/* ========== MAX WIDTH 1193px ========== */
@media (max-width: 1193px) {
  .use-case {
    padding: 20px;
  }

  .use-case .case-info h4 {
    font-size: 19px;
  }

  .use-case .case-info p {
    font-size: 15px;
  }
}

/* ========== TABLET: MAX WIDTH 768px ========== */
@media (max-width: 768px) {
  .use-case {
    flex-direction: row;
    text-align: left;
  }

  .use-case .icon {
    width: 45px;
    height: 45px;
    font-size: 30px;
  }

  .use-case .case-info h4 {
    font-size: 18px;
  }

  .use-case .case-info p {
    font-size: 15px;
  }
  .use-case .case-info {
    margin: 0 auto 15px auto !important;
  }
}
/* ========== MOBILE: MAX WIDTH 480px ========== */
@media (max-width: 480px) {
  .use-case {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  .use-case .icon {
    width: 55px;
    height: 55px;
    font-size: 30px;

    /* TRUE CENTERING */
    margin: 0 auto 15px auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .use-case .case-info {
    margin: 0 auto 15px auto !important;
  }

  .use-case .case-info h4 {
    font-size: 18px;
    text-align: center !important;
  }

  .use-case .case-info p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  color: #171c35;
  font-family: "Poppins", sans-serif;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonials-swiper {
  padding: 50px 10px !important;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff, #dbe2f3);
  border-radius: 25px;

  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(
    135deg,
    rgba(69, 132, 255, 0.2),
    rgba(69, 132, 255, 0.6)
  );
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.15); */
}

/* ----------------- Image ----------------- */
.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #4e89ff;
  object-fit: cover;
  margin: 0 auto 15px;
}

/* ----------------- Name & Title ----------------- */
.testimonial-card h3 {
  margin: 10px 0 5px;
  color: #171c35;
  font-weight: 600;
  font-size: 28px;
}

.testimonial-card h4 {
  margin-bottom: 15px;
  color: #555;
  font-size: 21px;
  font-weight: 500;
}

/* ----------------- Stars ----------------- */
.stars i {
  color: #ffc107;
  margin: 0 1px;
}

/* ----------------- Testimonial Text ----------------- */
.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;

  overflow-wrap: break-word;
  word-break: break-word;
}

/* ----------------- Swiper Navigation ----------------- */
.swiper-button-next,
.swiper-button-prev {
  color: #352217;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(23, 28, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(23, 28, 53, 0.2);
}

/* ----------------- Swiper Pagination ----------------- */
.swiper-pagination-bullet {
  background-color: #ccc;

  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4e89ff;
}

/* ----------------- Responsive Adjustments ----------------- */
@media (max-width: 991px) {
  .testimonial-card {
    min-height: 380px;
    padding: 25px 18px;
  }
}

@media (max-width: 575px) {
  .testimonial-card {
    min-height: unset;
    padding: 22px 16px;
  }

  .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .testimonial-card h3 {
    font-size: 20px;
  }

  .testimonial-card h4 {
    font-size: 16px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# FAQ 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  line-height: 1.6;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  margin-left: 30px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/

/* <= 1193px */
@media (max-width: 1193px) {
  .faq-2 .faq-container .faq-item h3 {
    font-size: 18px;
    margin: 0 25px 0 28px;
  }

  .faq-2 .faq-container .faq-item .faq-content p {
    font-size: 16px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .faq-2 .faq-container .faq-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .faq-2 .faq-container .faq-item h3 {
    font-size: 16px;
    margin: 0 20px 0 25px;
  }

  .faq-2 .faq-container .faq-item .faq-icon {
    font-size: 18px;
    top: 18px;
    left: 15px;
  }

  .faq-2 .faq-container .faq-item .faq-toggle {
    font-size: 14px;
    top: 18px;
    right: 15px;
  }

  .faq-2 .faq-container .faq-item .faq-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .faq-2 .faq-container .faq-item {
    padding: 12px;
    margin-bottom: 12px;
  }

  .faq-2 .faq-container .faq-item h3 {
    font-size: 17px;
    /* h2 equivalent for small devices */
    margin: 0 15px 0 20px;
    line-height: 20px;
  }

  .faq-2 .faq-container .faq-item .faq-icon {
    font-size: 16px;
    top: 15px;
    left: 12px;
  }

  .faq-2 .faq-container .faq-item .faq-toggle {
    font-size: 12px;
    top: 15px;
    right: 12px;
  }

  .faq-2 .faq-container .faq-item .faq-content p {
    font-size: 16px;
    /* small device paragraph size */
    line-height: 22px;
  }
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
.subscribe .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .subscribe .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .subscribe .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.subscribe .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subscribe .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.subscribe .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.subscribe .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.subscribe .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .subscribe .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .subscribe .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .subscribe .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
/* Info Boxes */
/* ============================
   CONTACT SECTION - MAIN BOXES
============================ */
.contact .info-wrap {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(209, 9, 9, 0.08);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

/* ============================
   ICONS (New Color)
============================ */
.contact .info-item i {
  font-size: 22px;
  color: #f58c3a;
  /* New icon color */
  background: rgba(245, 140, 58, 0.15);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item:hover i {
  background: #f58c3a;
  color: #fff;
}

/* ============================
   TEXT (New Color)
============================ */
.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e4098;
}

.contact .info-item p,
.contact .info-item a {
  font-size: 14px;
  margin-bottom: 0;
  text-decoration: none;
  color: #1e4098 !important;
  /* New Text Color */
  transition: 0.3s ease;
}

.contact .info-item a:hover {
  color: #ffffff !important;
}

/* ============================
   CONTACT FORM
============================ */
.contact .php-email-form {
  background-color: #ffffff;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background-color: rgba(2, 45, 132, 0.05);
  outline: none;
  transition: 0.3s;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: rgba(78, 137, 255, 0.1);
  box-shadow: 0 0 0 2px #4e89ff;
}

.contact .php-email-form button[type="submit"] {
  color: #fff;
  background: #4e89ff;
  border: none;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffffff;
  color: #3660c0;
  border: 1px solid #3660c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #171c35;
  margin-bottom: 15px;
}

.contact-intro {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-points li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

.contact-points li i {
  color: #4e89ff;
  font-size: 18px;
  margin-right: 8px;
}

.contact-subtext {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* ============================
   RESPONSIVE
============================ */

/* Max-width 1193px */
@media (max-width: 1193px) {
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 20px;
  }

  .contact .info-item h3 {
    font-size: 17px;
  }

  .contact .info-item p,
  .contact .info-item a {
    font-size: 14px;
  }
}

/* Max-width 768px */
@media (max-width: 768px) {
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 18px;
  }

  .contact .info-item {
    margin-bottom: 18px;
  }

  .contact .info-item i {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .contact .info-item h3 {
    font-size: 20px;
  }
  .contact .info-item h2 {
    font-size: 30px;
  }

  .contact .info-item p,
  .contact .info-item a {
    font-size: 14px;
  }
}

/* Max-width 480px */
@media (max-width: 480px) {
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 15px !important;
  }

  .contact .info-item {
    flex-direction: row;
    margin-bottom: 15px;
  }

  .contact .info-item i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .contact .info-item h3 {
    font-size: 15px;
  }

  .contact .info-item p,
  .contact .info-item a {
    font-size: 13px;
  }

  .contact .php-email-form button[type="submit"] {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid
    color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

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

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

.service-details .services-img {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

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

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

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

.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(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/

/* Medium screens - Tablets */
@media (max-width: 991px) {
  .service-details .services-list {
    padding: 10px 20px;
  }

  .service-details .services-list a {
    padding-left: 12px;
    margin: 15px 0;
  }

  .service-details h3 {
    font-size: 22px;
  }

  .service-details h4 {
    font-size: 18px;
  }

  .service-details p,
  .service-details ul {
    font-size: 14px;
  }

  .service-details ul i {
    font-size: 18px;
    margin-right: 6px;
  }
}

/* Small screens - Mobile */
@media (max-width: 575px) {
  .service-details .services-list {
    padding: 8px 15px;
  }

  .service-details .services-list a {
    padding-left: 10px;
    margin: 12px 0;
  }

  .service-details h3 {
    font-size: 20px;
  }

  .service-details h4 {
    font-size: 16px;
  }

  .service-details p,
  .service-details ul {
    font-size: 13px;
  }

  .service-details ul li {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-details ul i {
    font-size: 16px;
    margin-right: 5px;
  }

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

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

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

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

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# HEADER STYLING
--------------------------------------------------------------*/
.main-header {
  background: #171c35;
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Shadow on scroll */
.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Logo */
.logo img {
  height: 50px;
  transition: 0.3s;
}

/* WORK PROCESS SECTION */
.work-process {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  z-index: 1;
}

/* Floating cubes background */
.work-process .cube {
  position: absolute;
  background: rgba(78, 137, 255, 0.3);
  box-shadow: 0 0 10px rgba(78, 137, 255, 0.5);
  animation: floatCubes linear infinite;
  z-index: 0;
}

/* Cube positioning */
.work-process .cube:nth-child(1) {
  width: 15px;
  height: 15px;
  animation-duration: 20s;
  top: 10%;
  left: 20%;
}

.work-process .cube:nth-child(2) {
  width: 25px;
  height: 25px;
  animation-duration: 25s;
  top: 50%;
  left: 70%;
}

.work-process .cube:nth-child(3) {
  width: 18px;
  height: 18px;
  animation-duration: 22s;
  top: 80%;
  left: 40%;
}

.work-process .cube:nth-child(4) {
  width: 12px;
  height: 12px;
  animation-duration: 18s;
  top: 30%;
  left: 80%;
}
.work-process .section-title {
  margin-bottom: 60px; /* space between title & cards */
}

/* Cube floating animation */
@keyframes floatCubes {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  25% {
    transform: translateY(20px) rotate(45deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.4;
  }

  75% {
    transform: translateY(20px) rotate(135deg);
    opacity: 0.7;
  }

  100% {
    transform: translateY(0) rotate(180deg);
    opacity: 0.5;
  }
}

/* Step Item */
.work-process .steps-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  height: 100%;
  transition: 0.4s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 40px 25px 30px;
  z-index: 1;
}

/* Hover effect */
.work-process .steps-item:hover {
  transform: translateY(-12px) scale(1.02);
  background: #f5f7fa;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Number Circle */
.work-process .steps-number {
  position: absolute;
  left: 30px;
  top: -40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4e89ff, #00d4ff);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.work-process .steps-item:hover .steps-number {
  box-shadow: 0 0 15px #4e89ff;
}

/* Title & Text */
.work-process .steps-content h3 {
  font-size: 18px;
  font-weight: 900;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #fff;
  transition: 0.3s;
}

.work-process .steps-item:hover h3 {
  color: #37517e;
}

.work-process .steps-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 26px;
  transition: 0.3s;
}

.work-process .steps-item:hover p {
  color: #333;
}

/* =======================
   RESPONSIVE STYLES
======================= */

/* <= 1193px */
@media (max-width: 1193px) {
  .work-process {
    padding: 50px 0;
  }

  .work-process .steps-item {
    padding: 38px 25px 28px;
  }

  .work-process .steps-number {
    width: 55px;
    height: 55px;
    font-size: 22px;
    left: 25px;
    top: -28px;
  }

  .work-process .steps-content h3 {
    font-size: 22px;
  }

  .work-process .steps-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .work-process .cube {
    width: 14px;
    height: 14px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .work-process {
    padding: 50px 0;
  }

  .work-process .steps-item {
    padding: 35px 20px 25px;
  }

  .work-process .steps-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    left: 18px;
    top: -22px;
  }

  .work-process .steps-content h3 {
    font-size: 18px;
  }

  .work-process .steps-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .work-process .cube {
    width: 10px;
    height: 10px;
    opacity: 0.35;
  }
}

/* <= 480px */
@media (max-width: 480px) {
  .work-process {
    padding: 10px 0;
  }

  .work-process .steps-item {
    padding: 30px 18px 22px;
  }

  .work-process .steps-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    left: 15px;
    top: -20px;
  }

  .work-process .steps-content h3 {
    font-size: 32px;
    /* Mobile h3 size */
  }

  .work-process .steps-content p {
    font-size: 16px;
    /* Mobile p size */
    line-height: 22px;
  }

  .work-process .cube {
    width: 8px;
    height: 8px;
    opacity: 0.25;
  }
}

/* Optional: Ultra small devices (360px) */
@media (max-width: 360px) {
  .work-process {
    padding: 30px 0;
  }

  .work-process .steps-item {
    padding: 25px 15px 18px;
  }

  .work-process .steps-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
    top: -18px;
  }

  .work-process .steps-content h3 {
    font-size: 30px;
  }

  .work-process .steps-content p {
    font-size: 16px;
    line-height: 22px;
  }
}

.faq-2 section {
  background-color: #004080;
}


/* Chatbot Box */
.fixed-buttons {
    position: fixed;
    right: 15px;
    bottom: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* justify-content: space-between; */
    gap: 150px;
    z-index: 9999;
}


.dual-icon {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.chatbot {
    background: var(--primary);
}

.chatbot img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.chatbot-box {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

/* Header */
.chatbot-header {
  background: #1e4098;
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Body */
.chatbot-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f5f7ff;
}

.bot-msg,
.user-msg {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  max-width: 80%;
}

.bot-msg {
  background: #e0e7ff;
  color: #000;
}

.user-msg {
  background: #1e4098;
  color: #fff;
  margin-left: auto;
}

/* Footer */
.chatbot-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

.chatbot-footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chatbot-footer button {
  background: #1e4098;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
