/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --primary-color: #0B2D4F;
  --secondary-color: #F57C00;
  --accent: #1E88E5;
  --light-bg: #F4F6F9;
  --dark-navy: #071c33;
  --text-gray: #6c757d;
}


/* ===============================
                NAVBAR
     =============================== */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background-color: white;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgb(63, 63, 63);
}

/* Scrolled state navbar (if needed)

.navbar-custom.scrolled {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
*/

.navbar .nav-link {
  color: var(--dark-navy) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}

.brand-logo {
  height: 50px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
}

.navbar .btn {
  border-radius: 5px;
  background: var(--dark-navy);
  color: #fff;
  font-weight: 600;
}

.navbar .btn:hover {
  background: #195E96;
  color: #fff;
}


/* ===============================
   FOOTER
   =============================== */

.web-footer {
  background-color: var(--primary-color);
  color: #d6e3df;
}

.footer-logo {
  height: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand small {
  color: #b8d4c8;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfe2db;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #e6c87a;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--dark-navy);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--dark-navy);
  font-size: 14px;
  color: #b8d4c8;
}

/* ===============================
            Responsive
     =============================== */

/* Fix mobile dropdown overlap */
@media (max-width: 991px) {

  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 575px) {

  /* NAVBAR */
  .navbar-nav {
    gap: 0 !important;
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin: 10px 0 0;
  }

  .brand-logo {
    height: 40px;
  }

  /* FOOTER */
  .footer-logo {
    height: 40px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }
}


/* ===============================
        GLOBAL STYLES
        =============================== */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: var(--dark-navy);
  background: var(--light-bg);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: white;
  color: #000;
}

.btn-transprant {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-transprant:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-learnmore {
  background: transparent;
  transition: 0.3s;
  color: white;
  border: none;
}

.btn-learnmore:hover {
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.sub-heading {
  color: var(--secondary-color);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.section-padding {
  padding: 35px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.highlite {
  color: var(--secondary-color);
}

@media (max-width: 575px) {
  .highlite {
    color: inherit;
  }
}

.hyer-link {
  text-decoration: none;
  color: inherit
}

.card-ui {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: .3s;
  border: 1px solid #eee;
}

.card-ui:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

::selection {
  background: var(--secondary-color);
  color: #fff;
}

/* ===============================
   PREMIUM UI GLOBAL SYSTEM
=============================== */

/* BETTER CONTAINER WIDTH */
.container {
  max-width: 1200px;
}

/* PREMIUM SHADOW */
.shadow-soft {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER LIFT */
.hover-lift {
  transition: 0.35s;
}

.hover-lift:hover {
  transform: translateY(-12px);
}

/* PREMIUM BUTTON */
.btn-premium {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-premium:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* REVEAL FROM LEFT */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.8s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* REVEAL FROM TOP */
.reveal-top {
  opacity: 0;
  transform: translateY(-80px);
  transition: 0.8s ease;
}

.reveal-top.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all .9s cubic-bezier(.17, .67, .83, .67);
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
   INNER HERO (Reusable)
================================ */

.inner-hero {
  position: relative;
  min-height: 55vh;
  height: auto;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* text center */
  background: url('https://t4.ftcdn.net/jpg/02/68/00/63/360_F_268006331_Tlp6eCUKn9oyspuoQrtnz8Dqtd5v7aHQ.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* CENTER CONTENT PERFECT */
.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal center */
  justify-content: center;
  /* vertical center */
}

/* tag */
.inner-hero-tag {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* title */
.inner-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ============================================
   INNER HERO (Reusable) MOBILE RESPONSIVE
================================================ */

@media(max-width:768px) {
  .inner-hero {
    min-height: 50vh;
    padding: 60px 15px;
  }

  .inner-hero-title {
    font-size: 24px;
  }

  .desktop-break {
    display: none;
  }
}

/*=============================================================================================================
                                        Main All Page Style Start
================================================================================================================*/
/*========================= Index.HTML START ==========================*/
/*----------- HOME HERO SECTION ---------*/

.home-hero {
  background: linear-gradient(135deg, #0B2D4F 0%, #071c33 100%);
  padding: 90px 0 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #cbd5e1;
}

/* title */
.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

/* text */
.hero-text {
  color: #cbd5e1;
  font-size: 17px;
  max-width: 520px;
}

.hero-title span {
  color: var(--secondary-color);
}

/* features */
.hero-features span {
  display: inline-block;
  margin-right: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e2e8f0;
}

.hero-features i {
  color: var(--secondary-color);
  margin-right: 6px;
}

/* image */
.hero-img {
  width: 76%;
  max-width: 480px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* mobile */
@media(max-width:768px) {
  .home-hero {
    text-align: center;
    padding: 90px 0 60px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-text {
    margin: auto;
  }
}

@media (max-width:320px) {
  .dis-non {
    display: none;
  }
}

/*-------------- Home v1 Hero END-------------*/

/*--------------TECH STRIP--------------------*/
.home-v1-tech-strip {
  background: #f5f7fb;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.home-v1-tech-item i {
  font-size: 34px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.home-v1-tech-item h6 {
  font-weight: 600;
  color: var(--dark-navy);
  margin: 0;
}

/* hover */
.home-v1-tech-item {
  transition: .3s;
}

.home-v1-tech-item:hover {
  transform: translateY(-6px);
}

/*-------TECH STRIP END--------*/
/*----------- Home v1 About ---------- */
.home-v1-about {
  background: #fff;
}

.home-v1-about-img-box {
  background: linear-gradient(135deg, #eef2f7, #ffffff);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.home-v1-about-img-box img {
  width: 100%;
}

.home-v1-about-text {
  color: var(--text-gray);
  line-height: 1.7;
}

.home-v1-about-features div {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--dark-navy);
}

.home-v1-about-features i {
  color: var(--secondary-color);
  margin-right: 8px;
}

/*----------- Home v1 Service ----------*/
.home-v1-services {
  background: #f4f7fb;
}

.home-v1-services-sub {
  color: var(--text-gray);
  max-width: 600px;
  margin: auto;
}

/* card */
.home-v1-service-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: .35s;
  height: 100%;
}

.home-v1-service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* icon */
.home-v1-service-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0B2D4F, #1E88E5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.home-v1-service-icon-box i {
  color: #fff;
  font-size: 28px;
}

/* title */
.home-v1-service-box h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* text */
.home-v1-service-box p {
  font-size: 14px;
  color: var(--text-gray);
}

/* link */
.home-v1-service-box a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 14px;
}

.home-v1-service-box a:hover {
  letter-spacing: 1px;
}

/*----------- Home v1 Service End ------*/
/*------------ Why choose-----*/
.home-v1-why {
  background: #ffffff;

}

.home-v1-why-sub {
  color: var(--text-gray);
  max-width: 650px;
  margin: auto;
}

/*------------ Why choose END-----*/
/*========================= Index.HTML END ==========================*/

/*========================= home.HTML START ==========================*/

/*------Hero section -----*/
/* HERO V2 */
.hero2 {
  padding: 130px 0 90px;
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
}

/* title */
.hero2-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero2-title span {
  color: var(--secondary-color);
}

/* text */
.hero2-text {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 520px;
}

/* button */
.hero2-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
}

.hero2-btn:hover {
  background: #081f36;
  color: #fff;
}

/* IMAGE SHAPE */
.hero2-shape {
  position: relative;
  display: inline-block;
  padding: 12px;
  background: linear-gradient(135deg, #0B2D4F, #1E88E5);
  border-radius: 40px;
  transform: rotate(-8deg);
}

/* image */
.hero2-img {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  transform: rotate(8deg);
}

/* bottom diagonal bg */
.hero2::after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -150px;
  width: 600px;
  height: 400px;
  background: var(--primary-color);
  transform: skewY(-20deg);
  z-index: 0;
  opacity: .08;
}

/* badge */
.hero2-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

.hero2-badge strong {
  color: var(--secondary-color);
}

/* mobile */
@media(max-width:768px) {
  .hero2 {
    text-align: center;
    padding: 90px 0 60px;
  }

  .hero2-title {
    font-size: 34px;
  }

  .hero2-badge {
    position: relative;
    margin-top: 15px;
    left: auto;
    transform: none;
  }

  .hero2-text {
    max-width: 90%;
    margin: auto;
    text-align: center;
    line-height: 1.7;
  }
}

/*------Hero section END -----*/

/*--------Home v2 About us ------------*/
/* ABOUT V2 PREMIUM */
.about2 {
  background: white;
}

/* tag */
.about2-tag {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

/* title */
.about2-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.3;
}

/* text */
.about2-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* list */
.about2-list div {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-color);
}

/* button */
.about2-btn {
  background: transparent;
  color: #000;
  ;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.about2-btn:hover {
  letter-spacing: 2px;
  color: var(--secondary-color);
  transition: 0.4s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* IMAGES */
.about2-images {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.about2-img1 {
  width: 60%;
  border-radius: 18px;
}

.about2-img2 {
  width: 60%;
  border-radius: 18px;
  position: absolute;
  right: 0;
  top: 60px;
}

/* experience badge */
.about2-exp {
  position: absolute;
  bottom: -20px;
  left: 40%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 20px 25px;
  border-radius: 14px;
  text-align: center;
}

.about2-exp h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

.about2-exp span {
  font-size: 13px;
}

/* mobile */
@media(max-width:768px) {
  .about2 {
    text-align: center;
  }

  .about2-images {
    margin: auto;
  }

  .about2-img2 {
    position: relative;
    top: 0;
    margin-top: 15px;
  }

  .about2-exp {
    position: relative;
    left: auto;
    transform: none;
    margin-top: 15px;
  }

  .about2-title {
    font-size: 28px;
  }

  .about2-text {
    max-width: 90%;
    margin: auto;
    text-align: center;
    line-height: 1.7;
  }
}


/*-------- Home v2 About us END ------------------*/

/*--------- Home V2 Stats Start ---------------------*/

/* STATS V2 */
.stats-v2 {
  background: #f4f7fb;
}

/* box */
.stats-box {
  padding: 35px 20px;
  border-radius: 16px;
  transition: .35s;
  cursor: pointer;
}

/* icon */
.stats-box i {
  font-size: 34px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

/* number */
.stats-box h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 5px 0;
}

/* text */
.stats-box p {
  color: var(--text-gray);
  margin: 0;
  font-size: 15px;
}

/* HOVER EFFECT */
.stats-box:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stats-box:hover i {
  transform: scale(1.2);
  transition: .3s;
}

/* mobile */
@media(max-width:768px) {
  .stats-box h2 {
    font-size: 30px;
  }
}

/*--------- Home V2 Stats End ---------------------*/

/*--------- Home V2 Why Choose US Start ---------------------*/

/* WHY CHOOSE US */
.why-us {
  background: #fff;
}

/* card */
.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: .35s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  height: 100%;
}

/* icon */
.why-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* title */
.why-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* text */
.why-card p {
  font-size: 14px;
  color: #6c757d;
}

/* 🔥 HOVER EFFECT */
.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.1);
  transition: .4s;
}

/* mobile */
@media(max-width:768px) {
  .why-card {
    padding: 28px 20px;
  }
}


/*--------- Home V2 Why Choose US Start ---------------------*/

/*---------- Home v2 Ticket Procss Start -------------------*/
.ticket-process {
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
}

/* CARD */
.process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 22px;
  position: relative;
  transition: .4s;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

/* STEP NUMBER BACK */
.step-number {
  position: absolute;
  top: -35px;
  left: 20px;
  font-size: 90px;
  font-weight: 800;
  color: #0B2D4F;
  opacity: .07;
}

/* TITLE */
.process-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* TEXT */
.process-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
}

/* 🔥 HOVER ACTIVE CARD */
.process-card:hover {
  background: #0B2D4F;
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.process-card:hover h5,
.process-card:hover p {
  color: #fff;
}

.process-card:hover .step-number {
  color: #fff;
  opacity: .15;
}

/* MOBILE */
@media(max-width:768px) {
  .process-card {
    padding: 30px 22px;
  }
}

/*---------- Home V2 Ticket Process End --------------------*/

/*========================= home.HTML END ==========================*/

/*========================= about.HTML Start ========================*/

/*---------- About Mission & Vision Start ---------------------*/

.mission-section {
  background: #f4f7fb;
}

/* CARD */
.mission-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  transition: .4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* ICON */
.mission-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

/* different colors */
.bg1 {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.bg2 {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

.bg3 {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

.bg4 {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

/* title */
.mission-card h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* text */
.mission-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* number */
.mission-number {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: #999;
  font-size: 14px;
}

/* 🔥 HOVER */
.mission-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-card:hover .mission-icon {
  transform: scale(1.15) rotate(-6deg);
  transition: .4s;
}

/* mobile */
@media(max-width:768px) {
  .mission-card {
    padding: 30px 20px;
  }
}


/*---------- About Mission & Vision End -----------------------*/

/*---------- Our story Start ----------------------------------*/

.about-story {
  background: #fff;
}

/* top text */
.story-main-text {
  color: var(--text-gray);
  line-height: 1.8;
}

/* image */
.story-img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* timeline wrapper */
.timeline-wrapper {
  position: relative;
  margin-top: 40px;
}

/* line */
.timeline-line {
  position: absolute;
  top: 52px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: #e1e7ef;
  z-index: 0;
}

/* item */
.timeline-item {
  position: relative;
  padding-top: 70px;
  transition: .3s;
}

/* circle */
.timeline-dot {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  font-size: 26px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: .4s;
}

/* colors */
.bg-primary {
  background: linear-gradient(135deg, #0B2D4F, #1E88E5);
}

.bg-orange {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

.bg-blue {
  background: linear-gradient(135deg, #00bcd4, #2196f3);
}

.bg-dark {
  background: linear-gradient(135deg, #1f2a44, #0B2D4F);
}

/* text */
.timeline-item h6 {
  margin-top: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 220px;
  margin: auto;
}

/* 🔥 hover effect */
.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.15) rotate(10deg);
}

.timeline-item:hover {
  transform: translateY(-8px);
}

/* MOBILE TIMELINE */
/* ===== MOBILE TIMELINE PERFECT FIX ===== */
@media(max-width:768px) {

  .timeline-wrapper {
    position: relative;
    padding-left: 90px;
    /* space for line + icon */
  }

  /* vertical line */
  .timeline-line {
    position: absolute;
    left: 45px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e1e7ef;
    display: block;
  }

  /* each item */
  .timeline-item {
    position: relative;
    text-align: left;
    margin-bottom: 50px;
  }

  /* ICON FIX */
  .timeline-dot {
    position: absolute;
    left: -42px;
    top: 0;
    transform: translate(-50%, 0);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 2;
  }

  /* TEXT */
  .timeline-item h5 {
    margin-left: 10px;
  }

  .timeline-item p {
    margin-left: 10px;
  }

}

/* ===============================
   TABLET TIMELINE FIX (768–991px)
================================*/
@media (min-width:768px) and (max-width:991px) {

  .timeline-wrapper {
    position: relative;
    padding-left: 80px;
  }

  /* SHOW VERTICAL LINE */
  .timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e1e7ef;
    display: block;
  }

  /* EACH ITEM */
  .timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 20px;
  }

  /* ICON */
  .timeline-dot {
    position: absolute;
    left: 40px;
    top: 0;
    transform: translate(-50%, 0);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  /* TEXT ALIGN */
  .timeline-content {
    margin-left: 40px;
  }

}

/*---------- Our Story End ------------------------------------*/

/*---------- testimonial Start ------------------------------------*/
/* TESTIMONIAL PRO */
.testimonial-pro {
  background: #f8fafc;
  position: relative;
}

/* tag */
.testi-tag {
  font-weight: 700;
  color: #0B2D4F;
  margin-bottom: 40px;
  position: relative;
}

.testi-tag::before {
  content: "";
  width: 150px;
  height: 4px;
  background: #22c55e;
  position: absolute;
  top: -12px;
  left: 120px;
  border-radius: 5px;
}

/* client list */
.client-list {
  position: relative;
  padding-left: 40px;
}

/* curved vertical line */
.curve-line {
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #e2e8f0;
}

/* client item */
.client-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  cursor: pointer;
  opacity: .5;
  transition: .4s;
}

.client-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
}

/* active */
.client-item.active {
  opacity: 1;
  transform: scale(1.05);
}

.client-item.active img {
  border-color: #22c55e;
}

/* name */
.client-item h6 {
  margin: 0;
  font-weight: 700;
  color: #0B2D4F;
}

.client-item small {
  color: #64748b;
}

/* RIGHT TEXT */
.testimonial-text {
  padding-left: 60px;
}

.quote {
  font-size: 80px;
  color: #cbd5e1;
  font-weight: 700;
}

#testimonialText {
  font-size: 22px;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  max-width: 700px;
  transition: all .4s ease;
}

/* mobile */
@media(max-width:768px) {
  .testimonial-text {
    padding-left: 10px;
    margin-top: 0px;
  }

  #testimonialText {
    font-size: 15px;
  }

  .testi-tag::before {
    content: "";
    width: 100px;
    height: 4px;
    background: #22c55e;
    position: absolute;
    top: -12px;
    left: auto;
    right: auto;
    border-radius: 5px;
  }

  .quote {
    font-size: 23px;
    color: #cbd5e1;
    font-weight: 700;
  }

}

/*------- TABLET LAYOUT---*/
@media (min-width:768px) and (max-width:991px) {

  /* keep row horizontal (NOT stacked) */
  .testimonial-pro .row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
  }

  /* LEFT SIDE */
  .testimonial-pro .col-lg-4 {
    width: 40% !important;
    flex: 0 0 40% !important;
    max-width: 40% !important;
  }

  /* RIGHT SIDE */
  .testimonial-pro .col-lg-8 {
    width: 60% !important;
    flex: 0 0 60% !important;
    max-width: 60% !important;
  }

  /* remove any forced full width */
  .testimonial-pro .col-lg-8,
  .testimonial-pro .col-lg-4 {
    margin: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* testimonial text */
  .testimonial-text {
    padding-left: 40px !important;
    margin-top: 0 !important;
    text-align: left !important;
  }

  #testimonialText {
    font-size: 20px;
    line-height: 1.8;
    max-width: 100%;
    text-align: left !important;
  }

  /* headings left */
  .testimonial-pro .section-title,
  .testimonial-pro .testi-tag {
    text-align: left !important;
  }

  .testi-tag::before {
    content: "";
    width: 150px;
    height: 4px;
    background: #22c55e;
    position: absolute;
    top: -12px;
    left: 48px;
    border-radius: 5px;
  }

}




/*---------- testionial END ------------------------------------*/

/*---------- Team Section Start ---------------------------------*/

.team-section {
  background: white;
  padding: 55px 20px;
  text-align: center;
  overflow: hidden;
}

.team-title {
  font-size: 42px;
  color: #000;
  font-weight: 600;
}

.team-para {
  margin-bottom: 50px;
}

.team-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-card {
  position: relative;
  width: 260px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: .4s;
  background: linear-gradient(145deg, #0f172a, #020617);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.15);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.team-info {
  position: absolute;
  bottom: 0px;
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 0 20px 20px;
  z-index: 2;
  width: 100%;
}

.team-info h3 {
  margin: 0;
  font-size: 20px;
}

.team-info p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

/* Hover panel */
.team-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-navy), var(--primary-color));
  color: #fff;
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.team-hover h3 {
  margin-bottom: 10px;
}

.team-social i {
  background-color: transparent;
  color: white;
  margin-left: 10px;
  font-size: 20px;
}

.team-social i:hover {
  color: var(--secondary-color);
}

/* Hover effect */
.team-card:hover .team-hover {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover img {
  transform: scale(1.1);
  filter: blur(3px);
}


/*---------- Team Section END -----------------------------------*/

/*========================= about.HTML END ========================*/

/*========================= Service.HTML Start ====================*/

.ta-services {
  padding: 50px 20px;
  background: #F4F6F9;
}

.ta-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0B2D4F;
}

.ta-title-text {
  text-align: center;
  color: #555;
  margin-bottom: 70px;
}

.ta-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.ta-service-row.reverse {
  flex-direction: row-reverse;
}

.ta-text {
  flex: 1;
}

.ta-text h3 {
  font-size: 26px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.ta-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ta-btn {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--secondary-color);
  transition: .3s;
}

.ta-btn:hover {
  background: transparent;
  color: var(--primary-color);
  letter-spacing: 3px;
  text-decoration: none;
}

.ta-img {
  flex: 1;
  text-align: center;
}

.ta-img img {
  width: 85%;
  max-width: 320px;
  transition: .4s;
}

.ta-img img:hover {
  transform: scale(1.05);
}

/* Only mobile */
@media (max-width: 600px) {

  .ta-service-row,
  .ta-service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .ta-text {
    order: 2;
    text-align: justify;
  }

  .ta-img {
    order: 1;
    margin-bottom: 20px;
  }
}

/*========================= Service.HTML END ======================*/

/*========================= Service-detail.HTML Start ==============*/

.managed-section {
  padding: 50px 20px;
  background: #F4F6F9;
}

.managed-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.managed-text {
  flex: 1;
}

.small-title {
  color: #F57C00;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.managed-text h2 {
  font-size: 40px;
  color: #0B2D4F;
  margin-bottom: 20px;
  line-height: 1.3;
}

.managed-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.read-btn {
  display: inline-block;
  margin-top: 10px;
  color: #F57C00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #F57C00;
  padding-bottom: 3px;
  transition: .3s;
}

.read-btn:hover {
  color: #0B2D4F;
  border-color: #0B2D4F;
}

/* IMAGE */
.managed-img {
  flex: 1;
}

.managed-img img {
  width: 100%;
  border-radius: 14px;
}

.img2 {
  display: none;
}

/* Tablet keep desktop layout */
@media(max-width:768px) {
  .managed-grid {
    flex-direction: row;
    gap: 30px;
  }

  .managed-text h2 {
    font-size: 28px;
    text-align: justify;
  }

  .managed-text p {
    font-size: 16px;
    text-align: justify;
  }

  .img2 {
    display: block;
    width: 80%;
    margin-top: 15px;
  }
}

/* Mobile */
@media(max-width:600px) {
  .managed-grid {
    flex-direction: column;
  }

  .img2 {
    display: none;
  }
}

/*------------------------Service detail Section 2 START -------------*/

.sd-ta-detail {
  background: #F4F6F9;
  padding: 10px 20px;
}

.sd-ta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sd-ta-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.sd-ta-card h3 {
  color: #0B2D4F;
  font-size: 24px;
  margin-bottom: 8px;
}

.sd-line {
  width: 50px;
  height: 3px;
  background: #F57C00;
  margin-bottom: 15px;
}

.sd-ta-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Tablet */
@media(max-width:900px) {
  .sd-ta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

/* Mobile */
@media(max-width:600px) {
  .sd-ta-grid {
    grid-template-columns: 1fr;
  }

  .sd-ta-card h3 {
    text-align: center;
    margin-bottom: 15px;
  }

  .sd-ta-card p {
    text-align: justify;
  }

  .sd-line {
    display: none;
  }
}

/*------------------------Service detail Section 2 END ---------------*/

/*------------------------Service detail FAQ START -------------------*/

.faq-section {
  background: white;
  padding: 0 100px;
}

.faq-heading {
  color: #0B2D4F;
  font-size: 40px;
}

.faq-heading span {
  color: #F57C00;
  border-bottom: 4px solid #F57C00;
  padding-bottom: 5px;
}

/* accordion style */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* hover effect */
.accordion-item:hover {
  transform: translateY(-6px);
}

.accordion-button {
  font-weight: 600;
  color: #0B2D4F;
  background: #fff;
  padding: 20px;
  transition: 0.3s;
}

/* text color change on hover */
.accordion-item:hover .accordion-button {
  color: var(--secondary-color);
  background: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: none;
}

.accordion-body {
  background: #fff;
  color: #555;
  line-height: 1.7;
}

/* remove default bootstrap arrow bg */
.accordion-button:focus {
  box-shadow: none;
}

/* ===== 320px mobile ===== */
@media (max-width: 400px) {

  /* heading */
  .faq-heading {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .faq-heading span {
    color: inherit;
    display: block;
    border-bottom: 3px solid #F57C00;
    width: fit-content;
    margin: auto;
    padding-bottom: 5px;
  }

  /* card box */
  .accordion-item {
    border-radius: 14px !important;
    margin-bottom: 14px;
  }

  /* question button */
  .accordion-button {
    font-size: 16px;
    padding: 16px;
    line-height: 1.4;
  }

  /* answer */
  .accordion-body {
    font-size: 14px;
    padding: 15px;
  }

  /* container spacing */
  .faq-section {
    padding: 60px 15px;
  }

}

/*------------------------Service detail FAQ END ---------------------*/

/*------------------------Service detail Pricing Start ---------------*/

.ta-pricing {
  background: #F4F6F9;
  padding: 10px 20px 50px 20px;
  text-align: center;
}

.mini {
  letter-spacing: 3px;
  color: #F57C00;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  color: #0B2D4F;
  margin-bottom: 10px;
}

.sub {
  color: #666;
  margin-bottom: 60px;
}

.price-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* card */
.price-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 18px;
  width: 320px;
  transition: .4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* hover */
.price-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* active center */
.price-card.active {
  border: 2px solid #0B2D4F;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0B2D4F;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
}

.price-card h4 {
  color: #0B2D4F;
  margin-bottom: 15px;
}

.price-card h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.price-card h1 span {
  font-size: 16px;
  color: #666;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 12px;
  color: #444;
  text-align: center;
}

.price-card a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #F57C00;
  border-radius: 30px;
  text-decoration: none;
  color: #0B2D4F;
  font-weight: 600;
  transition: .3s;
}

/* button hover */
.price-card a:hover {
  background: #F57C00;
  color: #fff;
}

/* only mobile stack */
@media (max-width:600px) {
  .main-title {
    font-size: 28px;
  }

  .price-wrap {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width:400px) {

  .price-card {
    width: 100%;
    padding: 30px 18px;
    margin-bottom: 20px;
  }

  .price-card h1 {
    font-size: 30px;
  }

  .price-card ul li {
    font-size: 14px;
  }

  .price-card a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 14px;
  }

}

/*------------------------Service detail Pricing END -----------------*/

/*========================= Service-detail.HTML End ================*/

/*========================= Blog.HTML Start ========================*/

.blog-section {
  padding: 50px 20px;
  background: #F4F6F9;
}

.blog-title {
  text-align: center;
  font-size: 38px;
  color: #0B2D4F;
  margin-bottom: 30px;
}

.blog-title span {
  color: #F57C00;
}

/* controls */
.blog-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-controls input,
.blog-controls select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 250px;
}

/* grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* card */
.blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: .4s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-card h4 {
  color: #0B2D4F;
  margin-bottom: 10px;
}

.blog-card p {
  color: #555;
  font-size: 14px;
}

.blog-card a {
  display: inline-block;
  margin-top: 10px;
  color: #F57C00;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.blog-card a:hover {
  letter-spacing: 2px;
}

@media (max-width:400px) {

  .blog-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center cards */
  }

  .blog-card {
    width: 100%;
  }

  .blog-card h4 {
    text-align: justify;
  }

  .blog-card p {
    text-align: justify;
  }

}

/*========================= Blog.HTML End ==========================*/

/*========================= Blog-detail.HTML Start ========================*/

.bd-article {
  background: #F4F6F9;
  padding: 80px 20px;
}

.bd-article .container {
  max-width: 900px;
  margin: auto;
}

/* badge */
.bd-badge {
  display: inline-block;
  background: #0B2D4F;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* title */
.bd-title {
  font-size: 32px;
  line-height: 1.2;
  color: #0B2D4F;
  margin-bottom: 15px;
  font-weight: 700;
}

/* desc */
.bd-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

/* image */
.bd-hero img {
  width: 100%;
  border-radius: 16px;
  margin: 20px 0 40px;
}

/* content */
.bd-content {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

.bd-content h4 {
  margin-top: 35px;
  color: #0B2D4F;
}

.bd-content blockquote {
  background: #fff;
  padding: 25px;
  border-left: 4px solid #F57C00;
  margin: 30px 0;
  font-weight: 600;
  color: #0B2D4F;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width:400px) {

  .bd-title {
    font-size: 28px;
    text-align: justify;
  }

  .bd-desc {
    font-size: 15px;
    text-align: justify;
  }

  .bd-content {
    font-size: 15px;
    text-align: justify;
  }

  .bd-hero img {
    border-radius: 12px;
  }

  .bd-article {
    padding: 60px 15px;
  }

}

/*------------------- Other Blogs Start ---------------*/
.bd-related {
  background: #F4F6F9;
  padding: 10px 20px 30px 20px;
}

.bd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.bd-head h2 {
  color: #0B2D4F;
  font-size: 32px;
  font-weight: 700;
}

.bd-view {
  color: #0B2D4F;
  font-weight: 600;
  text-decoration: none;
}

.ta-view:hover {
  color: #F57C00;
}

/* card */
.bd-blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: .35s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.bd-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* image */
.bd-img {
  overflow: hidden;
}

.bd-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .4s;
}

.bd-blog-card:hover img {
  transform: scale(1.06);
}

/* content */
.bd-content-card {
  padding: 22px;
}

.bd-tags {
  margin-bottom: 12px;
}

.bd-tags span {
  background: #EEF2F6;
  color: #0B2D4F;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 6px;
}

.bd-content-card h4 {
  font-size: 20px;
  color: #0B2D4F;
  margin-bottom: 15px;
}

.bd-read {
  color: #F57C00;
  font-weight: 600;
  text-decoration: none;
  transition: .4s;
}

.bd-read:hover {
  letter-spacing: 3px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width:720px) {

  .bd-head {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .bd-img img {
    height: 200px;
  }
}

@media (max-width:400px) {

  .bd-head h2 {
    font-size: 24px;
  }

  .bd-content-card h4 {
    font-size: 18px;
  }

  .bd-content {
    padding: 0;
  }
}

/* =====================================
   FORCE 3 CARDS EVEN IN 720px TABLET
===================================== */

@media (max-width: 991px){

  .bd-related .row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  /* force 3 cards */
  .bd-related .col-lg-4{
    flex:0 0 33.333% !important;
    max-width:33.333% !important;
  }

}
/* mobile only 1 column */
@media (max-width: 575px){

  .bd-related .col-lg-4{
    flex:0 0 100% !important;
    max-width:100% !important;
  }

}
  
/*------------------- Other Blogs END -----------------*/

/*========================= Blog-detail.HTML End ==========================*/

/*=============================================================================================================
                                        Main All Page Style END
================================================================================================================*/

/*--------------- GLOBAL CTA SECTION ---------*/
.cta-image-section {
  position: relative;
  padding: 20px 0;
  background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 45, 79, 0.95) 0%, rgba(11, 45, 79, 0.75) 45%, rgba(11, 45, 79, 0.2) 100%);
}

/* content above overlay */
.cta-image-section .container {
  position: relative;
  z-index: 2;
}

/* title */
.cta-image-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

/* text */
.cta-image-text {
  color: #dbeafe;
  font-size: 17px;
  max-width: 600px;
}

/* buttons */
.cta-btn-main {
  background: var(--secondary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.cta-btn-main:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* trust text */
.cta-trust {
  color: #fde68a;
  font-size: 14px;
  margin-top: 10px;
}

/* ===============================
   CTA TABLET FIX (768px)
================================*/
@media (max-width:991px) {

  .cta-image-section {
    text-align: center;
  }

  .cta-image-title {
    font-size: 34px;
    line-height: 1.3;
    max-width: 700px;
    margin: auto;
  }

  .cta-image-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin: 15px auto 0;
  }

  .cta-image-section .btn {
    margin-top: 10px;
  }

  .cta-trust {
    margin-top: 15px;
    display: block;
  }
}

/* mobile */
@media(max-width:768px) {
  .cta-image-section {
    padding: auto;
  }

  .cta-image-title {
    font-size: 22px;
  }

  .cta-image-section {
    text-align: center;
  }

  .cta-image-text {
    font-size: 15px;
  }

  .cta-btn-main {
    display: none;
  }
}

/*-------------- CTA END --------------*/
/*==================================
            Contact page
  =====================================*/
/* CONTACT PAGE */
.contact-page {
  background: #f4f7fb;
}

/* info cards */
.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: .3s;
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #0B2D4F, #1E88E5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-icon i {
  color: #fff;
  font-size: 24px;
}

/* form */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-box input,
.contact-form-box textarea {
  border-radius: 10px;
  padding: 12px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

/* button */
.contact-send-btn {
  background: linear-gradient(90deg, #0B2D4F, #c81d3a);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}

.contact-send-btn:hover {
  opacity: .9;
}

/* map */
.map-box iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 14px;
}

/* business hours */
.business-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.business-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-box li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}


/*==================================
            Contact page END
  =====================================*/