* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* background: #f4f7fb; */
}


/* ===========================
   TOP BAR
=========================== */
.topbar {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #17379a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 55px;
  overflow: hidden;
}

.topbar-left {
  position: relative;
  background: #ff6b23;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 14px 55px 14px 40px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 0 100%);
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-left span {
  font-size: 15px;
  font-weight: 500;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
}

.topbar-social a:hover {
  background: #fff;
  color: #ff6b23;
  border-color: #fff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 10px 40px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  white-space: nowrap;
  min-width: 0;
}

.topbar-item span,
.topbar-item a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.topbar-item i {
  font-size: 15px;
  flex-shrink: 0;
}

/* ===========================
   MAIN HEADER / NAVBAR
=========================== */

.header {
  width: 90%;
  padding: 0;
  /* background: #fff; */
}

.nav-container {
  width: 100%;
  max-width: 1410px;
  margin: auto;
  background: #fff;
  border-radius: 0px 25px 25px 0px;
  display: flex;
  justify-content: flex-start; /* instead of space-between */

  gap: 50px;
  align-items: center;
  padding: 15px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 210px;
  display: block;
}

/* fallback text logo (used if no image) */
.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 700;
  color: #17379a;
}

.logo-text i {
  color: #ff6b23;
  font-size: 32px;
}

.logo-text .accent {
  color: #ff6b23;
}

.navbar {
  position: relative; /* anchors .navbar-close on mobile */
}

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

.navbar ul li {
  position: relative;
}

.navbar a {
  color: #17379a;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
  margin: 0;
}

.submenu li {
  width: 100%;
  padding: 0 18px;
}

.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: #17379a;
  line-height: 1.4;
  border-radius: 8px;
}

.submenu li a:hover {
  background: #f5f7ff;
  color: #ff6b23;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.search-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #dfe3ef;
  border-radius: 50%;
  font-size: 18px;
  color: #17379a;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: #17379a;
  color: #fff;
  border-color: #17379a;
}

.search-wrap {
  position: relative;
}

.search-box {
  position: absolute;
  top: 58px;
  right: 0;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 6px 6px 6px 20px;
  width: 300px;
  max-width: 85vw;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease;
  z-index: 1000;
}

.search-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #17379a;
  background: transparent;
}

.search-box input::placeholder {
  color: #9aa5c5;
}

.search-box button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6b23;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.talk-btn {
  background: #ff6b23;
  color: #fff !important;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.talk-btn:hover {
  background: #17379a;
}

.icon-toggle {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17379a;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  border: none;
}

.mobile-talk {
  display: none;
}

.menu-toggle {
  display: none;
}

/* ---------- Mobile panel close (X) button ---------- */
.navbar-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #17379a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10000;
}

.navbar-close:hover {
  background: #ff6b23;
}

/* ---------- 1200px: tighten spacing before things break ---------- */
@media (max-width: 1200px) {
  .nav-container {
    gap: 28px;
    padding: 15px 25px;
  }

  .navbar ul {
    gap: 20px;
  }

  .navbar a {
    font-size: 16px;
  }

  .nav-right {
    gap: 14px;
  }

  .talk-btn {
    padding: 13px 22px;
    font-size: 14px;
  }
}

/* ---------- 991px: collapse main nav into slide-in panel ---------- */
@media (max-width: 991px) {
  .nav-container {
    justify-content: space-between;
    padding: 15px 20px;
    gap: 0;
    position: relative;
  }

  .logo img {
    width: 170px;
  }

  .navbar {
    position: fixed;

    top: 0;

    right: -100%;

    width: 300px;

    max-width: 85%;

    height: 100vh;

    background: #fff;

    padding: 90px 25px 30px;

    transition: 0.35s;

    z-index: 9999;

    overflow-y: auto;

    display: block;
  }

  .navbar.show {
    right: 0;
  }

  .navbar-close {
    display: flex;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
  }

  .submenu {
    position: static;

    display: none !important;

    opacity: 1;

    visibility: visible;

    transform: none;

    box-shadow: none;

    background: #f8f8f8;

    padding: 0;

    min-width: 100%;
  }

  .dropdown.menu-open > .submenu {
    display: block !important;
  }

  .dropdown.menu-open > a i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .navbar ul li a i {
    transition: 0.25s ease;
  }

  .submenu li {
    border: none;
  }

  .submenu li a {
    padding: 12px 20px;
    font-size: 14px;
  }

  .nav-right .talk-btn {
    display: none;
  }

  .search-wrap {
    display: block;
  }

  .search-box {
    right: -40px;
  }

  .menu-toggle {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    background: #17379a;

    color: #fff;

    border-radius: 50%;

    cursor: pointer;
  }

  .mobile-talk {
    display: block;
    margin-top: 20px;
  }

  .mobile-talk .talk-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- 768px: mobile landscape ---------- */
@media (max-width: 768px) {
  /* topbar becomes two stacked rows */
  .topbar {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    overflow: visible; /* don't clip wrapped items */
  }

  .topbar-left {
    clip-path: none;
    /* justify-content: center; */
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

 

  .topbar-right {
    /* justify-content: center; */
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 20px;
    padding: 10px 16px;
    width: 100%;
  }

  /* let the clock/time item wrap instead of forcing nowrap off-screen */
  .topbar-item {
    white-space: normal;
    text-align: center;
  }

  .topbar-item span,
  .topbar-item a {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .nav-container {
    padding: 12px 16px;
    border-radius: 0;
  }

  .logo img {
    width: 140px;
  }

  .nav-right {
    gap: 10px;
  }

  .search-btn,
  .icon-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .search-box {
    right: -10px;
    width: 260px;
  }
}

/* ---------- 480px: small mobile ---------- */
@media (max-width: 480px) {
  .topbar-left span {
    font-size: 13px;
  }

  .topbar-item {
    font-size: 12px;
  }

  .logo img {
    width: 120px;
  }

  .navbar {
    width: 85vw;
    padding: 80px 18px 25px;
  }

  .search-box {
    width: 250px;
    right: -45px;
    padding: 5px 5px 5px 16px;
  }

  .search-box input {
    font-size: 14px;
  }
}



/*==============================
   HERO
==============================*/

.hero-section {
  position: relative;
  padding: 100px 0 45px;
  overflow: hidden;
  background: #f7f9ff;
}

.hero-container{
    width:80%;
    max-width:1410px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 90%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.8) 45%,
    rgba(255, 255, 255, 0.6) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

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

.hero-bg img {
  width: 100%;
  height: 88%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  position: relative; /* Important */
  z-index: 2;
}

.hero-left {
  flex: 0 0 48%;
  max-width: 64%;
  position: relative;
  z-index: 5;
  margin-left: -40px; /* Move left */
}

.hero-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  min-height: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px; /* Increase width */
  padding: 18px 20px;
  background: #edf2ff;
  color: #3764eb;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  white-space: nowrap; /* Keep text in one line */
}

.hero-badge i {
  font-size: 34px;
}

.hero-title {
  margin: 0 0 30px;
  font-weight: 800;
  line-height: 0.95;
}

.hero-title span {
  display: block;
}

/* Air Conditioning */
.hero-title .line1 {
  font-size: 65px;
  color: #2643a2;
  white-space: nowrap;
}

/* & Heating */
.hero-title .line2 {
  font-size: 60px;
  color: #ff6d2c;
}

/* Services */
.hero-title .line3 {
  font-size: 70px;
  color: #2643a2;
}

.hero-left p {
  margin-bottom: 30px;
  max-width: 620px;
  font-size: 20px;
  line-height: 38px;
  color: #5d6788;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}

.btn-orange,
.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 60px;
  padding: 0 25px;
  border-radius: 50px;
  background: #3764eb;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap; /* Prevent text from wrapping */
  transition: 0.3s ease;
}

.btn-orange {
  background: #ff6d2c;
}

.btn-blue {
  background: #3764eb;
}

.btn-orange:hover,
.btn-blue:hover {
  transform: translateY(-3px);
}

.btn-orange i,
.btn-blue i {
  font-size: 20px;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.hero-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}

.hero-info div i {
  color: #ff6d2c;
  font-size: 24px;
}

.quote-form {
  position: relative;
  /* margin-top:-70px; */
  z-index: 99;
}

.quote-form form {
  width: 100%;
  max-width: 1240px; /* Increase width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.input-box {
  flex: 1;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 25px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
}

.input-box i {
  color: #ff6d2c;
  font-size: 25px;
}

.input-box input,
.input-box select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #6b7693;
}

.input-box select {
  cursor: pointer;
}

.quote-form button {
  min-width: 190px;
  height: 72px;
  border: none;
  border-radius: 18px;
  background: #3764eb;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.quote-form button i {
  margin-left: 10px;
  transition: 0.3s;
}

.quote-form button:hover {
  background: #ff6d2c;
}

.quote-form button:hover i {
  transform: rotate(45deg);
}

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

/* Tablet*/

@media (max-width:991px){

.hero-section{
padding:70px 0 35px;
}

.hero-section::before{
width:100%;
height:100%;
}

.hero-bg img{
height:100%;
}

.hero-content{
flex-direction:column;
text-align:center;
gap:35px;
}

.hero-left,
.hero-right{
width:100%;
max-width:100%;
margin:0;
flex:none;
}

.hero-right{
min-height:auto;
}

.hero-badge{
font-size:18px;
padding:14px 22px;
min-width:auto;
}

.hero-badge i{
font-size:22px;
}

.hero-title .line1{
font-size:48px;
}

.hero-title .line2{
font-size:42px;
}

.hero-title .line3{
font-size:50px;
}

.hero-left p{
margin:0 auto 30px;
font-size:17px;
line-height:30px;
}

.hero-btns{
justify-content:center;
flex-wrap:wrap;
gap:18px;
}

.btn-orange,
.btn-blue{
min-width:200px;
height:55px;
font-size:16px;
}

.hero-info{
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.hero-info div{
font-size:18px;
}

.quote-form{
margin-top:40px;
}

.quote-form form{
flex-direction:column;
padding:25px;
gap:15px;
}

.input-box,
.quote-form button{
width:100%;
}

}


/*=========================================
        Mobile
=========================================*/

@media (max-width:767px){

.hero-section{
padding:50px 0 25px;
}

.hero-content{
gap:30px;
}

.hero-badge{
padding:10px 18px;
font-size:14px;
letter-spacing:1px;
}

.hero-badge i{
font-size:18px;
}

.hero-title{
line-height:1.15;
}

.hero-title .line1{
font-size:36px;
}

.hero-title .line2{
font-size:30px;
}

.hero-title .line3{
font-size:38px;
}

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

.hero-btns{
flex-direction:column;
gap:15px;
}

.btn-orange,
.btn-blue{
width:100%;
min-width:100%;
height:52px;
font-size:15px;
}

.hero-info{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.hero-info div{
font-size:15px;
}

.hero-info div i{
font-size:18px;
}

.quote-form form{
padding:20px;
border-radius:18px;
}

.input-box{
height:52px;
padding:10px 15px;
}

.input-box i{
font-size:18px;
}

.input-box input,
.input-box select{
font-size:15px;
}

.quote-form button{
height:52px;
font-size:16px;
}

}


/*=========================================
        Small Mobile
=========================================*/

@media (max-width:480px){

.hero-section{
padding:40px 0 20px;
}

.hero-badge{
font-size:12px;
padding:8px 14px;
}

.hero-title .line1{
font-size:28px;
}

.hero-title .line2{
font-size:24px;
}

.hero-title .line3{
font-size:30px;
}

.hero-left p{
font-size:14px;
line-height:24px;
}

.btn-orange,
.btn-blue{
height:48px;
font-size:14px;
}

.hero-info div{
font-size:14px;
}

.quote-form form{
padding:15px;
}

.input-box{
height:48px;
}

.input-box input,
.input-box select{
font-size:14px;
}

.quote-form button{
height:48px;
font-size:15px;
}

}



/*==============================
    CLIENT LOGOS
==============================*/

.trusted-section {
  padding: 20px 100px;
  background: #dcdcdc;
  overflow: hidden;
}

.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.google-review {
  min-width: 320px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-review img {
  border-radius: 15px;
  width: 80px;
}

.review-content .stars {
  color: #ff6d2c;
  font-size: 20px;
}

.review-content p {
  color: #667085;
  font-size: 18px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;

  animation: scrollLogo 25s linear infinite;
}

.logo-track img {
  border-radius: 15px;
  max-height: 80px;
  width: auto;
  transition: 0.3s;
  flex-shrink: 0;
}

.logo-track img:hover {
  transform: scale(1.1);
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Infinite Animation */

@keyframes scrollLogo {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*=========================================
        TRUSTED SECTION RESPONSIVE
=========================================*/

/* Tablet */
@media (max-width: 991px) {
  .trusted-section {
    padding: 30px 20px;
  }

  .trusted-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .google-review {
    justify-content: center;
    text-align: center;
    min-width: 100%;
  }

  .google-review img {
    width: 120px;
  }

  .review-content .stars {
    font-size: 24px;
  }

  .review-content p {
    font-size: 18px;
  }

  .logo-track {
    gap: 25px;
  }

  .logo-track img {
    max-height: 70px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trusted-section {
    padding: 20px 15px;
  }

  .trusted-wrapper {
    gap: 20px;
  }

  .google-review {
    /* flex-direction: column; */
    gap: 10px;
  }

  .google-review img {
    width: 110px;
  }

  .review-content .stars {
    font-size: 25px;
    text-align: center;
  }

  .review-content p {
    font-size: 22px;
    text-align: center;
  }

  .logo-track {
    gap: 20px;
    animation: scrollLogo 15s linear infinite;
  }

  .logo-track img {
    max-height: 70px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trusted-section {
    padding: 10px 10px;
  }

  .google-review img {
    width: 40px;
  }

  .review-content .stars {
    font-size: 16px;
  }

  .review-content p {
    font-size: 12px;
  }

  .logo-track {
    gap: 15px;
  }

  .logo-track img {
    max-height: 45px;
  }
}

/*==============================
    FEATURES SECTION
==============================*/
/*=========================================
            FEATURES SECTION
=========================================*/

.features-section {
  padding: 60px 0;
  background: #fff;
}

.future-container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/*=========================================
            FEATURE CARD
=========================================*/

.feature-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  transition: 0.4s ease;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

/* Hover Background */

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6d2c;
  transform: translateX(-100%);
  transition: 0.45s ease;
  z-index: -1;
}

.feature-card:hover::before {
  transform: translateX(0);
}

/*=========================================
                ICON
=========================================*/

.feature-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ff6d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.4s;
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  background: #fff;
  transform: rotate(360deg);
}

.feature-card:hover .feature-icon i {
  color: #ff6d2c;
}

/*=========================================
                CONTENT
=========================================*/

.feature-card h3 {
  font-size: 24px;
  color: #2743b3;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: 0.3s;
}

.feature-line {
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  margin-bottom: 20px;
  transition: 0.3s;
}

.feature-card p {
  color: #5b6478;
  font-size: 16px;
  line-height: 1.8;
  transition: 0.3s;
  margin: 0;
}

/*=========================================
                HOVER
=========================================*/

.feature-card:hover h3,
.feature-card:hover p {
  color: #fff;
}

.feature-card:hover .feature-line {
  background: rgba(255, 255, 255, 0.35);
}

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

/* Large Laptop */

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .features-section {
    padding: 50px 0;
  }

  .future-container {
    width: 94%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 22px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
    align-items: center;
    padding: 30px 25px;
  }

  .feature-line {
    width: 70%;
    margin: 0 auto 20px;
  }

  .feature-icon {
    margin-bottom: 25px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 15px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .features-section {
    padding: 40px 0;
  }

  .future-container {
    width: 95%;
  }

  .feature-card {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 24px;
  }

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

  .feature-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*=====================================
        ABOUT SECTION
======================================*/

.about-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/*=====================================
        LEFT IMAGE AREA
======================================*/

.about-images {
  position: relative;
  width: 48%;
  min-height: 760px;
}

/* Common Image */

.about-img,
.small-about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 180px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.about-img img,
.small-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* White Shine Effect */

.about-img::before,
.small-about-img::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 60%;
  height: 250%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(35deg);
  transition: 0.7s ease;
  z-index: 2;
}

/* Hover */

.about-img:hover::before,
.small-about-img:hover::before {
  top: 120%;
  left: 120%;
}

.about-img:hover img,
.small-about-img:hover img {
  transform: scale(1.08);
}

/* Top Image */

.about-img-one {
  width: 300px;
  height: 400px;
  right: 300px;
  top: -31px;
  border-radius: 160px 160px 0px 160px;
}

/* Bottom Image */

.about-img-two {
  width: 300px;
  height: 420px;
  right: -16px;
  bottom: 40px;
  border-radius: 0px 160px 160px 160px;
}

/*=====================================
        EXPERIENCE BADGE
======================================*/

.experience-badge {
  position: absolute;
  left: 366px;
  top: 70px;
  width: 166px;
  height: 160px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 5px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 10;
  animation: slideLeftRight 3s ease-in-out infinite;
}

/* First Inner Circle */
.experience-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #f5f7ff;
  border-radius: 50%;
}

/* Second Inner Circle */
.experience-badge::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 3px solid #f5f7ff;
  border-radius: 50%;
}

/*==============================
    Animated Background Circle
==============================*/

.experience-badge .circle-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(255, 109, 44, 0.25);
  animation: ripple 3s linear infinite;
  z-index: -1;
}

.experience-badge .circle-bg:nth-child(1) {
  animation-delay: 0s;
}

.experience-badge .circle-bg:nth-child(2) {
  animation-delay: 1s;
}

.experience-badge .circle-bg:nth-child(3) {
  animation-delay: 2s;
}

/* Ripple Animation */

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

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.experience-badge h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.experience-badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

/*=====================================
        DECORATIVE SHAPE
======================================*/

.about-shape {
  position: absolute;
  left: 80px;
  top: 120px;
  width: 420px;
  height: 420px;
  /* background: url("assests/home2_image/about3.jpg") center/contain no-repeat; */
  opacity: 0.25;
  z-index: -1;
  animation: rotateShape 20s linear infinite;
}

/*=====================================
        RIGHT CONTENT
======================================*/

.about-content {
  width: 52%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff1ea;
  color: #ff6d2c;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-tag i {
  font-size: 22px;
}

.about-content h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #2d46ad;
  font-weight: 800;
  margin-bottom: 23px;
}

.about-content h2 span {
  display: block;
}

.about-text {
  font-size: 20px;
  line-height: 1.5;
  color: #6c7898;
  margin-bottom: 35px;
}

/*=====================================
        FEATURE BOX
======================================*/

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.about-feature .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature .feature-icon i {
  font-size: 24px;
}

.feature-content h4 {
  font-size: 28px;
  color: #2d46ad;
  margin-bottom: 13px;
  font-weight: 700;
}

.feature-content p {
  color: #6b7896;
  font-size: 16px;
  line-height: 1.8;
}

.about-content hr {
  border: none;
  height: 2px;
  background: #ececec;
  margin: 40px 0;
}

/*=====================================
        BOTTOM AREA
======================================*/

.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.small-about-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.small-about-img img {
  width: 150%;
  height: 100%;
  object-fit: cover;
}

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

.about-list li {
  margin-left: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #2d46ad;
  font-size: 18px;
  font-weight: 500;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list i {
  color: #ff6d2c;
  font-size: 24px;
}

/*=====================================
        BUTTON
======================================*/

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6d2c;
  color: #fff;
  padding: 20px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.35s;
}

.about-btn:hover {
  background: #2d46ad;
  transform: translateY(-4px);
}

.about-btn i {
  transition: 0.35s;
}

.about-btn:hover i {
  transform: rotate(45deg);
}

/*=====================================
        ANIMATION
======================================*/

@keyframes slideLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

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

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

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

  .about-images,
  .about-content {
    width: 100%;
  }

  .about-images {
    min-height: 620px;
    margin-bottom: 30px;
  }

  .about-img-one {
    left: 20px;
  }

  .about-img-two {
    right: 20px;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }

  .about-content {
    text-align: center;
  }

  .section-tag {
    margin: auto auto 20px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-feature {
    justify-content: center;
    text-align: left;
  }

  .about-bottom {
    flex-direction: column;
    text-align: left;
  }

  .about-btn {
    margin: auto;
  }
}
/*=========================================
            MOBILE
=========================================*/

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 0px;
  }

  /*==========================
        IMAGES
==========================*/

  .about-images {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 650px;
    margin: 0 auto;
  }

  .about-img {
    position: absolute;
    width: 230px;
    height: 310px;
  }

  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Top Image */

  .about-img-one {
    top: -40px;
    left: 0;
    border-radius: 130px 130px 0 130px;
  }

  /* Bottom Image */

  .about-img-two {
    bottom: 95px;
    border-radius: 0 130px 130px 130px;
  }

  /*==========================
    EXPERIENCE BADGE
==========================*/

  .experience-badge {
    position: absolute;
    top: 30%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 20;
    animation: slideLeftRight 3s ease-in-out infinite;
  }

  .experience-badge h2 {
    font-size: 26px;
  }

  .experience-badge span {
    font-size: 11px;
    line-height: 1.3;
  }

  .experience-badge::before {
    inset: 6px;
  }

  .experience-badge::after {
    inset: 12px;
  }

  /* Hide Shape */

  .about-shape {
    display: none;
  }

  /*==========================
        CONTENT
==========================*/

  .about-content {
    width: 100%;
    text-align: start;
  }

  .section-tag {
    margin: 0 auto 20px;
  }

  .about-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.8;
  }

  /*==========================
      FEATURE BOX
==========================*/

  .about-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-feature .feature-icon {
    width: 70px;
    height: 70px;
  }

  .about-feature .feature-icon i {
    font-size: 28px;
  }

  .feature-content h4 {
    font-size: 22px;
  }

  .feature-content p {
    font-size: 16px;
  }

  /*==========================
      BOTTOM AREA
==========================*/

  .about-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .small-about-img {
    margin-top: -60px;
    width: 90px;
    height: 90px;
  }

  .about-list li {
    margin-left: 0;
    justify-content: center;
    font-size: 16px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }
}
/*=========================================
            SMALL MOBILE
=========================================*/

@media (max-width: 480px) {
  .about-images {
    max-width: 300px;
    height: 560px;
  }

  .about-img {
    width: 190px;
    height: 260px;
  }

  .about-img-one {
    left: 0;
  }

  .about-img-two {
    right: 0;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
  }

  .experience-badge h2 {
    font-size: 18px;
  }

  .experience-badge span {
    font-size: 9px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .section-tag {
    font-size: 15px;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .about-list li {
    margin-top: 44px;
    font-size: 15px;
  }

  .about-btn {
    font-size: 16px;
    padding: 15px;
  }
}

/*=====================================
        COUNTER SECTION
======================================*/

.counter-section {
  border-radius: 0px 30px 30px 0px;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  position: relative;
  padding: 30px 0;
  background: #ff6d2c;
  overflow: hidden;
  z-index: 1;
}

.counter-container {
  width: 80%;
  /* max-width: 1900px; */
  margin: 0 auto;
  /* padding: 0 60px; */
}

/* Wrapper */

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Counter Item */

.counter-item {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

/* Icon */

.counter-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  transition: 0.4s;
}

.counter-icon i {
  font-size: 30px;
  color: #ff6d2c;
  transition: 0.4s;
}

/* Hover */

.counter-item:hover .counter-icon {
  transform: rotate(360deg);
}

.counter-item:hover .counter-icon i {
  transform: scale(1.15);
}

/* Content */

.counter-content h2 {
  display: flex;
  align-items: flex-start;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
}

.counter-content h2 .counter {
  font-size: 36px;
  font-weight: 800;
}

.counter-content h2 sup {
  font-size: 34px;
  font-weight: 700;
  margin-left: 6px;
  top: 10px;
  position: relative;
}

.counter-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

/* Decorative Circles */

/* .counter-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  top: -280px;
  right: -120px;
} */

/* .counter-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  bottom: -220px;
  left: -120px;
} */

/* Floating Animation */

.counter-item {
  animation: counterFloat 4s ease-in-out infinite;
}

.counter-item:nth-child(2) {
  animation-delay: 0.3s;
}

.counter-item:nth-child(3) {
  animation-delay: 0.6s;
}

.counter-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes counterFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

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

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

/* Tablet */

@media (max-width: 991px) {
  .counter-section {
    width: 100%;
    padding: 50px 20px;
    border-radius: 20px;
  }

  .counter-container {
    width: 100%;
  }

  .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .counter-item {
    justify-content: flex-start;
  }

  .counter-icon {
    width: 65px;
    height: 65px;
  }

  .counter-icon i {
    font-size: 28px;
  }

  .counter-content h2 .counter {
    font-size: 30px;
  }

  .counter-content h2 sup {
    font-size: 20px;
  }

  .counter-content p {
    font-size: 16px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .counter-section {
    width: 100%;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .counter-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .counter-item {
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }

  .counter-icon i {
    font-size: 24px;
  }

  .counter-content h2 {
    margin-bottom: 6px;
  }

  .counter-content h2 .counter {
    font-size: 28px;
  }

  .counter-content h2 sup {
    font-size: 18px;
    top: 5px;
  }

  .counter-content p {
    font-size: 15px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .counter-section {
    width: 90%;
    padding: 35px 15px;
    border-radius: 0px 20px 20px 0px;
  }

  .counter-item {
    gap: 15px;
  }

  .counter-icon {
    width: 55px;
    height: 55px;
  }

  .counter-icon i {
    font-size: 22px;
  }

  .counter-content h2 .counter {
    font-size: 26px;
  }

  .counter-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*=========================================
            SERVICES SECTION
=========================================*/

.services-section {
  padding: 40px 0;
  background: #f8f9fd;
  overflow: hidden;
}

.service-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
}

/*=========================================
            HEADING
=========================================*/

.services-heading {
  text-align: center;
  margin-bottom: 70px;
}

.services-heading .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: #fff1ea;
  color: #ff6d2c;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-heading .section-tag i {
  font-size: 22px;
}

.services-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: #2f46b4;
  line-height: 1.15;
}

.services-heading h2 span {
  display: block;
}

/*=========================================
            SLIDER
=========================================*/

.services-slider {
  height: 585px;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
}

/*=========================================
            CARD
=========================================*/

.service-card {
  width: 310px;
  background: #fff;
  border-radius: 28px;
  padding: 25px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

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

/*=========================================
            TOP
=========================================*/

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.service-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ff6d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.service-icon i {
  color: #fff;
  font-size: 28px;
}

.service-number {
  font-size: 26px;
  font-weight: 800;
  color: #3148b9;
}

/*=========================================
         CONTENT
=========================================*/

.service-card h3 {
  font-size: 25px;
  color: #3148b9;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
}

.service-card p {
  color: #6d7692;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/*=========================================
            IMAGE
=========================================*/

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: 0.5s;
}

.service-link {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6d2c;
  font-size: 18px;
  text-decoration: none;
  transition: 0.35s;
}

.service-link:hover {
  background: #ff6d2c;
  color: #fff;
}

/*=========================================
            ARROWS
=========================================*/

.service-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: 0.35s;
  z-index: 10;
}

.service-arrow:hover {
  background: #3148b9;
}

.service-arrow.prev {
  left: -25px;
}

.service-arrow.next {
  right: -25px;
}

/*=========================================
        HOVER EFFECTS
=========================================*/

.service-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: #3148b9;
  left: -180%;
  bottom: -180%;
  transform: rotate(-45deg);
  transition: all 0.6s ease;
  z-index: -1;
}

.service-card:hover::before {
  left: -20%;
  bottom: -20%;
}

.service-card > * {
  position: relative;
  z-index: 2;
}
/* Text */

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
  color: #fff;
}

/* Icon */

.service-card:hover .service-icon {
  background: #fff;
  transform: rotate(360deg);
}

.service-card:hover .service-icon i {
  color: #ff6d2c;
}

/* Image */

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

/* Button */

.service-card:hover .service-link {
  background: #ff6d2c;
  color: #fff;
}

.service-link i {
  transition: 0.35s;
}

.service-card:hover .service-link i {
  transform: rotate(45deg);
}

/* Active Card */

.service-card.active::before {
  display: none;
}

.service-card.active:hover {
  transform: translateY(-10px);
}

.service-card.active:hover .service-icon {
  background: #fff;
}

.service-card.active:hover .service-icon i {
  color: #ff6d2c;
}

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

@media (max-width: 991px) {
  .services-section {
    padding: 60px 0;
  }

  .service-container {
    width: 100%;
    padding: 0 20px;
  }

  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 34px;
  }

  .services-heading .section-tag {
    font-size: 17px;
    padding: 10px 18px;
  }

  .services-slider {
    gap: 20px;
    height: auto;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 10px);
    padding: 22px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-image img {
    height: 220px;
    object-fit: cover;
  }

  .service-arrow {
    display: none;
  }
}

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

  .service-container {
    width: 100%;
    padding: 0 15px;
  }

  .services-heading {
    margin-bottom: 35px;
  }

  .services-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .services-heading .section-tag {
    font-size: 16px;
    padding: 8px 16px;
  }

  .services-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: auto;
  }

  .service-card {
    width: 100%;
    padding: 20px;
  }

  .card-top {
    margin-bottom: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-number {
    font-size: 22px;
  }

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

  .service-card p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .service-image img {
    height: 220px;
  }

  .service-link {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .service-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 0;
  }

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

  .services-heading .section-tag {
    font-size: 14px;
  }

  .service-card {
    padding: 18px;
    border-radius: 20px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
  }

  .service-icon i {
    font-size: 20px;
  }

  .service-number {
    font-size: 18px;
  }

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

  .service-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-image {
    border-radius: 15px;
  }

  .service-image img {
    height: 200px;
    border-radius: 15px;
  }

  .service-link {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/*==========================================
        PORTFOLIO SECTION
==========================================*/

.portfolio-section {
  position: relative;
  padding: 110px 0 30px;
  overflow: hidden;
  background: #ffffff;
}

/* Background Image */

.portfolio-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 530px;
  z-index: 1;
}

.portfolio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1.9px;
}

/* Blue Overlay */

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 530px;
  background: rgba(13, 64, 143, 0.9);
  z-index: 2;
}

/* Content */

.portfolio-container {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/* .portfolio-section .portfolio-container{
    width:90%;
    max-width:1320px;
    margin:auto;
    position:relative;
    overflow:visible;
    z-index:5;
} */

/*==========================================
            HEADING
==========================================*/

.portfolio-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* Tag */

.portfolio-tag {
  margin-top: -26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 26px;
  font-weight: 600;
  color: #ff6d1f;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-tag span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6d1f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

/* Heading */

.portfolio-heading h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
}

/*==========================================
            SLIDER
==========================================*/

.portfolioSwiper {
  position: relative;
  overflow: visible;
  margin-top: 50px;
  z-index: 10;
}

.portfolioSwiper .swiper-track {
  overflow: hidden;
  width: 100%;
}

.portfolioSwiper .swiper-wrapper {
  display: flex;
  gap: 28px;
  transition: transform 0.55s ease;
}

.portfolioSwiper .swiper-slide {
  flex: 0 0 calc(25% - 21px);
}

/*==========================================
        NAVIGATION BUTTONS
==========================================*/

.portfolio-prev,
.portfolio-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff6d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: 0.35s;
  z-index: 50;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.portfolio-prev {
  left: -18px;
}

.portfolio-next {
  right: -18px;
}

.portfolio-prev:hover,
.portfolio-next:hover {
  background: #ffffff;
  color: #ff6d1f;
  transform: translateY(-50%) scale(1.08);
}

/*==========================================
        PORTFOLIO CARD
==========================================*/

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

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

/*==========================================
            IMAGE
==========================================*/

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 380px;
  border-radius: 28px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Dark Hover Overlay */

.portfolio-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  z-index: 1;
}

.portfolio-card:hover .portfolio-image::before {
  background: rgba(0, 0, 0, 0.35);
}

/* ===========================
   Plus Button
=========================== */

.portfolio-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 90px;
  height: 90px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  font-size: 34px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 20;
}

.portfolio-card:hover .portfolio-plus {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-plus:hover {
  background: #ff6d1f;
  color: #fff;
}

/* ===========================
   Lightbox
=========================== */

.portfolio-lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999999;
}

.portfolio-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
}

/*==========================================
        PORTFOLIO ARROW
==========================================*/

.portfolio-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  z-index: 20;
  transition: 0.35s ease;
}

.portfolio-arrow i {
  font-size: 22px;
  transition: all 0.35s ease;
}

/* Default */
.portfolio-arrow i {
  transform: translate(0, 0);
}

/* Card Hover */
.portfolio-card:hover .portfolio-arrow {
  background: #ff6d1f;
  color: #fff;
}

/* Arrow Animation */
.portfolio-card:hover .portfolio-arrow i {
  transform: translate(4px, -4px);
}

/* Direct Hover */
.portfolio-arrow:hover {
  background: #ff6d1f;
  color: #fff;
}

/*==========================================
        CONTENT BOX
==========================================*/

/* .portfolio-content{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: #fff;
    border-radius: 22px;
    padding: 15px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    transition: .35s;
    z-index: 10;

} */

/* .portfolio-card:hover .portfolio-content{
    transform: translateY(-8px);
} */

/* Default */
.portfolio-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  background: #fff;
  border-radius: 22px;
  padding: 12px 30px;
  transition: 0.35s;
}

.portfolio-category {
  color: #ff6d1f;
}

.portfolio-content h3 a {
  color: #0e3584;
}

/* Active card */
.portfolio-card.active .portfolio-content {
  background: #ff6d1f;
}

.portfolio-card.active .portfolio-category {
  color: #fff;
}

.portfolio-card.active .portfolio-content h3 a {
  color: #fff;
}

/*==========================================
            CATEGORY
==========================================*/

.portfolio-category {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ff6d1f;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/*==========================================
            TITLE
==========================================*/

.portfolio-content h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.portfolio-content h3 a {
  color: #0e3584; /* brand blue, matches your reference image */
  text-decoration: none;
  transition: 0.3s;
}

.portfolio-content h3 a:hover {
  color: #ff6d1f;
}

/*==========================================
        CARD SHADOW
==========================================*/

.portfolio-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -18px;
  height: 25px;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(22px);
  border-radius: 50%;
  z-index: -1;
}

/*==========================================
        IMAGE ZOOM
==========================================*/

.portfolio-card:hover img {
  filter: brightness(1.05);
}

/*==========================================
        SMOOTH TRANSITIONS
==========================================*/

.portfolio-card,
.portfolio-image,
.portfolio-image img,
.portfolio-arrow,
.portfolio-content {
  transition: all 0.4s ease;
}

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

/*==========================================
            TABLET (992px)
==========================================*/

/* Tablet */
@media (max-width: 991px) {
  .portfolio-section {
    padding: 90px 0 30px;
  }

  .portfolio-bg,
  .portfolio-overlay {
    height: 450px;
  }

  .portfolio-heading {
    margin-bottom: 40px;
  }

  .portfolio-heading h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .portfolio-tag {
    font-size: 18px;
    padding: 8px 20px;
  }

  .portfolio-tag span {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .portfolioSwiper {
    margin-top: 40px;
  }

  .portfolioSwiper .swiper-slide {
    flex: 0 0 calc(50% - 14px);
  }

  .portfolio-image {
    height: 340px;
  }

  .portfolio-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 22px;
  }

  .portfolio-content h3 {
    font-size: 20px;
  }

  .portfolio-prev,
  .portfolio-next {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .portfolio-prev {
    left: -8px;
  }

  .portfolio-next {
    right: -8px;
  }
}

/*==========================================
        MOBILE (768px and below)
==========================================*/
@media (max-width: 768px) {
  .portfolio-section {
    padding: 70px 0 30px;
  }

  .portfolio-bg,
  .portfolio-overlay {
    height: 320px;
  }

  .portfolio-container {
    width: 100%;
    padding: 0 15px;
  }

  .portfolioSwiper {
    margin-top: 30px;
    overflow: hidden;
  }

  .portfolioSwiper .swiper-track {
    overflow: hidden;
  }

  .portfolioSwiper .swiper-wrapper {
    gap: 0;
  }

  .portfolioSwiper .swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 8px;
  }

  .portfolio-card {
    width: 100%;
  }

  .portfolio-image {
    height: 330px;
  }

  .portfolio-content {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px 18px;
    border-radius: 18px;
  }

  .portfolio-category {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .portfolio-content h3 {
    font-size: 22px;
  }

  .portfolio-arrow {
    width: 48px;
    height: 48px;
    top: 15px;
    right: 15px;
  }

  .portfolio-arrow i {
    font-size: 18px;
  }

  .portfolio-plus {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .portfolio-prev,
  .portfolio-next {
    width: 45px;
    height: 45px;
    font-size: 18px;
    z-index: 100;
  }

  .portfolio-prev {
    left: 10px;
  }

  .portfolio-next {
    right: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .portfolio-heading h2 {
    font-size: 20px;
  }

  .portfolio-image {
    height: 280px;
  }

  .portfolio-content {
    padding: 10px 16px;
  }

  .portfolio-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .portfolio-category {
    font-size: 11px;
  }

  .portfolio-arrow {
    width: 42px;
    height: 42px;
  }

  .portfolio-arrow i {
    font-size: 16px;
  }

  .portfolio-plus {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}
/*==========================================
        WORK PROCESS SECTION
==========================================*/
.working-process {
  padding: 20px 0;
  background: #fff;
}

.work-container {
  width: 180%;
  max-width: 1270px;
  margin: auto;
  padding: 0 15px;
}

/* Heading */

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 40px;
  background: #fff1e8;
  color: #ff6b2c;
  font-weight: 600;
  font-size: 22px;
}

.sub-title i {
  width: 28px;
  height: 28px;
  background: #ff6b2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.section-heading h2 {
  margin-top: 25px;
  color: #2943b8;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
}

/* Process */

.process-row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex: 1;
}

.image {
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* White Shine Effect */

/* Left Shine */
.image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 35%;
  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0)
  );

  transform: translateX(-50%) skewX(-25deg);
  opacity: 0;
  z-index: 2;
}

/* Right Shine */
.image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 35%;
  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0)
  );

  transform: translateX(-50%) skewX(25deg);
  opacity: 0;
  z-index: 2;
}

/* Hover */
.image:hover::before {
  animation: shineLeft 0.9s ease forwards;
}

.image:hover::after {
  animation: shineRight 0.9s ease forwards;
}

.image:hover img {
  transform: scale(1.05);
}

/* Left Animation */
@keyframes shineLeft {
  0% {
    opacity: 0;
    left: 50%;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: -40%;
  }
}

/* Right Animation */
@keyframes shineRight {
  0% {
    opacity: 0;
    left: 50%;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 140%;
  }
}
.content {
  width: 190px;
  position: relative;
}

.number {
  position: absolute;
  right: -10px;
  top: -25px;
  font-size: 74px;
  color: #ffb88e;
  font-weight: 800;
  opacity: 0.28;
  z-index: -1;
}

.content h3 {
  color: #2943b8;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.content p {
  color: #6f7489;
  line-height: 1.8;
  font-size: 16px;
}
/*==========================================
        RESPONSIVE
==========================================*/

/* Tablet */
@media (max-width: 991px) {
  .working-process {
    padding: 70px 0;
  }

  .work-container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .sub-title {
    font-size: 18px;
    padding: 8px 18px;
  }

  .sub-title i {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .process-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .process-item {
    gap: 18px;
  }

  .image {
    width: 85px;
    height: 85px;
    min-width: 85px;
  }

  .number {
    font-size: 60px;
    right: 0;
    top: -18px;
  }

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

  .content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .working-process {
    padding: 60px 0;
  }

  .work-container {
    width: 100%;
    padding: 0 18px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .sub-title {
    font-size: 16px;
    padding: 8px 16px;
  }

  .sub-title i {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .process-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .process-item {
    align-items: flex-start;
  }

  .image {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }

  .content {
    width: 100%;
  }

  .number {
    font-size: 52px;
    top: -15px;
    right: 5px;
  }

  .content h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .working-process {
    padding: 30px 0;
  }

  .work-container {
    padding: 0 15px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .sub-title {
    font-size: 14px;
    padding: 7px 14px;
  }

  .sub-title i {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .process-item {
    gap: 15px;
  }

  .image {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .number {
    font-size: 42px;
  }

  .content h3 {
    font-size: 17px;
  }

  .content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*==========================================
        CLIENT VIDEO SECTION
==========================================*/

.client-video-section {
  position: relative;
  width: 100%;
  overflow: visible;
  background: #fff;
  /* padding: 0 0 130px; */
}

/*==============================
        BACKGROUND
===============================*/

.video-bg {
  position: relative;
  width: 100%;
  height: 550px;
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*==============================
        OVERLAY
===============================*/

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 550px;
  background: rgba(0, 0, 0, 0.45);
}

/*==============================
        PLAY BUTTON
===============================*/

.video-content {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 50;
}

.video-play {
  position: relative;
  width: 100px;
  height: 100px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ff6d2c;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 34px;
  transition: 0.35s;
  overflow: visible;
}

.video-play:hover {
  transform: scale(1.08);

  background: #0d4a91;
}

.video-play i {
  position: relative;
  z-index: 10;
}

/*==============================
      PULSE ANIMATION
===============================*/

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 109, 44, 0.35);
  animation: pulse 2s infinite;
}

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

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/*==============================
        CLIENT BOX
===============================*/

.client-slider {
  position: relative;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: #fff;
  border-radius: 30px;
  /* padding: 10px 0; */
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/*==============================
        CLIENT TRACK
===============================*/

.client-track {
  display: flex;
  width: fit-content;
  animation: marquee 18s linear infinite;
}

.client-slider:hover .client-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-220px * 6));
  }
}
/*==============================
        CLIENT ITEM
===============================*/

.client-item {
  height: 110px;
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
}

.client-item img {
  max-width: 140px;
  height: auto;
}

.client-item:hover img {
  transform: scale(1.08);
}

/*==============================
        POPUP
===============================*/

.video-popup {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.9);

  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s;

  z-index: 99999;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-content {
  width: 90%;
  max-width: 900px;

  position: relative;
}

.video-popup iframe {
  width: 100%;
  height: 500px;

  border: none;

  border-radius: 15px;
}

.video-close {
  position: absolute;

  right: -15px;
  top: -15px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #ff6d2c;

  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  font-size: 20px;
}

/*=====================================
        Tablet
======================================*/
@media (max-width: 991px) {
  .video-bg,
  .video-overlay {
    height: 380px;
  }

  .video-content {
    top: 45%;
  }

  .video-play {
    width: 75px;
    height: 75px;
    font-size: 24px;
  }

  .client-slider {
    width: 94%;
    top: -50px;
    border-radius: 20px;
  }

  .client-item {
    width: 160px;
    height: 80px;
    padding: 0 15px;
  }

  .client-item img {
    max-width: 110px;
  }

  .video-popup iframe {
    height: 380px;
  }
}

/*=====================================
        Mobile
======================================*/
@media (max-width: 767px) {
  .video-bg,
  .video-overlay {
    height: 280px;
  }

  .video-content {
    top: 42%;
  }

  .video-play {
    width: 65px;
    height: 65px;
    font-size: 20px;
  }

  .client-slider {
    width: 95%;
    top: -35px;
    border-radius: 16px;
  }

  .client-track {
    animation-duration: 15s;
  }

  .client-item {
    width: 130px;
    height: 70px;
    padding: 0 10px;
  }

  .client-item img {
    max-width: 90px;
  }

  .video-popup iframe {
    height: 240px;
  }
}

/*=====================================
        Small Mobile
======================================*/
@media (max-width: 480px) {
  .video-bg,
  .video-overlay {
    height: 230px;
  }

  .video-content {
    top: 40%;
  }

  .video-play {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .client-slider {
    width: 96%;
    top: -25px;
    border-radius: 14px;
  }

  .client-track {
    animation-duration: 12s;
  }

  .client-item {
    width: 110px;
    height: 60px;
    padding: 0 8px;
  }

  .client-item img {
    max-width: 75px;
  }

  .video-popup iframe {
    height: 200px;
  }
}

/*=========================================
        TEAM SECTION
=========================================*/
.team-section {
  padding: 20px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.team-section .team-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.team-heading {
  text-align: center;
  margin-bottom: 40px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff2eb;
  color: #ff6d2c;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 25px;
}

.team-tag i {
  width: 40px;
  height: 40px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.team-heading h2 {
  font-size: 30px !important;
  line-height: 1.15;
  font-weight: 700;
  color: #2d43a6;
  margin: 0;
}

/*=========================================
        GRID
=========================================*/

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/*=========================================
        CARD
=========================================*/

.team-card {
  position: relative;
  transition: 0.4s ease;
}

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

/*=========================================
        IMAGE
=========================================*/

.team-image {
  position: relative;
  border-radius: 25px 25px 100px 25px;
  overflow: hidden;
}

.team-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.team-card:hover .team-image::before {
  opacity: 1;
}

.team-image img {
  width: 100%;
  height: 318px !important;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

/*=========================================
        CONTENT
=========================================*/

.team-content {
  padding-top: 14px;
}

.team-content h3 {
  margin: 0;
  font-size: 22px !important;
  font-weight: 700;
  color: #2d43a6;
  transition: 0.3s;
}

.team-card:hover h3 {
  color: #ff6d2c;
}

.team-content p {
  margin-top: 6px;
  color: #ff6d2c;
  font-size: 16px;
  font-weight: 500;
}

/*=========================================
        TEAM SOCIAL
=========================================*/

.team-social {
  position: absolute;
  right: -10px;
  bottom: 62px;
  z-index: 10;
}

.team-share {
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(255, 109, 44, 0.35);
}

.team-share:hover {
  background: #2d43a6;
  transform: rotate(45deg);
}

.team-social-links {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s;
}

.team-social.active .team-social-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.team-social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d2c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.team-social-links a:hover {
  background: #ff6d2c;
  color: #fff;
  transform: translateY(-4px);
}

/*=========================================
        991px
=========================================*/
@media (max-width: 991px) {
  .team-section {
    padding: 70px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-heading {
    margin-bottom: 35px;
  }

  .team-heading h2 {
    font-size: 36px !important;
    line-height: 1.3;
  }

  .team-tag {
    font-size: 20px;
    padding: 8px 18px;
  }

  .team-tag i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .team-image {
    border-radius: 20px 20px 80px 20px;
  }

  .team-image img {
    height: 320px !important;
  }

  .team-social {
    right: -8px;
    bottom: 50px;
  }

  .team-share {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .team-social-links a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/*=========================================
        767px
=========================================*/
@media (max-width: 767px) {
  .team-section {
    padding: 60px 0;
  }

  .team-container {
    width: 92%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .team-heading {
    margin-bottom: 30px;
  }

  .team-heading h2 {
    font-size: 30px !important;
    line-height: 1.35;
  }

  .team-tag {
    font-size: 18px;
    padding: 8px 16px;
  }

  .team-tag i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .team-image {
    border-radius: 22px 22px 90px 22px;
  }

  .team-image img {
    height: 420px !important;
  }

  .team-content h3 {
    font-size: 24px !important;
  }

  .team-content p {
    font-size: 17px;
  }

  .team-social {
    right: -6px;
    bottom: 55px;
  }

  .team-share {
    width: 56px;
    height: 56px;
  }

  .team-social-links {
    bottom: 65px;
    gap: 10px;
  }
}

/*=========================================
        575px
=========================================*/
@media (max-width: 575px) {
  .team-section {
    padding: 20px 0;
  }

  .team-container {
    width: 95%;
  }

  .team-heading h2 {
    font-size: 16px !important;
  }

  .team-tag {
    font-size: 14px;
    padding: 8px 15px;
  }

  .team-tag i {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .team-grid {
    gap: 30px;
  }

  .team-image {
    border-radius: 20px 20px 80px 20px;
  }

  .team-image img {
    height: 340px !important;
  }

  .team-content {
    padding-top: 12px;
  }

  .team-content h3 {
    font-size: 21px !important;
  }

  .team-content p {
    font-size: 15px;
  }

  .team-social {
    right: -5px;
    bottom: 45px;
  }

  .team-share {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .team-social-links {
    bottom: 60px;
    gap: 8px;
  }

  .team-social-links a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/*=========================================
        PRICING SECTION
=========================================*/

.pricing-section {
  padding: 35px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.pricing-heading {
  text-align: center;
  margin-bottom: 45px;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff2eb;
  color: #ff6d2c;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 22px;
}

.pricing-tag i {
  width: 40px;
  height: 40px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.pricing-heading h2 {
  color: #2845a7;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

/*=========================================
        GRID
=========================================*/

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/*=========================================
        CARD
=========================================*/

.pricing-card {
  background: #fff6f1;
  border-radius: 30px;
  padding: 10px 28px;
  transition: 0.35s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/*=========================================
        ICON
=========================================*/

.pricing-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ff6d2c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.35s;
}

.pricing-icon i {
  color: #fff;
  font-size: 30px;
  transition: 0.35s;
}

/* Hover Effect */

.pricing-card:hover .pricing-icon {
  background: #2d43a6;
  transform: rotate(15deg) scale(1.08);
}

.pricing-card:hover .pricing-icon i {
  color: #ff6d2c;
}

/*=========================================
        TITLE
=========================================*/

.pricing-card h3 {
  color: #2845a7;
  font-size: 28px;
  margin-bottom: 15px;
}

.pricing-card p {
  color: #7a7a7a;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 28px;
}

/*=========================================
        PRICE
=========================================*/

.price-box {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 30px;
}

.price-box h4 {
  color: #2845a7;
  font-size: 30px;
  margin: 0;
}

.price-box span {
  font-size: 18px;
  color: #2845a7;
}

/*=========================================
        LIST
=========================================*/

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

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #666;
  font-size: 16px;
}

.pricing-list i {
  color: #ff6d2c;
}

/*=========================================
        BUTTON
=========================================*/

.pricing-btn {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #356df3;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}

.pricing-btn:hover {
  background: #ff6d2c;
  color: #fff;
}

.pricing-btn i {
  transition: 0.35s;
}

.pricing-btn:hover i {
  transform: translate(4px, -4px);
}

/*=========================================
        ACTIVE CARD
=========================================*/

.pricing-card.active {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(53, 109, 243, 0.15);
}

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

/* Tablet */
@media (max-width: 991px) {
  .pricing-section {
    padding: 70px 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .pricing-heading {
    margin-bottom: 35px;
  }

  .pricing-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .pricing-tag {
    font-size: 20px;
    padding: 8px 18px;
  }

  .pricing-tag i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
  }

  .pricing-icon i {
    font-size: 26px;
  }

  .pricing-card h3 {
    font-size: 22px;
  }

  .pricing-card p {
    font-size: 14px;
  }

  .price-box h4 {
    font-size: 28px;
  }

  .pricing-list li {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-container {
    width: 92%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-heading {
    margin-bottom: 30px;
  }

  .pricing-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .pricing-tag {
    font-size: 18px;
    padding: 8px 16px;
  }

  .pricing-tag i {
    width: 34px;
    height: 34px;
  }

  .pricing-card {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .pricing-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
  }

  .pricing-icon i {
    font-size: 24px;
  }

  .pricing-card h3 {
    font-size: 24px;
  }

  .pricing-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .price-box {
    padding: 14px;
  }

  .price-box h4 {
    font-size: 26px;
  }

  .price-box span {
    font-size: 16px;
  }

  .pricing-list li {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pricing-section {
    padding: 30px 0;
  }

  .pricing-heading h2 {
    font-size: 19px;
  }

  .pricing-tag {
    font-size: 16px;
  }

  .pricing-tag i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .pricing-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .pricing-icon {
    width: 54px;
    height: 54px;
  }

  .pricing-icon i {
    font-size: 22px;
  }

  .pricing-card h3 {
    font-size: 21px;
  }

  .pricing-card p {
    font-size: 13px;
  }

  .price-box {
    padding: 12px;
  }

  .price-box h4 {
    font-size: 24px;
  }

  .price-box span {
    font-size: 15px;
  }

  .pricing-list li {
    font-size: 14px;
    gap: 10px;
  }

  .pricing-btn {
    font-size: 14px;
    padding: 13px 18px;
  }
}

/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: #184a99;
  z-index: 1;
}

/* Background Overlay */

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("assets/home2_image/testimonial_bg.webp") center center/cover
    no-repeat; */
  opacity: 0.08;
  z-index: -2;
}

/* Grid Lines */

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 280px 280px;
  z-index: -1;
}

/*=========================================
        CONTAINER
=========================================*/

.testimonial-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.testimonial-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.testimonial-tag i {
  width: 38px;
  height: 38px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-heading h2 {
  color: #fff;
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

/*=========================================
        SLIDER
=========================================*/

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: 0.5s ease;
}

/*=========================================
        CARD
=========================================*/
.testimonial-card {
  flex: 0 0 calc(25% - 23px);
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  overflow: visible;
  transition: 0.4s ease;
  z-index: 2;
}

/* Orange Bottom Design */

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 26px;
  right: 15px;
  bottom: -12px;
  background: #ff6d2c;
  transform: skewX(-28deg);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: -1;
}

/* Small Right Piece */

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 26px;
  right: 0;
  bottom: -6px;
  background: #ff6d2c;
  border-radius: 0 0 22px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: -1;
}

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

.testimonial-card:hover::after,
.testimonial-card:hover::before {
  opacity: 1;
  visibility: visible;
}
/*=========================================
        QUOTE
=========================================*/

.quote-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 54px;
  height: 54px;
  background: #ff6d2c;
  border-radius: 0 30px 0 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
}

/*=========================================
        RATING
=========================================*/

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.rating i {
  color: #ffa800;

  font-size: 18px;
}

/*=========================================
        CONTENT
=========================================*/

.testimonial-card p {
  color: #6b7280;
  line-height: 2;
  font-size: 13px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

/*=========================================
        CLIENT
=========================================*/

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  color: #2d43a6;
  font-size: 20px;
}

.client-info span {
  color: #ff6d2c;
  font-size: 15px;
}

/*=========================================
        DOTS
=========================================*/

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  width: 30px;
  border-radius: 20px;
  background: #ff6d2c;
}
/*=========================================
        RESPONSIVE
=========================================*/

/* Large Laptop */

@media (max-width: 1200px) {
  .testimonial-heading h2 {
    font-size: 48px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    padding: 25px;
  }

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

  .client-info span {
    font-size: 14px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-container {
    width: 94%;
  }

  .testimonial-heading {
    margin-bottom: 45px;
  }

  .testimonial-heading h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .testimonial-tag {
    font-size: 15px;
    padding: 8px 18px;
  }

  .testimonial-tag i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    padding: 22px;
  }

  .quote-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

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

  .client-info img {
    width: 55px;
    height: 55px;
  }

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

  .client-info span {
    font-size: 14px;
  }
}

/*==========================
 Mobile (767px)
==========================*/

@media (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-container {
    width: 90%;
    margin: auto;
  }

  .testimonial-heading {
    margin-bottom: 30px;
  }

  .testimonial-heading h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .testimonial-tag {
    padding: 6px 15px;
    font-size: 13px;
  }

  .testimonial-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .testimonial-slider {
    overflow: hidden;
  }

  .testimonial-track {
    gap: 15px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 2px);
    padding: 18px;
    border-radius: 20px;
  }

  .quote-icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
    border-radius: 0 20px 0 20px;
  }

  .rating {
    margin-bottom: 12px;
  }

  .rating i {
    font-size: 14px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .client-info {
    gap: 10px;
  }

  .client-info img {
    width: 46px;
    height: 46px;
  }

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

  .client-info span {
    font-size: 13px;
  }

  .testimonial-dots {
    margin-top: 28px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-heading h2 {
    font-size: 25px;
  }

  .testimonial-tag {
    font-size: 13px;
    padding: 7px 15px;
  }

  .testimonial-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .testimonial-card {
    padding: 18px;
    border-radius: 20px;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .client-info img {
    width: 45px;
    height: 45px;
  }

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

  .client-info span {
    font-size: 12px;
  }

  .testimonial-dots span {
    width: 10px;
    height: 10px;
  }

  .testimonial-dots span.active {
    width: 24px;
  }
}

/*=========================================
        GALLERY SECTION
=========================================*/

.gallery-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
}

.gallery-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.gallery-heading {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff3ec;
  padding: 10px 22px;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 22px;
}

.gallery-tag i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-heading h2 {
  font-size: 45px;
  color: #2d43a6;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

/*=========================================
        GRID
=========================================*/

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.gallery-right {
  display: grid;

  gap: 24px;
}

/*=========================================
        IMAGE BOX
=========================================*/

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.6s;
}

/* Sizes */

.gallery-small {
  height: 400px;
}

.gallery-large {
  height: 530px;
}

.gallery-half {
  height: 253px;
}

/*=========================================
        HOVER
=========================================*/

.gallery-overlay {
  position: absolute;

  inset: 0;

  background: rgba(24, 74, 153, 0.65);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  transition: 0.35s;
}

.gallery-plus {
  width: 70px;

  height: 70px;

  border: none;

  border-radius: 50%;

  background: #ff6d2c;

  color: #fff;

  font-size: 24px;

  cursor: pointer;

  transform: scale(0.5) rotate(180deg);

  transition: 0.35s;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-plus {
  transform: scale(1) rotate(0);
}

/*=========================================
        LIGHTBOX
=========================================*/

.gallery-lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 9999;
}

.gallery-lightbox.active {
  opacity: 1;

  visibility: visible;
}

.gallery-lightbox img {
  max-width: 90%;

  max-height: 90vh;

  border-radius: 20px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.gallery-close {
  position: absolute;

  top: 40px;

  right: 45px;

  width: 55px;

  height: 55px;

  background: #ff6d2c;

  color: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  cursor: pointer;

  transition: 0.3s;
}

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

  background: #fff;

  color: #ff6d2c;
}

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

/* Tablet */

@media (max-width: 991px) {
  .gallery-section {
    padding: 80px 0;
  }

  .gallery-container {
    width: 92%;
  }

  .gallery-heading {
    margin-bottom: 45px;
  }

  .gallery-heading h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  .gallery-tag {
    font-size: 15px;
    padding: 8px 18px;
  }

  .gallery-tag i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .gallery-right {
    gap: 18px;
  }

  .gallery-small,
  .gallery-large {
    height: 360px;
  }

  .gallery-half {
    height: 170px;
  }

  .gallery-plus {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-container {
    width: 94%;
  }

  .gallery-heading {
    margin-bottom: 35px;
  }

  .gallery-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .gallery-tag {
    font-size: 14px;
    padding: 7px 16px;
  }

  .gallery-tag i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-small,
  .gallery-large,
  .gallery-half {
    height: 260px;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-plus {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 0;
  }

  .gallery-heading h2 {
    font-size: 24px;
  }

  .gallery-tag {
    font-size: 13px;
    padding: 6px 15px;
  }

  .gallery-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .gallery-small,
  .gallery-large,
  .gallery-half {
    height: 220px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-plus {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .gallery-close {
    width: 45px;
    height: 45px;
    right: 20px;
    top: 20px;
    font-size: 18px;
  }
}

/*=========================================
        CTA SECTION
=========================================*/

.cta-section {
  position: relative;
  overflow: hidden;
  background: #3f74f4;
  padding: 0;
  margin: 20px 0;
}

/* Background Pattern */

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

/*=========================================
        CONTAINER
=========================================*/

.cta-container {
  max-height: 435px;
  width: 90%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/*=========================================
        LEFT
=========================================*/

.cta-content {
  width: 55%;
  padding: 15px 0;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-tag i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 15px;
}

.cta-content p {
  color: #ffffffd9;
  font-size: 18px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 20px;
}

/*=========================================
        BUTTON
=========================================*/

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6d2c;
  color: #fff;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.35s;
}

.cta-btn i {
  transition: 0.35s;
}

.cta-btn:hover {
  background: #fff;
  color: #2d43a6;
  transform: translateY(-4px);
}

.cta-btn:hover i {
  transform: translateX(4px) rotate(45deg);
}

/*=========================================
        RIGHT IMAGE
=========================================*/

.cta-image {
  width: 45%;
  position: relative;
  text-align: right;
}

.cta-image img {
  width: 35%;
  max-width: 540px;
  display: block;
  margin-left: auto;
  margin-top: -20px;
  margin-bottom: 0px;
}

/* Decorative Glow */

.cta-image::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -120px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );

  pointer-events: none;
}

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

/* Tablet */

@media (max-width: 991px) {
  .cta-section {
    margin: 60px 0;
  }

  .cta-container {
    max-height: none;
    width: 92%;
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 0;
  }

  .cta-content {
    width: 100%;
    padding: 0;
  }

  .cta-content h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    margin: 20px auto;
  }

  .cta-tag {
    font-size: 15px;
    padding: 8px 18px;
  }

  .cta-tag i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .cta-btn {
    padding: 15px 28px;
    font-size: 16px;
  }

  .cta-image {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .cta-image img {
    width: 320px;
    max-width: 100%;
    margin: auto;
  }

  .cta-image::before {
    width: 320px;
    height: 320px;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .cta-section {
    margin: 50px 0;
  }

  .cta-container {
    width: 94%;
    padding: 30px 0;
  }

  .cta-tag {
    font-size: 14px;
    padding: 7px 15px;
  }

  .cta-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .cta-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .cta-image img {
    width: 250px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .cta-section {
    margin: 40px 0;
  }

  .cta-container {
    width: 95%;
    padding: 25px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

  .cta-image img {
    width: 200px;
  }

  .cta-tag {
    font-size: 13px;
    padding: 6px 14px;
  }

  .cta-tag i {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

/*=========================================
        WHY CHOOSE US SECTION
=========================================*/

.why-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.why-content {
  width: 55%;
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff3ec;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.why-tag i {
  font-size: 15px;
  width: 30px;
  height: 30px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-content h2 {
  font-size: 28px;
  line-height: 1.15;
  color: #2d43a6;
  font-weight: 700;
  margin: 0 0 25px;
}

.why-description {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 45px;
}

/*=========================================
        FEATURE LIST
=========================================*/

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  transition: 0.35s;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.35s;
}

.why-item:hover .why-icon {
  background: #2d43a6;
  transform: rotate(15deg);
}

.why-text {
  flex: 1;
}

.why-text h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #2d43a6;
  font-weight: 600;
}

.why-text p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
}

.why-number {
  position: absolute;
  right: 30px;
  bottom: 5px;
  font-size: 90px;
  font-weight: 700;
  color: #ff6d2c;
  opacity: 0.08;
  pointer-events: none;
}

/*=========================================
        RIGHT IMAGES
=========================================*/

.why-images {
  width: 45%;

  position: relative;

  min-height: 700px;
}

.why-image-main {
  height: 90%;
  width: 90%;
  margin-left: auto;
}

.why-image-main img {
  width: 100%;
  display: block;
  border-radius: 35px;
}

.why-image-small {
  position: absolute;
  right: -20px;
  bottom: 60px;
  width: 90%;
  transform: rotate(8deg);
}

.why-image-small img {
  width: 100%;

  display: block;

  border-radius: 35px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.4s;
}

.why-image-small:hover img {
  transform: rotate(-8deg) scale(1.03);
}

/*=========================================
        WHY SECTION RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .why-section {
    padding: 70px 0;
  }

  .why-container {
    width: 92%;
    flex-direction: column;
    gap: 50px;
  }

  .why-content {
    width: 100%;
  }

  .why-content h2 {
    font-size: 36px;
  }

  .why-description {
    margin-bottom: 30px;
  }

  .why-item {
    padding: 18px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .why-text h3 {
    font-size: 20px;
  }

  .why-text p {
    font-size: 14px;
  }

  .why-number {
    font-size: 60px;
  }

  .why-images {
    width: 100%;
    min-height: 500px;
  }

  .why-image-main {
    width: 65%;
    margin: auto;
  }

  .why-image-small {
    width: 55%;
    right: 10%;
    bottom: 0;
  }
}

/*=========================
Mobile
=========================*/

@media (max-width: 767px) {
  .why-section {
    padding: 20px 0;
  }

  .why-container {
    width: 95%;
    gap: 25px;
  }

  .why-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-list {
    gap: 18px;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .why-text h3 {
    font-size: 20px;
  }

  .why-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .why-number {
    font-size: 45px;
    right: 15px;
    top: 10px;
    bottom: auto;
  }

  .why-images {
    width: 100%;
    min-height: 420px;
  }

  .why-image-main {
    width: 85%;
  }

  .why-image-small {
    width: 70%;
    right: 0;
    bottom: 20px;
  }
}

/*=========================
Small Mobile
=========================*/

@media (max-width: 480px) {
  .why-container {
    width: 94%;
  }

  .why-tag {
    font-size: 13px;
    padding: 7px 15px;
  }

  .why-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .why-content h2 {
    font-size: 23px;
  }

  .why-description {
    font-size: 14px;
  }

  .why-item {
    padding: 18px;
    border-radius: 18px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .why-text h3 {
    font-size: 18px;
  }

  .why-text p {
    font-size: 13px;
  }

  .why-number {
    font-size: 36px;
    right: 12px;
  }

  .why-images {
    min-height: 320px;
  }

  .why-image-main {
    width: 100%;
  }

  .why-image-small {
    width: 80%;
    right: 8px;
    bottom: 10px;
  }
}

/*=========================================
        CONTACT SECTION
=========================================*/
.contact-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/*=========================================
        CONTAINER
=========================================*/

.contact-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
}

/*=========================================
        LEFT SIDE / WATERMARK
=========================================*/

.contact-left {
  width: 50%;
  position: relative;
  align-self: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.contact-watermark {
  font-size: clamp(60px, 9vw, 170px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-transform: lowercase;
  user-select: none;
  white-space: nowrap;
  margin: 0;
  transform: translateY(28%);
  mix-blend-mode: overlay;
}

.contact-watermark span {
  background: linear-gradient(90deg, #ff2d2d, #ff6d2c 55%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  mix-blend-mode: normal;
  opacity: 0.95;
}

/*=========================================
        RIGHT
=========================================*/

.contact-form-wrapper {
  width: 42%;
  display: flex;
  justify-content: flex-end;
}

.contact-form-box {
  width: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/*=========================================
        TAG
=========================================*/

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff3ec;
  color: #ff6d2c;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  /* margin-bottom: 10px; */
}

.contact-tag i {
  width: 36px;
  height: 36px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*=========================================
        CONTENT
=========================================*/

.contact-form-box h2 {
  font-size: 32px;
  color: #2d43a6;
  margin-bottom: 15px;
}

.contact-form-box p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/*=========================================
        FORM
=========================================*/

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 10px 18px;
  outline: none;
  font-size: 16px;
  color: #555;
  transition: 0.35s;
  background: #fff;
}

.contact-input textarea {
  resize: none;
  margin-bottom: 25px;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
  border-color: #ff6d2c;
  box-shadow: 0 0 0 4px rgba(255, 109, 44, 0.12);
}

/*=========================================
        BUTTON
=========================================*/

.contact-btn {
  border: none;
  background: #ff6d2c;
  color: #fff;
  padding: 17px 35px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}

.contact-btn i {
  transition: 0.35s;
}

.contact-btn:hover {
  background: #2d43a6;
  transform: translateY(-4px);
}

.contact-btn:hover i {
  transform: rotate(45deg);
}

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

@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
    min-height: auto;
  }

  .contact-container {
    width: 92%;
    flex-direction: column;
    gap: 40px;
  }

  .contact-left {
    width: 100%;
    text-align: center;
    align-self: center;
  }

  .contact-watermark {
    font-size: 90px;
    transform: none;
  }

  .contact-form-wrapper {
    width: 100%;
    justify-content: center;
  }

  .contact-form-box {
    max-width: 700px;
    padding: 30px;
  }

  .contact-form-box h2 {
    font-size: 30px;
  }

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

/*=========================
Mobile
=========================*/

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-container {
    width: 94%;
  }

  .contact-watermark {
    font-size: 60px;
  }

  .contact-form-box {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-tag {
    font-size: 14px;
    padding: 8px 16px;
  }

  .contact-tag i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .contact-form-box h2 {
    font-size: 24px;
  }

  .contact-form-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .contact-input input,
  .contact-input select,
  .contact-input textarea {
    font-size: 14px;
    padding: 14px 15px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 15px;
  }
}

/*=========================
Small Mobile
=========================*/

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-container {
    width: 95%;
  }

  .contact-watermark {
    font-size: 46px;
  }

  .contact-form-box {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-tag {
    font-size: 13px;
    padding: 7px 14px;
  }

  .contact-tag i {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .contact-form-box h2 {
    font-size: 22px;
  }

  .contact-form-box p {
    font-size: 13px;
  }

  .contact-input input,
  .contact-input select,
  .contact-input textarea {
    padding: 12px 14px;
    font-size: 13px;
  }

  .contact-input textarea {
    min-height: 120px;
  }

  .contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}

/*=========================================
        BLOG SECTION
=========================================*/

.blog-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

.blog-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.blog-heading {
  text-align: center;
  margin-bottom: 60px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #fff3ec;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-tag i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.blog-heading h2 {
  color: #2d43a6;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

/*=========================================
        GRID
=========================================*/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/*=========================================
        CARD
=========================================*/

.blog-card {
  background: #fff;
  border: 1px solid #f1d6ca;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.35s;
}

.blog-card.active,
.blog-card:hover {
  border-color: #ff6d2c;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/*=========================================
        IMAGE
=========================================*/

.blog-image {
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.45s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #ff6d2c;
  color: #fff;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/*=========================================
        CONTENT
=========================================*/

.blog-content {
  padding: 0 20px 25px;
}

.blog-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 20px;
}

.blog-meta span {
  font-size: 13px;
  color: #2d43a6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: #ff6d2c;
}

.blog-content h3 {
  margin: 0 0 15px;
  line-height: 1.35;
}

.blog-content h3 a {
  text-decoration: none;
  color: #2d43a6;
  font-size: 19px;
  font-weight: 700;
  transition: 0.3s;
}

.blog-content h3 a:hover {
  color: #ff6d2c;
}

.blog-content p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/*=========================================
        BUTTON
=========================================*/

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6d2c;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.blog-btn i {
  transition: 0.35s;
}

.blog-btn:hover {
  background: #2d43a6;
}

.blog-btn:hover i {
  transform: translateX(4px) rotate(45deg);
}

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

@media (max-width: 991px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-container {
    width: 94%;
  }

  .blog-heading {
    margin-bottom: 45px;
  }

  .blog-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .blog-tag {
    font-size: 16px;
    padding: 8px 16px;
  }

  .blog-tag i {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-image img {
    height: 220px;
  }

  .blog-content h3 a {
    font-size: 18px;
  }

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

/*=========================
Mobile
=========================*/

@media (max-width: 767px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-container {
    width: 95%;
  }

  .blog-heading {
    margin-bottom: 35px;
  }

  .blog-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .blog-tag {
    font-size: 14px;
    padding: 7px 15px;
  }

  .blog-tag i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-image {
    padding: 12px;
  }

  .blog-image img {
    height: 230px;
    border-radius: 15px;
  }

  .blog-date {
    top: 18px;
    right: 18px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .blog-content {
    padding: 0 18px 20px;
  }

  .blog-meta {
    gap: 12px;
    margin-bottom: 15px;
  }

  .blog-meta span {
    font-size: 12px;
  }

  .blog-content h3 a {
    font-size: 18px;
    line-height: 1.4;
  }

  .blog-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }
}

/*=========================
Small Mobile
=========================*/

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 0;
  }

  .blog-container {
    width: 94%;
  }

  .blog-heading h2 {
    font-size: 24px;
  }

  .blog-tag {
    font-size: 13px;
    padding: 6px 14px;
  }

  .blog-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .blog-image img {
    height: 200px;
  }

  .blog-content {
    padding: 0 15px 18px;
  }

  .blog-content h3 a {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px;
  }
}

/*=========================================
        FOOTER SECTION
=========================================*/

.footer-section {
  position: relative;
  background: #182553;
  padding: 30px 0 30px;
  overflow: hidden;
  z-index: 1;
}

/* Background Pattern */

.footer-pattern {
  position: absolute;
  inset: 0;
  /* background:url("assets/home2_image/footer_pattern.webp") center center/cover no-repeat; */
  opacity: 0.08;
  z-index: -1;
}

/*=========================================
        CONTAINER
=========================================*/

.footer-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        TOP
=========================================*/

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  max-width: 190px;
  margin-bottom: 25px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 35px;
}

.footer-about h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

/*=========================================
        SOCIAL
=========================================*/

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
}

.footer-social a:hover {
  background: #ff6d2c;
  border-color: #ff6d2c;
  transform: translateY(-5px);
}

/*=========================================
        WIDGET
=========================================*/

.footer-widget h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #ff6d2c;
  position: absolute;
  left: 0;
  bottom: -10px;
}

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

.footer-widget ul li {
  margin-bottom: 15px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-widget ul li a:hover {
  color: #ff6d2c;
  padding-left: 8px;
}

/*=========================================
        NEWSLETTER
=========================================*/

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.newsletter-box {
  position: relative;
  margin-bottom: 18px;
}

.newsletter-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6d2c;
}

.newsletter-box input {
  width: 100%;
  height: 58px;
  border: none;
  outline: none;
  border-radius: 12px;
  padding: 0 18px 0 48px;
  font-size: 15px;
}

.newsletter-btn {
  border: none;
  background: #ff6d2c;
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.newsletter-btn:hover {
  background: #fff;
  color: #2d43a6;
}

/*=========================================
        CONTACT BAR
=========================================*/

.footer-contact-bar {
  margin: 30px auto 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-contact-logo img {
  max-width: 180px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start; /* Changed from center */
  gap: 18px;
  flex: 1;
}

.footer-contact-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 28px;

  margin-top: 3px; /* Slight top alignment */
}

.footer-contact-item h5 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 18px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

/*=========================================
        COPYRIGHT
=========================================*/

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 15px;
}

.footer-bottom span {
  color: #ff6d2c;
  font-weight: 700;
}

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

/* Tablet */

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 25px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    grid-column: 1/-1;
  }

  .footer-contact-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-contact-logo {
    text-align: center;
  }

  .footer-contact-logo img {
    margin: auto;
  }

  .footer-contact-item {
    justify-content: center;
    align-items: center;
    text-align: left;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-container {
    width: 94%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-widget h3::after {
    left: 20%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-contact-bar {
    padding: 25px 18px;
    border-radius: 18px;
  }

  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    font-size: 22px;
    margin-top: 0;
  }

  .footer-contact-item h5 {
    font-size: 18px;
  }

  .footer-contact-item span {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .footer-container {
    width: 95%;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-widget h3 {
    text-align: left;
    font-size: 22px;
  }

  .footer-about p,
  .footer-newsletter p {
    text-align: left;
    font-size: 14px;
  }

  .newsletter-box input {
    height: 52px;
    font-size: 14px;
  }

  .newsletter-btn {
    padding: 14px;
    font-size: 14px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-contact-logo img {
    max-width: 150px;
  }

  .footer-contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    font-size: 20px;
  }

  .footer-contact-item h5 {
    font-size: 17px;
  }

  .footer-contact-item span {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.8;
  }
  .footer-widget ul li {
    text-align: left;
  }
}



/*====================================
        PAGE LOADER
====================================*/

.page-loader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#ffffff;

    display:flex;

    justify-content:center;
    align-items:center;

    z-index:999999;

    transition:all .6s ease;

}

/* Hide Loader */

.page-loader.hide{

    opacity:0;

    visibility:hidden;

    pointer-events:none;

}

/* Loader Wrapper */

.loader-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Lottie */

#lottieLoader{

    width:260px;

    height:260px;

}

/*=========================
        Laptop
=========================*/

@media(max-width:1200px){

#lottieLoader{

width:230px;

height:230px;

}

}

/*=========================
        Tablet
=========================*/

@media(max-width:991px){

#lottieLoader{

width:200px;

height:200px;

}

}

/*=========================
        Mobile
=========================*/

@media(max-width:768px){

#lottieLoader{

width:170px;

height:170px;

}

}

/*=========================
      Small Mobile
=========================*/

@media(max-width:480px){

#lottieLoader{

width:140px;

height:140px;

}

}