/* ===============================
   ROOT VARIABLES
   =============================== */

   :root {
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
  
    /* Brand Colors */
    --primary-color: #0F2A44;     /* deep trust blue */
    --secondary-color: #27AE60;   /* premium care green */
    --accent-color: #E85D04;      /* premium orange CTA */
  
    /* Backgrounds */
    --light-bg: #F4F7FB;
    --soft-gray: #E9EEF5;
  
    /* Dark UI */
    --dark-navy: #071C33;
    --white: #FFFFFF;
  }


/* ===============================
                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: var(--secondary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

.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: var(--primary-color);
  border: none;
}

.btn-learnmore:hover {
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.btn-learnmore-boder{
  background: transparent;
  transition: 0.3s;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-learnmore-boder:hover {
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.sub-heading {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--accent-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('../img/hero-bannar.png') top center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
  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 ---------*/

.hero-v1{
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--light-bg);
}

/* heading */
.hero-title{
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  padding-top: 40px;
}


/* text */
.hero-text{
  font-family: var(--font-body);
  font-size: 17px;
  color: #555;
  max-width: 520px;
}

/* input */
.hero-input{
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* button */
.hero-btn{
  background: var(--accent-color);
  color:#fff;
  font-weight:600;
  padding:14px 24px;
  border-radius:8px;
  border:2px solid var(--accent-color);
}

.hero-btn:hover{
  background:var(--primary-color);
  color:white;
}

/* stats */
.hero-stats h4{
  font-weight:700;
  color: var(--primary-color);
}

.hero-stats p{
  font-size:14px;
  color:#777;
}

/* image */
.hero-img{
  max-width: 95%;
}

/* tablet */
@media(max-width:768px){
  .hero-title{
    font-size:34px;
  }
}
@media (max-width: 991px){
  .hero-v1{
    padding-top: 0px;
    padding-bottom: 0px;
  }
}


/* mobile 320px */
@media(max-width:480px){
  .hero-title{
    font-size:28px;
  }
  .hero-text{
    font-size:16px;
  }
  .hero-input{
    text-align: center;
  }
}


/*-------------- Home v1 Hero END-------------*/


/*----------- Home v1 About ---------- */
.about-v1{
  background: white;
}

/* image */
.v1-about-img-wrap{
  position: relative;
}

.v1-about-img{
  border-radius: 20px;
}

/* floating badge */
.v1-about-badge{
  position: absolute;
  bottom: 20px;
  left: 20px;
  background:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-size:14px;
}

.avatar-group img{
  width:28px;
  height:28px;
  border-radius:50%;
  margin-left:-8px;
  border:2px solid #fff;
}

/* right card */
.v1-about-card{
  background:#fff;
  border-radius:20px;
}

/* title */
.v1-about-title{
  font-family: var(--font-heading);
  font-size:34px;
  font-weight:700;
  color: var(--primary-color);
}

.v1-about-text{
  font-family: var(--font-body);
  color:#666;
  margin:15px 0 20px;
}

/* button */
.v1-about-btn{
  background: var(--secondary-color);
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
}

.v1-about-btn:hover{
  background:#219150;
  color:#fff;
}

/* feature boxes */
.v1-about-feature-box{
  background: var(--soft-gray);
  padding:18px;
  border-radius:14px;
  height:100%;
  transition: .4s;
}
.v1-about-feature-box{
  transition: 0.3s;
}

.v1-about-feature-box:hover{
  transform: translateY(-5px);
}

/* change icon color on hover */
.v1-about-feature-box:hover .v1-about-icon{
  color: var(--secondary-color);
}

/* change heading color on hover */
.v1-about-feature-box:hover h6{
  color: var(--secondary-color);
}


.v1-about-feature-box h6{
  font-weight:700;
  margin-top:8px;
}

.v1-feature-box p{
  font-size:13px;
  color:#666;
}

.v1-about-icon{
  color: var(--primary-color);
  font-size:22px;
}
@media (max-width:425px) {
  .about-v1{
    text-align: center;
  }
  .v1-about-title{
    font-size: 23px;
  }
  
}
/*----------- Home v1 About End --------*/
/*----------- Home v1 Service ----------*/
.services-title{
  font-family: var(--font-heading);
  font-weight:700;
  color: var(--primary-color);
}
.services-text{
  font-family: var(--font-body);
  max-width: 600px;
  margin: auto;
}
/* card */
.service-card{
  background:#fff;
  padding:30px 22px;
  border-radius:18px;
  width:100%;
  max-width:320px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* icon */
.icon-wrap{
  width:85px;
  height:85px;
  background: rgba(39,174,96,0.12);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  font-size:32px;
  color: var(--secondary-color);
}

.service-card h5{
  font-weight:700;
  color: var(--primary-color);
}

.service-card p{
  font-size:14px;
  color:#666;
  min-height:55px;
}

/* button */
.service-btn{
  border:2px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius:25px;
  padding:8px 18px;
  font-weight:600;
}

.service-btn:hover{
  background: var(--secondary-color);
  color:#fff;
}

/*----------- Home v1 Service End ------*/
/*------------ Why choose-----*/
.v1-why{
  background: white;
}

/* heading */
.v1-why-title{
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight:700;
  color: var(--primary-color);
}

.v1-why-sub{
  max-width:700px;
  margin:auto;
  color:#666;
}

/* image */
.v1-why-img{
  border-radius:20px;
}
.v1-why-img2{
  border-radius: 20px;
}
/* card */
.v1-why-card{
  background:var(--light-bg);
  padding:25px 18px;
  border-radius:16px;
  height:100%;
  border: 2px solid var(--secondary-color);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
  max-width:320px;
  width:100%;
}

.v1-why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* icon */
.v1-why-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:12px;
  border-radius:50%;
  background: rgba(39,174,96,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color: var(--secondary-color);
}

/* text */
.v1-why-card h6{
  font-weight:700;
  color: var(--primary-color);
}

.v1-why-card p{
  font-size:14px;
  color:#666;
}

/* mobile */
@media(max-width:576px){
  .v1-why-title{
    font-size:26px;
  }
  .v1-why-img2{
    display: none;
  }
}
@media (max-width:768px) {
  .v1-why-img2{
    display: none;
  }
}


/*------------ Why choose END-----*/
/*========================= Index.HTML END ==========================*/

/*========================= home.HTML START ==========================*/

/*------Hero section -----*/
/* HERO BACKGROUND */
.v2-hero{
  background: var(--light-bg);
  padding: 100px 0 70px 0;
  color:#fff;
  overflow:hidden;
}

/* BADGE */
.v2-badge{
  background:#0b1a55;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  display:inline-block;
  margin-bottom:20px;
}

/* TITLE */
.v2-title{
  color: var(--primary-color);
  font-size:58px;
  font-weight:800;
  line-height:1.2;
}



/* TEXT */
.v2-text{
  margin-top:20px;
  font-size:18px;
  color:#555;
  max-width:520px;
}

/* IMAGE SIDE */
.v2-img-wrap{
  margin-top: 30px;
  position:relative;
  text-align:center;
}

.v2-main-img{
  width:420px;
  border-radius:50%;
  position:relative;
  z-index:2;
}

/* circle design */
.circle-design{
  position:absolute;
  width:460px;
  height:460px;
  border:2px dashed var(--secondary-color);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

/* EXPERIENCE BOX */
.experience-box{
  position:absolute;
  bottom:40px;
  left:40px;
  background:#0b1a55;
  padding:25px 30px;
  border-radius:50%;
  text-align:center;
  width:130px;
  height:130px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  z-index: 3;
}

.experience-box h2{
  font-size:32px;
  margin:0;
  color:#00e676;
}

.experience-box p{
  font-size:12px;
  margin:0;
}

@media (min-width:768px) and (max-width:991px){
  .v2-title{
    font-size:34px;
  }

  .v2-main-img{
    width:300px;
  }

  .circle-design{
    width:340px;
    height:340px;
  }
  .experience-box{
    bottom: -40px;
    left: 10px;
  }
}

/* MOBILE ONLY STACK */
@media(max-width:767px){

  .v2-hero{
    text-align:center;
    padding:80px 0;
  }

  .v2-title{
    font-size:28px;
  }
  .v2-text{
    font-size: 15px;
  }

  .v2-main-img{
    width:260px;
  }

  .circle-design{
    width:300px;
    height:300px;
  }

  .experience-box{
    left:50%;
    transform:translateX(-50%);
    bottom:-40px;
  }
  .v2-img-wrap{
    margin-top: 60px;
  }
}


/*------Hero section END -----*/

/*--------Home v2 About us ------------*/
.v2-about2{
  padding:80px 0;
  background:white;
}

/* IMAGE SIDE */
.v2-about2-img{
  position:relative;
  width:420px;
  max-width:100%;
}

.v2-about2-img .main-img{
  width:100%;
  border-radius:6px;
  position:relative;
  z-index:2;
}

/* BORDER FRAME */
.img-border{
  position:absolute;
  width:100%;
  height:100%;
  border:8px solid #d8a36c;
  top:-20px;
  left:20px;
  z-index:1;
}

/* TITLE */
.v2-about2-title{
  font-size:44px;
  font-weight:800;
  margin-top: 10px;
  color:#0B2D4F;
}

/* TEXT */
.v2-about2-text{
  margin:20px 0;
  color:#666;
  line-height:1.7;
  max-width:520px;
}
.main-img-2{
  display: none;
}

/* TABLET = SAME AS DESKTOP */
@media(max-width:991px){
  .v2-about2-title{
    font-size:34px;
  }
  .img-border{
    display: none;
  }
  .main-img-2{
    display: inline;
    margin-top: 20px;
    width:100%;
    border-radius:6px;
    position:relative;
    z-index:2;
  }

}

/* MOBILE */
@media(max-width:767px){
  .v2-about2{
    text-align:center;
    padding:70px 0;
  }

  .v2-about2-img{
    margin:0 auto 40px;
  }

  .img-border{
    display: none;
  }
  .v2-about2-title{
    font-size: 28px;
  }
  .v2-about2-text{
    font-size: 15px;
  }
  .main-img-2{
    display: none;
  }
}


/*-------- Home v2 About us END ------------------*/

/*--------- Home V2 Stats Start ---------------------*/
.v2-counter{
  background:#f5f7fb;
  padding:0px 0;
}

.counter-box{
  padding:20px;
}

.counter-box i{
  font-size:40px;
  color:#d8a36c;
  margin-bottom:10px;
}

.counter-box h2{
  font-size:32px;
  font-weight:800;
  color:#0B2D4F;
  margin:10px 0;
}

.counter-box p{
  color:#666;
  font-size:16px;
}

/* tablet same as desktop */
@media(max-width:991px){
  .counter-box h2{
    font-size:32px;
  }
}

/* mobile */
@media(max-width:767px){
  .v2-counter{
    padding:0px 0;
  }

  .counter-box{
    margin-bottom:20px;
  }
  .counter-box h2{
    font-size: 22px;
  }
  .counter-box p{
    font-size: 16px;
  }
}
.counter-box{
  transition:.4s;
}

.counter-box:hover{
  transform:translateY(-8px);
}

/*--------- Home V2 Stats End ---------------------*/

/*--------- Home V2 Why Choose US Start ---------------------*/
.v2-why{
  padding:50px 0;
  background:#fff;
}

/* TITLE */
.v2-why-title{
  font-size:32px;
  font-weight:800;
  color:#0B2D4F;
}

/* CARD */
.why-card{
  background:#fff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 5px 25px rgba(0,0,0,0.05);
  height:100%;
  transition:.3s;
}

.why-card:hover{
  transform:translateY(-6px);
}

.why-card i{
  font-size:32px;
  color:var(--secondary-color);
  margin-bottom:15px;
}

.why-card h4{
  font-weight:700;
  margin-bottom:10px;
  color:#0B2D4F;
}

.why-card p{
  color:#666;
}

.why-card.wide{
  min-height:180px;
}

/* RIGHT SIDE */
.why-side{
  background:#0B2D4F;
  color:#fff;
  padding:40px;
  border-radius:16px;
  height:100%;
}

.why-side i{
  font-size:40px;
  color:#2ecc71;
}

.why-side h3{
  margin-top:15px;
  font-weight:700;
}

.why-side p{
  margin:15px 0 25px;
  color:#cfd8ff;
}



/* TABLET = SAME AS DESKTOP */
@media(max-width:991px){
  .v2-why-title{
    font-size:32px;
  }
}

/* MOBILE */
@media(max-width:767px){
  .v2-why{
    padding:70px 0;
    text-align:center;
  }
  .v2-why-title{
    font-size: 25px;
  }
}

/*--------- Home V2 Why Choose US Start ---------------------*/

/*---------- Home v2 Procss Start -------------------*/
.v2-process{
  padding:50px 0;
  background:var(--light-bg);
}

.v2-process-title{
  font-size:42px;
  font-weight:800;
  color:#0B2D4F;
}

.v2-process-sub{
  color:#666;
  margin-top:10px;
}

/* BOX */
.process-box{
  padding:30px 20px;
  transition:.3s;
  background: #fff;
  border-radius: 20px;
}

.process-box:hover{
  transform:translateY(-8px);
  border: 2px solid var(--secondary-color);
}
.process-box:hover h4{
  color: var(--secondary-color);
}

/* NUMBER ICON */
.process-icon{
  width:70px;
  height:70px;
  line-height:70px;
  background:#eaf6ef;
  color:#2ecc71;
  font-size:26px;
  font-weight:700;
  border-radius:50%;
  margin:0 auto 15px;
}

.process-box h4{
  font-weight:700;
  color:#0B2D4F;
}

.process-box p{
  color:#666;
  font-size:15px;
}

/* TABLET SAME AS DESKTOP */
@media(max-width:991px){
  .v2-process-title{
    font-size:32px;
  }
  .process-box{
    margin-bottom:25px;
  }
}

/* MOBILE */
@media(max-width:767px){
  .v2-process{
    padding:40px 0;
  }

  .process-box{
    margin-bottom:25px;
  }
  .v2-process-title{
    font-size: 25px;
  }
}

/*---------- Home V2 Process End --------------------*/

/*========================= home.HTML END ==========================*/

/*========================= about.HTML Start ========================*/

/*---------- About Mission & Vision Start ---------------------*/
.vm-section{
  padding:50px 0;
  background:#fff;
  font-family:Poppins, sans-serif;
}

/* HEADING */
.vm-heading h2{
  text-align: center;
  font-weight:700;
  color:#0B2D4F;
  margin-bottom:15px;
}

.vm-heading p{
  color:#666;
  max-width:500px;
}

/* RESPONSIVE HEADING SIZE */
@media(max-width:768px){
  .vm-heading h2{font-size:25px;}
  .vm-heading p{text-align: center;}
}
@media(min-width:768px) and (max-width:1024px){
  .vm-heading h2{font-size:32px;}
  .vm-heading p{text-align: center !important;}
}
@media(min-width:1025px){
  .vm-heading h2{font-size:42px;}
}

/* BOX STYLE */
.vm-vision-box{
  background:var(--light-bg);
  padding:35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  transition: .3s;
}

.vm-mission-box{
  background:var(--light-bg);
  padding:35px;
  border-radius:20px;
  color:#555;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  transition: .3s;
}

.vm-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.vm-text h5{
  color: var(--primary-color);
  font-weight:600;
  margin-bottom:8px;
}

.vm-text p{
  color: #555;
  font-size:14px;
  line-height:1.6;
}

.vm-icon i{
  color: var(--primary-color);
  font-size: 80px;
}

/* IMAGE */
.vm-img{
  width:75%;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.vm-vision-box:hover{
  transform: translateY(-5px);
}
.vm-vision-box:hover .vm-icon i{
  color: var(--secondary-color);
}
.vm-vision-box:hover .vm-text h5{
  color: var(--secondary-color);
}
.vm-mission-box:hover{
  transform: translateY(-5px);
}
.vm-mission-box:hover .vm-icon i{
  color: var(--secondary-color);
}
.vm-mission-box:hover .vm-text h5{
  color: var(--secondary-color);
}

/* MOBILE */
@media(max-width:768px){
  .vm-flex{
    flex-direction:column;
    text-align:center;
  }

  .vm-icon i{
    font-size:70px;
    margin-top:10px;
  }
}
/* MOBILE & TABLET ORDER FIX */
/* MOBILE + TABLET FIX */
@media (max-width: 575px){

  /* make heading first */
  .vm-heading{
    text-align:center;
    margin-bottom:25px;
  }

  .vm-section .row{
    display:flex;
    flex-direction:column;
  }

  .vm-section .row > div:nth-child(2){
    order:1; /* heading */
  }

  .vm-section .row > div:nth-child(1){
    order:2; /* vision */
  }

  .vm-section .row > div:nth-child(3){
    order:3; /* image */
  }

  .vm-section .row > div:nth-child(4){
    order:4; /* mission */
  }
  .vm-img{
  width: 100%;
  }

}
/* ICON FIRST IN MOBILE & TABLET */
@media (max-width:1024px){

  .vm-flex{
    flex-direction:column;
    text-align:center;
  }

  .vm-icon{
    order:-1;   /* icon first */
    margin-bottom:15px;
  }

}

@media (min-width:768px) and (max-width:786px){

  .vm-heading{
    text-align:center;
    margin-bottom:25px;
  }

  /* make row flex */
  .vm-section .row{
    display:flex;
    flex-wrap:wrap;
  }

  /* HEADING FIRST FULL WIDTH */
  .vm-section .row > div:nth-child(2){
    order:1;
    width:100%;
  }

  /* VISION LEFT */
  .vm-section .row > div:nth-child(1){
    order:2;
    width:50%;
  }

  /* MISSION RIGHT */
  .vm-section .row > div:nth-child(4){
    order:3;
    width:50%;
  }

  /* IMAGE FULL WIDTH BOTTOM */
  .vm-section .row > div:nth-child(3){
    order:4;
    width:100%;
    text-align:center;
  }

  .vm-img{
    width:85%;
  }
}

/* TABLET + MOBILE CENTER FIX */
@media (min-width:768px){

  .vm-heading p{
    text-align:center !important;
    margin:0 auto;
    max-width:79%;
  }
  .vm-vision-box{
    max-width: 100%;
    text-align: center;
    margin: auto;
  }
  .vm-mission-box{
    max-width: 100%;
    text-align: center;
    margin: auto;
  }

}



/*---------- About Mission & Vision End -----------------------*/

/*---------- Our story Start ----------------------------------*/
.who-section{
  padding:30px 0;
  background:#f8fafc;
  font-family:Poppins, sans-serif;
}

.who-content{
  padding-right:40px;
}

.who-tag{
  color:#22c55e;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
}

.who-content h2{
  font-size:42px;
  font-weight:700;
  color:#0B2D4F;
  margin:15px 0;
}

.who-content p{
  color:#666;
  line-height:1.7;
  margin-bottom:20px;
}

/* LIST */
.who-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 20px;
  margin-bottom:25px;
}

.who-list div{
  color:#333;
  font-size:15px;
}

.who-list i{
  color:#22c55e;
  margin-right:8px;
}

/* STATS */
.who-stats{
  display:flex;
  gap:40px;
  margin-bottom:25px;
}

.who-stats h3{
  color:#22c55e;
  font-size:32px;
  margin:0;
}

.who-stats span{
  font-size:14px;
  color:#777;
}

/* BUTTON */
.who-btn{
  display:inline-block;
  background:#22c55e;
  color:#fff;
  padding:12px 26px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.who-btn:hover{
  background:#16a34a;
}

/* IMAGE STYLE */
.who-img-wrap{
  position:relative;
  text-align:right;
}

.main-img{
  width:100%;
  border-radius:20px;
}

.small-img{
  width:180px;
  position:absolute;
  bottom:-20px;
  left:-20px;
  border-radius:15px;
  border:6px solid #fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  z-index: 2;
}

/* MOBILE */
@media(max-width:991px){

  .who-content{
    padding-right:0;
    text-align:center;
    margin-bottom:40px;
  }

  .who-content h2{
    font-size:28px;
  }

  .who-list{
    grid-template-columns:1fr;
  }

  .who-stats{
    justify-content:center;
  }

  .who-img-wrap{
    text-align:center;
  }

  .small-img{
    left:30%;
    transform:translateX(-50%);
  }
}
@media (max-width:525px) {
  .small-img{
    display: none;
  }
}
/* TABLET ONLY */
@media (min-width:768px) and (max-width:1024px){

  .who-list{
    margin-top: 10px;
    padding-left: 100px;
    text-align: justify;
    width:50%;
    float:left;
  }

  .who-stats{
    margin-top: 10px;
    text-align: center;
    width:50%;
    float:left;
    margin-top:0;
    padding-left:20px;
  }

}


/*---------- Our Story End ------------------------------------*/

/*---------- testimonial Start ------------------------------------*/
.sc-testimonial{
  padding:40px 0;
  background:#fff;
  font-family:Poppins,sans-serif;
}

/* LEFT */
.testi-tag{
  background:#e8f7f0;
  color:#16a34a;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.testi-content h2{
  font-size:38px;
  font-weight:700;
  color:#0B2D4F;
  margin:15px 0 25px;
}

.quote{
  font-size:60px;
  color:#16a34a;
  line-height:0.5;
}

.testi-slide{
  display:none;
  padding:0 60px;   
}

.testi-slide.active{
  display:block;
}

.testi-slide p{
  color:#666;
  line-height:1.8;
  margin:10px 0;
}

.testi-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:15px;
}

.testi-user img{
  width:50px;
  height:50px;
  border-radius:50%;
}

.testi-user h5{
  margin:0;
  font-size:16px;
  color:#0B2D4F;
}

.testi-user span{
  font-size:13px;
  color:#888;
}

/* IMAGE */
.testi-img-wrap{
  position:relative;
  text-align:right;
}

.testi-img{
  width:100%;
  border-radius:20px;
}

.rating-box{
  position:absolute;
  bottom:20px;
  left:-20px;
  background:#fff;
  padding:15px 18px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.rating-box h3{
  color:#16a34a;
  margin:0;
}

.rating-box span{
  color:#f59e0b;
}
.rating-box i{
  background:conic-gradient(
    #4285F4 0deg 90deg,
    #34A853 90deg 180deg,
    #FBBC05 180deg 270deg,
    #EA4335 270deg 360deg
  );
  background-clip: text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* MOBILE - HIDE IMAGE */
@media(max-width:768px){
  .testi-img-wrap{
    display:none;
  }

  .testi-content h2{
    font-size:24px;
    text-align:center;
  }

  .testi-content{
    text-align:center;
  }

  .testi-user{
    justify-content:center;
  }
  .testi-slide{
    padding: 0;
  }
}
.testi-slide{
  position:relative;
}

.testi-nav{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  pointer-events:none;
}

.testi-nav span{
  width:42px;
  height:42px;
  border:1px solid #ddd;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:#fff;
  transition:.3s;
  pointer-events:auto;
}

.testi-nav span:hover{
  background:#22c55e;
  color:#fff;
  border-color:#22c55e;
}
@media(max-width:768px){
 .testi-nav{
  top: 90%;
 }
}
/*---------- testionial END ------------------------------------*/

/*---------- Team Section Start ---------------------------------*/
.sc-team{
  padding:40px 0;
  background:#f5f6f7;
  font-family:Poppins,sans-serif;
}

.team-head h2{
  font-size:38px;
  font-weight:700;
  color:#3a3a3a;
}

.team-tag{
  background:#eee;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  color:#888;
}

/* CARD */
.team-card{
  background:#fff;
  padding:12px;
  border-radius:18px;
  transition:.4s;
  position:relative;
  overflow:hidden;
}

.img-wrap{
  position:relative;
  border-radius:15px;
  overflow:hidden;
}

.img-wrap img{
  width:100%;
  border-radius:15px;
  transition:.4s;
}

/* SOCIAL HOVER */
.team-social{
  position:absolute;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transition:.4s;
}

.team-social a{
  width:35px;
  height:35px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#16a34a;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* INFO */
.team-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8px 5px;
}

.team-info h4{
  margin:0;
  font-size:17px;
  color:#333;
}

.team-info span{
  font-size:13px;
  color:#888;
  display:block;
}

.arrow{
  width:35px;
  height:35px;
  border-radius:50%;
  background:#f2f2f2;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

/* HOVER EFFECT */
.team-card:hover{
  transform:translateY(-8px);
}

.team-card:hover .img-wrap img{
  transform:scale(1.05);
}

.team-card:hover .team-social{
  left:20px;
  opacity:1;
}

.team-card:hover .arrow{
  background:#16a34a;
  color:#fff;
}
@media (max-width:525px) {
  .team-head h2{
    font-size: 25px;
  }
}
@media (max-width:768px) {
  .team-head h2{
    font-size: 28px;
  }
}

/*---------- Team Section END -----------------------------------*/

/*========================= about.HTML END ========================*/

/*========================= Service.HTML Start ====================*/
.service-sec{
  padding:20px 0;
  background:var(--light-bg);
  font-family:Poppins,sans-serif;
}
.service-a{
  text-decoration: none;
}
.service-text{
  margin: auto;
  text-align: center;
  max-width: 750px;
  margin-bottom: 40px;
}
@media (max-width:768px) {
  .service-title{
    padding: 20px;
  }
}
/* CARD */
.svc-card{
  background:#bfd0c6;
  border-radius:30px;
  padding:15px 25px;
  text-align:center;
  position:relative;
  overflow:hidden;
  height:100%;
  transition:.4s;
}

.svc-card:hover{
  transform:translateY(-8px);
}
.svc-card:hover h3{
  color: var(--secondary-color);
}
.svc-card:hover .svc-icon{
  color: var(--secondary-color);
}
.btn-readmore{
  transition: .3s;
}
.svc-card:hover .btn-readmore{
  color: var(--secondary-color);
  letter-spacing: 2px;
}

/* ICON */
.svc-icon{
  font-size:38px;
  color:var(--primary-color);
  margin-bottom:15px;
  display:block;
}

.svc-card h3{
  font-size:26px;
  color:#2d2d2d;
  margin-bottom:10px;
}

.svc-card p{
  color:#555;
  font-size:15px;
  line-height:1.7;
  max-width:260px;
  margin:0 auto 15px;
}


/* IMAGE CONTAINER */
.svc-img{
  position:relative;
  border-radius:22px;
  overflow:hidden;
}

/* IMAGE */
.svc-img img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:22px;
}

/* CURVE SHAPE */
.svc-img::before{
  content:"";
  position:absolute;
  top:-35px;
  left:50%;
  transform:translateX(-50%);
  width:180px;
  height:70px;
  background:#bfd0c6;
  border-bottom-left-radius:80px;
  border-bottom-right-radius:80px;
  z-index:2;
}

/* MOBILE */
@media(max-width:768px){
  .svc-img img{height:200px;}
}

/* CENTER IF SINGLE */
.row.justify-content-center > div:only-child{
  margin:auto;
}

/*========================= Service.HTML END ======================*/

/*========================= Service-detail.HTML Start ==============*/
.service-details{
  padding:30px 0 10px 0;
  background:var(--light-bg);
  font-family:Poppins,sans-serif;
}

/* LEFT BOX */
.service-list-box{
  background:#bfd0c6;
  padding:30px;
  border-radius:18px;
}

.service-list-box h4{
  font-size:22px;
  margin-bottom:20px;
  color:#333;
}

/* LIST */
.service-list{
  list-style:none;
  padding:0;
  margin:0;
}

.service-list li{
  background:#fff;
  padding:16px 18px;
  border-radius:12px;
  margin-bottom:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:500;
  color:#333;
  cursor:pointer;
  transition:.3s;
  border:1px solid #e5e5e5;
}

.service-list li i{
  color:var(--secondary-color);
}

/* ACTIVE */
.service-list li.active{
  background:var(--secondary-color);
  color:#fff;
  border:none;
}

.service-list li.active i{
  color:#fff;
}

/* HOVER */
.service-list li:hover{
  background:var(--secondary-color);
  color:#fff;
}

.service-list li:hover i{
  color:#fff;
}

/* RIGHT IMAGE */
.service-img-big img{
  width:100%;
  border-radius:20px;
  height:100%;
  object-fit:cover;
}

/*----------------------- Service section 2 -----------------------*/
.service-inner{
  padding:0 0 20px 0;
  background:var(--light-bg);
  font-family:Poppins,sans-serif;
}

/* CONTACT CARD */
.contact-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
}

.contact-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.contact-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:25px;
  background:rgba(0,0,0,0.55);
  color:#fff;
  text-align:center;
}

.contact-overlay i{
  background:#bfd0c6;
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:auto;
  margin-bottom:10px;
  transition: .3s;
}
.contact-overlay i:hover{
  color: var(--secondary-color);
  transform:translateY(-5px);
}

.contact-overlay h5{
  margin:5px 0 0;
}
.contact-overlay a{
  text-decoration: none;
  color: inherit;
}

/* FORM */
.form-box{
  background:#bfd0c6;
  padding:25px;
  margin-top:25px;
  border-radius:14px;
}

.form-box h5{
  margin-bottom:15px;
}

.form-box input,
.form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border:1px solid #ddd;
  border-radius:8px;
  outline:none;
}

.form-box textarea{
  height:100px;
}


/* RIGHT CONTENT */
.service-content{
  background:#fff;
  padding:30px;
  border-radius:14px;
}

.service-content h4{
  margin:20px 0 10px;
  color:#333;
}

.service-gallery{
  display:flex;
  gap:15px;
  margin:20px 0;
}

.service-gallery img{
  width:50%;
  border-radius:12px;
}

.service-points{
  padding-left:18px;
}

.service-points li{
  margin-bottom:8px;
}
/* MOBILE + TABLET ORDER */
@media (max-width:991px){

  .service-inner .row{
    display:flex;
    flex-direction:column;
  }

  /* LEFT CONTACT CARD FIRST */
  .service-inner .col-lg-4{
    order:2;
  }

  /* FORM SECOND */
  .form-box{
    order:3;
  }

  /* RIGHT CONTENT LAST */
  .service-inner .col-lg-8{
    order:1;
  }

}


/*------------------------Service detail FAQ START -------------------*/
.faq-section{
  background:#fff;
  font-family:Poppins,sans-serif;
  }
  
  .faq-line{
  width:80px;
  height:3px;
  background:#22c55e;
  margin-top:10px;
  border-radius:10px;
  }
  
  .faq-box .accordion-item{
    margin: auto;
  border:none;
  margin-bottom:15px;
  border-radius:14px;
  overflow:hidden;
  max-width: 750px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  }
  
  .accordion-button{
  padding:18px 22px;
  block-size: auto;
  font-weight:500;
  border:none;
  }
  .accordion-button:hover{
    background: var(--secondary-color);
    color: #fff;
  }
  
  .accordion-button:not(.collapsed){
  background:#22c55e;
  color:#fff;
  box-shadow:none;
  }
  
  .accordion-body{
  color:#555;
  line-height:1.7;
  }
  
/*------------------------Service detail FAQ END ---------------------*/

/*------------------------Service detail Pricing Start ---------------*/
.sc-pricing{
  background:#f7fafc;
  font-family:Poppins,sans-serif;
  }
  
  .price-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
  transition:.4s;
  height:100%;
  }
  
  .price-card:hover{
  transform:translateY(-10px);
  }
  
  .price-card h5{
  color:#22c55e;
  font-weight:600;
  margin-bottom:10px;
  }
  
  .price-card h2{
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
  }
  
  .price-card h2 span{
  font-size:16px;
  color:#777;
  }
  
  .price-card ul{
  list-style:none;
  padding:0;
  margin:25px 0;
  }
  
  .price-card ul li{
  margin-bottom:12px;
  color:#555;
  }
  
  /* ACTIVE CARD */
  .price-card.active{
 border: 2px solid var(--secondary-color);
  transform:scale(1.05);
  }
  
  
  /* POPULAR TAG */
  .popular{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--secondary-color);
  color:var(--primary-color);
  padding:6px 16px;
  font-size:12px;
  border-radius:20px;
  }
  .pricing-logo{
    width: 150px;
  }
  

/*------------------------Service detail Pricing END -----------------*/

/*========================= Service-detail.HTML End ================*/

/*========================= Blog.HTML Start ========================*/
.sc-blog{
  background:#f7f9fc;
  font-family:Poppins,sans-serif;
  }
  
  /* CARD */
  .blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:.4s;
  height:100%;
  display:flex;
  flex-direction:column;
  }
  
  .blog-card:hover{
  transform:translateY(-8px);
  }
  
  /* IMAGE */
  .blog-img{
  position:relative;
  }
  
  .blog-img img{
  width:100%;
  height:200px;
  object-fit:cover;
  }
  
  /* BADGE */
  .blog-badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#22c55e;
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  }
  
  /* CONTENT */
  .blog-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
  }
  
  .blog-content h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:#0B2D4F;
  }
  
  .blog-content p{
  color:#666;
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
  }
  
  /* READ MORE ALIGN FIX */
  .read-btn{
  margin-top:auto;
  }
  
  .read-btn a{
  text-decoration:none;
  font-weight:500;
  color:#22c55e;
  display:flex;
  align-items:center;
  gap:6px;
  }
  
  .read-btn a:hover{
  color:#0B2D4F;
  }
  /* TABLET CENTER LAST SINGLE CARD */
@media (min-width:768px) and (max-width:991px){

  .sc-blog .row{
    justify-content:center;
  }

  .sc-blog .blog-item{
    max-width:420px;
  }

}

  
/*========================= Blog.HTML End ==========================*/

/*========================= Blog-detail.HTML Start ========================*/
.blog-details{
  background:#f7f9fc;
  font-family:Poppins,sans-serif;
  }
  
  .blog-text h3{
  color:#0B2D4F;
  }
  
  .blog-search input{
  height:50px;
  border-radius:12px;
  }
  
  .blog-category select{
  height:50px;
  border-radius:12px;
  }
  
  .latest-news{
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  }
  .only{
    display: none;
  }
/* MOBILE + TABLET ORDER FINAL */
@media(max-width:991px){
  .only{
  display: inline;
  }
  .latest-news{
    display: none;
  }
  .blog-search{order:1;}
  .blog-category{order:2;}
  
  .blog-main-img{order:3;}
  .blog-text{order:4;}
  .row.g-3{order:5;}
  
  .latest-news{order:6;}   /* LAST */
  
  }
  
/*========================= Blog-detail.HTML End ==========================*/

/*=============================================================================================================
                                        Main All Page Style END
================================================================================================================*/

/*--------------- GLOBAL CTA SECTION ---------*/
.cta-image-section {
  position: relative;
  padding: 20px 0;
  background: url('https://videocdn.cdnpk.net/videos/a940a53a-0012-5054-aa3a-7f3b2949314f/horizontal/thumbnails/large.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

/* overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 79, 33, 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:575px) {
  .cta-image-section {
    padding: auto;
    background: url('https://videocdn.cdnpk.net/videos/a940a53a-0012-5054-aa3a-7f3b2949314f/horizontal/thumbnails/large.jpg')right center/cover no-repeat;
  }
  .cta-overlay{
    background:rgba(0, 0, 0, 0.33) ;
  }

  .cta-image-title {
    font-size: 20px;
  }

  .cta-image-section {
    text-align: center;
  }

  .cta-image-text {
    font-size: 15px;
  }

  .cta-btn-main {
    display: none;
  }
  .cta-btn-outline{
    font-size: 14px;
  }
}

/*-------------- 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, var(--primary-color),var(--secondary-color));
  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
  =====================================*/