@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
  --text-white: #FFFFFF;
  --text-black: #000000;
  --one-background-color: #FEC861;
  --sec-background-color: #F6F8F9;
  --red: #FD0000;
  --gry-color: #E0E0E0;
  --gry-text: #434343;
  --another-gry: #333;
  --header-height: 70px;
  --dark-yellow: #F5BF38;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

body {
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  font-family: poppins, Open Sans;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  font-family: poppins, Open Sans;
  font-size: 15px;
  color: var(--text-black);
}

a:hover {
  color: var(--text-black);
  /* stays black on hover */
}

h1,
h2,
h3,
h5,
h6,
p {
  font-family: poppins, Open Sans;
}


p {
  color: var(--gry-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}


h1{
  color: #000;
font-family: Poppins;
font-size: 35px;
font-style: normal;
font-weight: 600;
line-height: 35px; 
text-transform: uppercase;
}

h2 {
  color: var(--another-gry);
  font-family: Poppins;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
}

h3 {
  color: var(--gry-text);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

h3:hover {
  color: var(--one-background-color);
}

.gap_cus {
  margin: 90px 0px 0px 0px;
}

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

.both_space {
  padding: 0% 5%;

}

.top-header {
  background-color: var(--text-black);
  color: var(--text-white);
  padding: 12px 20px;
  font-size: 13px;
}

.top-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-white);
  color: var(--red);
  font-size: 12px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

.social-icon:hover {
  /* opacity: 0.8; */
  color: var(--text-white);
  background: var(--red);

}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-item {
  display: flex;
  align-items: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
  gap: 6px;
}

.contact-item:hover {
  color: var(--one-background-color);
}

.contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}



/* ============== HEADER ============== */
.header {
    background-color: var(--text-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    width: 100%;
}

.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 45px;
    width: auto;
}

/* ============== NAVIGATION MENU ============== */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--text-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link:hover {
    color: var(--one-background-color);
}

/* ============== DROPDOWN ============== */
.dropdown__item {
    position: relative;
}

.dropdown__button {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 12px;
    transition: transform 0.3s;
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 400px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown__item:hover > .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__item:hover > .dropdown__button .dropdown__arrow {
    transform: rotate(0deg);
}

.dropdown__link {
    display: block;
    padding: 12px 20px;
    color: var(--text-black);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.dropdown__link:hover {
    background-color: #f5f5f5;
    color: var(--one-background-color);
}

/* ============== NESTED DROPDOWN ============== */
.dropdown__nested {
    position: relative;
}

.dropdown__nested > .dropdown__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dropdown__nested > .dropdown__button .dropdown__arrow {
    transform: rotate(-90deg);
    margin-left: auto;
    font-size: 10px;
}

.dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 300px;
    margin-left: 5px;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 101;
}

/* Desktop hover behavior for nested */
.dropdown__nested:hover > .dropdown__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown__nested:hover > .dropdown__button .dropdown__arrow {
    transform: rotate(-90deg);
}

.dropdown__submenu .dropdown__link {
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown__submenu .dropdown__link:hover {
    background-color: #f5f5f5;
    color: var(--one-background-color);
}

/* ============== BUTTON ============== */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--one-background-color);
    border-radius: 25px;
    color: var(--text-black);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    gap: 8px;
}

.custom-btn:hover {
    background: #f5b341;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 200, 97, 0.4);
}

.btn-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.custom-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* ============== MOBILE TOGGLE ============== */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1004;
}

.nav__toggle i {
    font-size: 24px;
    color: var(--text-black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
}

.nav__burger {
    opacity: 1;
}

.nav__close {
    opacity: 0;
}

.nav__toggle.active {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1005;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav__toggle.active .nav__burger {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav__toggle.active .nav__close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav__actions.mobile-only {
    display: none;
}

.nav__actions.desktop-only {
    display: block;
}

/* ============== MOBILE RESPONSIVE ============== */
@media screen and (max-width: 1024px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        overflow-y: scroll !important;
        overflow-x: hidden;
        z-index: 1001;
        -webkit-overflow-scrolling: touch;
    }

    /* Custom scrollbar styling */
    .nav__menu::-webkit-scrollbar {
        width: 4px;
    }

    .nav__menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav__menu::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .nav__menu.show-menu {
        right: 0;
        padding: 80px 0px 30px;
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
        padding-bottom: 20px;
    }

    .nav__list > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav__link {
        padding: 18px 25px;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown__item {
        width: 100%;
    }

    .dropdown__button {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    /* Arrow click area in mobile */
    .dropdown__arrow {
        cursor: pointer;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .dropdown__menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        transition: max-height 0.4s ease;
    }

    .dropdown__item.active > .dropdown__menu {
        max-height: 1000px;
    }

    .dropdown__item.active > .dropdown__button .dropdown__arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown__link {
        padding: 15px 25px 15px 25px;
        border-bottom: 1px solid #ececec;
    }

    .custom-btn {
        margin: 20px 25px;
        width: calc(100% - 50px);
    }

    /* Mobile Overlay - Lock body scroll */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .nav__actions.mobile-only {
        display: block;
    }

    .nav__actions.desktop-only {
        display: none;
    }

    /* Nested Dropdown Mobile Styles */
    .dropdown__nested > .dropdown__button .dropdown__arrow {
        transform: rotate(0deg);
        font-size: 10px;
    }

    .dropdown__submenu {
        position: static;
        margin-left: 0;
        background: #f0f0f0;
        padding-left: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        transition: max-height 0.4s ease;
    }

    .dropdown__nested.active > .dropdown__submenu {
        max-height: 1000px;
    }

    .dropdown__nested.active > .dropdown__button .dropdown__arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown__submenu .dropdown__link {
        padding: 15px 25px 15px 45px;
        background: #f0f0f0;
        font-size: 14px;
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown__submenu .dropdown__link:hover {
        background: #e8e8e8;
        color: var(--one-background-color);
    }

    /* Make sure nested dropdown links don't have arrows */
    .dropdown__submenu .dropdown__link:not(.dropdown__button) {
        padding-left: 45px;
    }
}

@media screen and (max-width: 768px) {
    .top-header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info {
        display: none;
    }

    .nav__menu {
        width: 320px;
    }

    .nav__menu.show-menu {
        padding: 80px 0px 30px;
    }

    .nav__logo img {
        height: 38px;
    }

    .nav__actions.mobile-only {
        display: block;
    }

    .nav__actions.desktop-only {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .dropdown__menu {
        min-width: 280px;
        list-style: none;
    }

    .top-header {
        font-size: 11px;
        padding: 10px 15px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .contact-item {
        font-size: 11px;
    }

    .nav {
        padding: 0 15px;
    }

    .nav__menu {
        width: 320px;
    }

    .nav__menu.show-menu {
        padding: 80px 0px 30px;
    }

    .nav__actions.mobile-only {
        display: block;
    }

    .nav__actions.desktop-only {
        display: none;
    }
}


/* ============== MOBILE RESPONSIVE ============== */
@media screen and (max-width: 1024px) {
    /* ... existing mobile styles ... */

    /* Arrow click area in mobile */
    .dropdown__arrow {
        cursor: pointer;
        transition: transform 0.3s ease;
        transform: rotate(0deg) !important; /* Force initial state */
        z-index: 10;
        position: relative;
    }

    /* Main dropdown arrow rotation */
    .dropdown__item.active > .dropdown__button > .dropdown__arrow {
        transform: rotate(180deg) !important;
    }

    /* Nested dropdown arrow - keep sideways initially */
    .dropdown__nested > .dropdown__button .dropdown__arrow {
        transform: rotate(-90deg) !important;
        font-size: 10px;
    }

    /* Nested dropdown arrow rotation when active */
    .dropdown__nested.active > .dropdown__button > .dropdown__arrow {
        transform: rotate(0deg) !important; /* -90deg + -180deg = -270deg for full rotation */
    }

    .dropdown__menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        transition: max-height 0.4s ease;
    }

    .dropdown__item.active > .dropdown__menu {
        max-height: 1000px;
    }

    .dropdown__link {
        padding: 15px 25px 15px 25px;
        border-bottom: 1px solid #ececec;
    }

    .dropdown__submenu {
        position: static;
        margin-left: 0;
        background: #f0f0f0;
        padding-left: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        transition: max-height 0.4s ease;
    }

    .dropdown__nested.active > .dropdown__submenu {
        max-height: 1000px;
    }

    .dropdown__submenu .dropdown__link {
        padding: 15px 25px 15px 45px;
        background: #f0f0f0;
        font-size: 14px;
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown__submenu .dropdown__link:hover {
        background: #e8e8e8;
        color: var(--one-background-color);
    }

    .dropdown__submenu .dropdown__link:not(.dropdown__button) {
        padding-left: 45px;
    }
}


/*================== Banner Section ================*/
.banner_section {
  position: relative;
}

.mySwiper {
  width: 100%;
  height: 500px;
  padding-bottom: 50px;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Background Image - No stretching */
.banner_bg_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  z-index: 1;
}

/* Remove old background image CSS */
.swiper-slide:nth-child(1),
.swiper-slide:nth-child(2),
.swiper-slide:nth-child(3) {
  background-image: none !important;
}

/* Force pagination to right side - vertical */
.swiper-pagination.swiper-pagination-vertical {
  right: 0px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: auto !important;
}

.swiper-pagination {
  position: absolute !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  z-index: 10 !important;
}

/* Container for pagination with lines */
.swiper-pagination-container {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* Top line */
.line {
  width: 2px;
  height: 72px;
  background: #999;
  margin-bottom: 10px;
}

.swiper-pagination-container .line_one {
  position: absolute;
  top: -122px;
  right: 4px;
}

.swiper-pagination-container .line_two {
  position: absolute;
  bottom: -132px;
  right: 4px;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #999 !important;
  opacity: 1 !important;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #FEC861 !important;
}

/* Banner Content */
.banner_content {
  position: relative;
  z-index: 2;
  margin: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Main Title Styling */
.banner_main_title {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.title_line1,
.title_line2 {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #FEC861;
  font-size: 60px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.title_line1 {
  animation-delay: 0.2s;
}

.title_line2 {
  animation-delay: 0.4s;
}

/* Subtitle */
.banner_subtitle {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 20px 0 0 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button */
.btn_one {
  display: inline-flex;
  /* inline-block se flex */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  gap: 10px;
  /* text aur icon ke beech space */
  width: 200px;
  padding: 16px 32px;
  border-radius: 25px;
  background: #FEC861;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  transition: all 0.3s ease;
}

.btn_one:hover {
  background: #f5b341;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 200, 97, 0.4);
  color: #000000;
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.btn_one:hover .btn-arrow {
  transform: translateX(4px);
}

/*================== End Banner Section ================*/



/*================== Banner Card Section ===============*/
.banner_card_section {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  top: -50px;
}

.banner_card_row {
  box-shadow: -5px 8px 20px rgba(0, 0, 0, 0.15), 5px 8px 20px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.banner_card {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner_box {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 15px;
}

.banner_img {
  flex-shrink: 0;
  width: 33.25px;
  height: 36.27px;
}

.banner_img img {
  width: 33.25px;
  height: 36.27px;
  object-fit: contain;
  opacity: 1;
}

.banner_text {
  flex: 1;
}

.banner_text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  color: #2B2D4A;
  margin-bottom: 8px;
}

.banner_text p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0%;
  color: #636363;
  margin: 0;
}

/*================== Responsive ================*/
@media screen and (max-width: 768px) {
  .mySwiper {
    height: 400px;
  }

  .title_line1,
  .title_line2 {
    font-size: 40px;
  }

  .banner_subtitle {
    font-size: 14px;
  }

  .banner_content {
    margin: 0 5%;
  }

  .gap_cus {
    margin: 50px 0px 0px 0px;
  }

  h2 {
    color: var(--another-gry);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
  }
}

@media screen and (max-width: 480px) {
  .mySwiper {
    height: 350px;
  }

  .title_line1,
  .title_line2 {
    font-size: 32px;
  }

  .banner_subtitle {
    font-size: 12px;
  }

  .gap_cus {
    margin: 50px 0px 0px 0px;
  }

  h2 {
    color: var(--another-gry);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
  }
}

/*================== End Banner Card Section ===============*/



/*===============service crad=============*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Service Card */
.service-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #FEC861;
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #FEC861;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.icon-circle img {
    width: 49px;
}

.service-card:hover .icon-circle {
  transform: scale(1.1);
  background: #f5b341;
}

.icon-circle i {
  font-size: 32px;
  color: #000000;
}

/* Service Title */
.service-title {
  margin: 0;
}


.ser-title{
  color: var(--gry-text);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.ser-title:hover{
   color: var(--one-background-color);
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 30px 20px;
  }

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

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

  .service-title {
    font-size: 14px;
  }


}

@media screen and (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 30px 20px;
  }

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

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

  .service-title {
    font-size: 14px;
  }
}

/*============= service card =================*/




/*============== Why Baydun Section  ============*/
.why-baydun-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.why-baydun-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.left-content {
  position: relative;
}

/* Section Title */
.section-title {
  margin-bottom: 20px;
}

/* Section Description */
.section-description {
  color: var(--gry-text);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  margin: 30px 0px;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--one-background-color);
  border-radius: 25px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #f5b341;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(254, 200, 97, 0.4);
}

.read-more-btn .arrow-icon-read {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon-read {
  transform: translateX(4px);
  /* hover pe slide */
}


/* Right Image */
.right-image {
  position: relative;
}

.right-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .why-baydun-content {
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .why-baydun-section {
    padding: 60px 0;
  }

  .why-baydun-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .right-image {
    order: -1;
    /* Image ko top pe le jao mobile mein */
  }
}

@media screen and (max-width: 480px) {
  .why-baydun-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .read-more-btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/*============== end Why Baydun Section  ============*/


/*============== Brand Slider Section ==========*/
.brand-slider-section {
  padding: 60px 0;
  background: #f5f5f5;
  overflow: visible !important;
}

/* Outer wrapper for buttons */
.swiper-wrapper-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Swiper Container */
.brandSwiper {
  position: relative;
  padding: 0;
  overflow: hidden;
  /* Ab hidden rakh sakte ho */
  z-index: 1;
  flex: 1;
  /* Flexible width */
}

/* Brand Card */
.brand-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}


/* Brand Logo Image */
.brand-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  position: relative;
  transition: all 0.3s ease;
  z-index: 100;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {

  color: #000000;
  transform: scale(1.1);
}

/* Disabled state */
.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-button-disabled:hover {
  background: #FFFFFF;
  border-color: #E5E5E5;
  color: #2B2D4A;
  transform: scale(1);
}

/* Arrow positioning OUTSIDE */
.swiper-button-prev {
  left: -60px !important;
}

.swiper-button-next {
  right: -60px !important;
}

svg.swiper-navigation-icon {
  display: none;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .swiper-wrapper-outer {
    gap: 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }

  .swiper-button-prev {
    left: -50px !important;
  }

  .swiper-button-next {
    right: -50px !important;
  }
}

@media screen and (max-width: 768px) {
  .brand-slider-section {
    padding: 40px 30px;
  }

  .swiper-wrapper-outer {
    gap: 12px;
  }

  .brand-card {
    padding: 25px 15px;
    height: 90px;
  }

  .brand-card img {
    max-height: 50px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }

  .swiper-button-prev {
    left: -45px !important;
  }

  .swiper-button-next {
    right: -45px !important;
  }
}

@media screen and (max-width: 480px) {
  .swiper-wrapper-outer {
    gap: 10px;
  }

  .brand-card {
    padding: 20px 10px;
    height: 80px;
  }

  .brand-card img {
    max-height: 45px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 10px;
  }

  .swiper-button-prev {
    left: -45px !important;
  }

  .swiper-button-next {
    right: -45px !important;
  }
}

/*============== End Brand Slider Section ==========*/


/*============== Products & Services Section ==========*/
.products-services-section {
  padding: 80px 0;
  background: #FFFFFF;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title {
  margin: 0;
}

/* Product Service Card */
.product-service-card {
  border-radius: 16px 60px 16px 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

/* Service Content */
.service-content {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 16px 16px;
}

/* Content Header - Title and Arrow */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 15px;
}

.service-title {
  margin: 0;
  line-height: 1.3;
  flex: 1;
}


h3.service-title.product {
  text-align: start;
  color: var(--gry-text);
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

h3.service-title.product:hover {
  color: #000;
}


/* Arrow Icon */
.arrow-icon {
  width: 36px;
  height: 36px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.arrow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-service-card:hover .arrow-icon img {
  transform: rotate(45deg);
}


.product-service-card:hover .arrow-icon img {
  transform: rotate(-45deg);
}


/* HOVER EFFECT: White background to Yellow */
.product-service-card:hover .service-content {
  background: #FEC861;
  transition: background 0.3s ease;
}

.service-description.product {
  color: #333;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/* Grid Spacing */
.row.g-4 {
  row-gap: 30px !important;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .products-services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .service-image {
    height: 240px;
  }

  .service-content {
    padding: 24px 25px 28px;
  }

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

  .service-description {
    font-size: 14px;
  }

  .arrow-icon {
    width: 32px;
    height: 32px;
  }

  .arrow-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .products-services-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 22px 22px 26px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-description {
    font-size: 14px;
  }

  .arrow-icon {
    width: 30px;
    height: 30px;
  }

  .arrow-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 20px 20px 24px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .content-header {
    margin-bottom: 10px;
    gap: 12px;
  }

  .arrow-icon {
    width: 28px;
    height: 28px;
  }

  .arrow-icon svg {
    width: 14px;
    height: 14px;
  }
}

/*============== End Products & Services Section ==========*/




/*============== brands-section ==========*/

.brand-search {
  background-color: var(--sec-background-color);
  padding: 40px 0px;
}

.brands-section {
  max-width: 100%;
  margin: 0 auto;
}

/* Brands Text at Top */
.top-brands-text {
  text-align: center;
  margin-bottom: 8px;
}


.top-brands-text p {
  color: var(--gry-text);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

/* Check Our Brands Heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin: 0;
}

/* Search Field */
.search-field {
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
  margin: 0 30px;
}

.search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  font-size: 14px;
  color: #6b7280;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: var(--one-background-color);
  box-shadow: 0 2px 12px rgba(239, 239, 131, 0.039);
}

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

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.3s ease;
}

.search-btn:hover {
  color: var(--one-background-color);
}

/* Brand Items */
.brand-item {
  background: white;
  border-radius: 12px;
  padding: 20px 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.brand-item img {
  max-width: 100%;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* View More Button */
.view-more-btn {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.view-more-link {
  text-decoration: none;
  display: inline-block;
}

.view-more-btn button {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 40px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-more-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

.arrow-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.view-more-btn button:hover .arrow-icon {
  transform: translateX(4px);
}


/* Row spacing */
.brand-row {
  margin-bottom: 0;
}

/* Large phones */
@media (max-width: 768px) {
  .section-heading {
    padding-bottom: 18px !important;
    font-size: 1.2rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .section-heading {
    padding-bottom: 12px !important;
    font-size: 1rem;
  }
}

/*============== end brands-section ==========*/



/*=================blog section============*/
.blog_listing {
  margin: 90px 0;
}
.blog-wrapper {
  width: 100%;
  background-color: #f9f9f9;
}

.blog-section {
  padding: 50px 0px;
}

/* Header Section */
.blog-header {
  margin-bottom: 40px;
}

.blog-header h2 {
  margin-bottom: 15px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-description {
  flex: 1;
  max-width: 600px;
}

.blog-description p {
  margin: 0;
}

.see-more-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
  color: white;
}

.see-more-btn img {
  width: 16px;
  height: 16px;
}

/* Blog Cards */
.blog-card {
  background: transparent;
  border-radius: 12px;
  overflow: visible;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.blog-card img{
  border-radius: 12px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-content {
  padding: 20px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.blog-card-content h3 {
  text-align: start;
  margin-bottom: 0;

  font-size: 15px;
  margin-bottom: 0;
  color: var(--gry-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

.blog-card-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-card-content .view-details-btn img {
  width: 14px;
  height: 14px;
  border-radius: 0;
}

.view-details-btn {
  background: var(--one-background-color);
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  align-self: flex-start;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;


  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.blog-card-content .view-details-btn img {
  width: 20px;
  height: 12px;
  border-radius: 0;
}

.view-details-btn:hover {
  background: #f5b341 !important;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(254, 200, 97, 0.4);

}

.view-details-btn:hover .arrow-icon-read {
  transform: translateX(4px);
}


/* Horizontal Blog Card */
.blog-card-horizontal {
  display: flex;
  flex-direction: row;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 180px;
  gap: 15px;
}

.blog-card-horizontal:first-child {
  margin-bottom: 0;
}

.blog-card-horizontal:last-child {
  margin-bottom: 0;
}

.blog-card-horizontal:hover {
  transform: translateY(-5px);
}

.blog-card-horizontal img {
  width: 50%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

.blog-card-horizontal .blog-card-content {
  padding: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  gap: 10px;
}

.blog-card-horizontal .blog-card-content h3 {
  margin-bottom: 0;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--gry-text);
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

.blog-card-horizontal .blog-card-content p {
  font-size: 12px;
  margin-bottom: 0;
}

.blog-card-horizontal .blog-card-content .view-details-btn img {
  width: 20px;
  height: 14px;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-card {
    min-height: 350px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-card-content {
    min-height: 170px;
  }

  .blog-card-horizontal {
    min-height: 160px;
  }

  .blog-card-horizontal img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .blog-card-horizontal {
    flex-direction: column;
    min-height: 350px;
    gap: 0;
  }

  .blog-card-horizontal img {
    width: 100%;
    height: 180px;
  }

  .blog-card-horizontal .blog-card-content {
    width: 100%;
    height: auto;
    padding: 15px 0;
  }

  .header-content {
    flex-direction: column;
  }
}

/*=================end blog section============*/





/*================= Footer Main Section ==================*/
.footer-section {
  background: var(--gry-color);
  color: var(--text-black);
  padding: 60px 0 0;
}

/* Logo and Description */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  margin-bottom: 15px;
}

.footer-description {
  color: #333;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

/* Footer Headings */
.footer-title {
  color: #333;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

.col-lg-3.col-md-6.footer-col.two {
  padding-top: 26px;
}


/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}

.footer-links li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.footer-links a {
  color: #333;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  transition: all 0.3s ease;
}

.footer_icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.8px solid var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.footer_icon img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.footer_icon:hover {
  background: var(--one-background-color);
  /* white background */
}

.footer_icon:hover img {
  transform: rotate(45deg);

}

/* When anchor is hovered - icon bhi hover ho */
.footer-links li:hover .footer_icon {
  background: var(--one-background-color);
  border: 1.8px solid var(--one-background-color);
}

.footer-links li:hover .footer_icon img {
  transform: rotate(45deg);

}

.footer-links a:hover {
  color: var(--one-background-color);
  padding-left: 5px;
}


.footer-links a:hover {
  color: var(--one-background-color);
  padding-left: 5px;
}

.footer-links .link-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-links .link-icon i {
  font-size: 10px;
}

.footer-links a:hover .link-icon {
  background: var(--footer-blue);
}

/*get in touch */

.info-card {
  padding: 20px 0px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;

}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-black);
  padding: 4px 0px;
}

.footer-icon-circle {
  width: 28px;
  height: 28px;
  background-color: #333333;
  /* dark circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-icon-circle img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}


.footer-contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-contact-item:hover {
  opacity: 0.75;
  color: var(--one-background-color);
}



/* Social Media */
.social-section {
  display: flex;
  flex-direction: column;
  /* force horizontal */
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}

.social-section p {
  font-family: poppins;
  font-weight: 600;
  font-size: 20px;
  vertical-align: middle;
  margin: auto 0;
}

.social-icons {
  display: flex;
  gap: 5px;
}

.social-icon-footer {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-black);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  background: none;
}


.social-icon-footer:hover img {
  transform: translateY(-3px);
}

.social-icon-footer:hover i {
  color: var(--text-black);
  transform: translateY(-3px);

}

i.fa-brands.fa-x-twitter.twitter {
  font-size: 24px;
}

/* Footer Bottom */
.footer-bottom {
  background: var(--dark-yellow);
  padding: 20px 0;
  margin-top: 50px;
}

.copyright-text {
  color: var(--gry-text);
  text-align: center;
  margin: 0;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.copyright-text a {
  color: var(--footer-blue);
  text-decoration: none;
}

.copyright-text a:hover {
  text-decoration: underline;
}


/* Mobile view */
@media (max-width: 767px) {
  .col-lg-3.col-md-6.footer-col.two {
    padding-top: 0;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -20px;
  }
}

/*================= End Footer Main Section ==================*/



/*================= Testimonials ==================*/

.customer-feedback-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative !important;
  padding-top: 40px;
}

.customer-feedback-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.customer-feedback-section .section-tagline {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Swiper Container */
.feedback-slider-container {
  padding: 40px 20px 80px !important;
  position: relative;
}

/* Make center/middle slide higher - ONLY for feedback slider */
.feedback-slider-container .swiper-slide {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  transform: translateY(0);
}

/* Middle card (2nd position in view) moves up automatically - ONLY for feedback slider */
.feedback-slider-container .swiper-slide-next {
  transform: translateY(-0px) !important;
  z-index: 3;
}

@media (max-width: 1024px) {
  .feedback-slider-container .swiper-slide {
    transform: translateY(0);
  }

  .feedback-slider-container .swiper-slide-next {
    transform: translateY(-0px) !important;
  }
}

@media (max-width: 768px) {
  .feedback-slider-container .swiper-slide {
    transform: translateY(0);
  }

  .feedback-slider-container .swiper-slide-next {
    transform: translateY(0) !important;
  }
}

/* Testimonial Card */
.user-review-card {
  background: white !important;
  border-radius: 20px !important;
  padding: 0 !important;
  padding-top: 30px !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  margin: 0 15px !important;
  margin-top: 50px !important;
  border: none !important;
  overflow: visible !important;
  gap: 25px;
}

.user-review-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Card Header Section - Row with 2 Columns */
.card-header-section {
  display: flex;
  width: calc(100% - 100px);
  margin: 0 auto;
  height: 88px;
  position: relative;
  top: -30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background-color: #EEF8FF;
}

/* Photo Column - 30% width */
.photo-col {
  width: 40%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 40px 50px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  position: relative;
}

/* Profile Image - Round Circle */
.user-photo-circle {
  z-index: 999;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 6px;
}

.user-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Column - 70% width */
.info-col {
  width: 60%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.star-rating .star {
  color: #fbbf24;
  font-size: 15px;
}

/* Name */
.info-col h4 {
  text-align: start;
  margin: 0;
  color: #0F202A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
}

/* Date */
.info-col .posted-date {
  font-size: 12px;
  color: #999;
  text-align: start;
  margin: 0;
}

/* Testimonial Text */
.review-message {
  margin: -25px 25px 8px 25px;
  text-align: center;
  font-style: italic;
  color: #494949;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

/* Quote Icon */
.quote-symbol {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px auto;
}

.quote-symbol img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* Swiper Pagination */
.slider-dots-navigation {
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  padding-top: 50px;
}

.slider-dots-navigation .swiper-pagination-bullet {
  width: 30px !important;
  height: 3px !important;
  background: #d1d5db;
  opacity: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.slider-dots-navigation .swiper-pagination-bullet-active {
  background: #fbbf24;
  width: 30px;
}

/* Swiper Navigation Buttons - Hidden */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .customer-feedback-section h2 {
    font-size: 28px;
  }

  .customer-feedback-section .section-tagline {
    font-size: 14px;
  }

  .user-review-card {
    margin: 0 10px !important;
    margin-top: 40px !important;
    padding-top: 25px !important;
  }

  .card-header-section {
    top: -40px;
    width: calc(100% - 30px);
    margin: 0 15px 8px 15px;
  }

  .photo-col {
    width: 35%;
    padding: 18px 10px;
  }

  .info-col {
    width: 65%;
    padding: 15px 12px;
  }

  .user-photo-circle {
    width: 88px;
    height: 88px;
  }

  .review-message {
    margin: -20px 15px 6px 15px;
    font-size: 12px;
  }

  .quote-symbol {
    width: 25px;
    height: 25px;
    margin: 0 auto 10px auto;
  }


  .customer-feedback-section .section-tagline {
    font-size: 14px;
    padding: 0px 20px;
  }

  .feedback-slider-container {
    padding: 0px 20px 60px !important;
    position: relative;
  }
}

/*=================END Testimonials ==================*/


/*=============About us Page============*/

/* Hero Section Styling */
.hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 25.52%, rgba(102, 102, 102, 0.00) 100%);
  z-index: 1;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* About Us Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 70px;
    padding: 0 40px;
}

/* Breadcrumb Styling */
.breadcrumb-container {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 2;
}

.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  list-style: none;
}

.custom-breadcrumb .breadcrumb-item {
  color: white;
  display: flex;
  align-items: center;
}

.custom-breadcrumb .breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #FFA500;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: white;
}

/* Arrow Image Styling */
.breadcrumb-arrow {
  height: 12px;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: 200px;
  }
.hero-title {
    font-size: 1.2rem;
    line-height: 32px;
}

  .breadcrumb-container {
    bottom: 20px;
    left: 20px;
  }

  .custom-breadcrumb {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
 .hero-title {
    font-size: 1.2rem;
    line-height: 32px;
}

  .breadcrumb-container {
    bottom: 15px;
    left: 15px;
  }
}



/* Who Are We Section */
.who-are-we-section {
  background-color: #ffffff;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

/* Text Content */
.text-content {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.text-content p {
  margin-bottom: 20px;
}

/* Image Container */
.image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.who-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {

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

  .image-container {
    min-height: 300px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .text-content {
    font-size: 0.95rem;
  }

  .image-container {
    min-height: 250px;
  }
}



/* Operation Section */
.operation-section {
  background-color: #ffffff;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

/* Map Container */
.map-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  height: 300px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.world-map-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.intro-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Country List Container */
.country-list-container {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Country Categories */
.country-category {
  margin-bottom: 25px;
}

.category-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.category-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.country-list {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {


  .map-container {
    margin-bottom: 40px;
    height: 250px;
    min-height: 250px;
  }

  .country-list-container {
    padding-left: 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .map-container {
    padding: 20px;
    height: 200px;
    min-height: 200px;
  }
}


.gap-about {
  padding-top: 60px;
  /* Desktop */
}

@media (max-width: 992px) {
  .gap-about {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .gap-about {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .gap-about {
    padding-top: 30px;
  }
}

/*=============End About us Page============*/



/*============ Products & Services Page ============*/
/* Product Grid Section */
.product-grid-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Product Card */
.product-card {
  margin-bottom: 40px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Product Image Container */
.product-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Product Title */
.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0 10px;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 991px) {
  .product-grid-section {
    padding: 60px 0;
  }

  .product-image-container {
    height: 220px;
  }

  .product-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .product-image-container {
    height: 200px;
  }

  .product-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .product-grid-section {
    padding: 40px 0;
  }

  .product-image-container {
    height: 180px;
  }

  .product-card {
    margin-bottom: 25px;
  }

  .product-title {
    font-size: 0.9rem;
  }
}

/*============end Products & Services Page ============*/


/*==============Product Detail===========*/

/* Product Detail Section */
.product-detail-section {
  padding: 40px 0;
  background-color: #ffffff;
}

/* Button Group */
.button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.info-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  /* underline remove */
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-button.active {
  background-color: #FDB913;
  color: #000;
}

.info-button:hover {
  background-color: #FDB913;
  color: #000;
}


/* Product Descriptions Title */
.section-heading {
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 10px;
  /* text-align: start; */
}

/* Description Text */
.description-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}



/* Responsive Design */
@media (max-width: 991px) {
  .product-detail-section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .button-group {
    gap: 10px;
  }

  .info-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .spec-label {
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .section-heading {
    font-size: 1.2rem;
    padding-bottom: 0px !important;
  }

  .description-text {
    font-size: 0.9rem;
  }

  .info-button {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .spec-row {
    flex-direction: column;
    gap: 5px;
  }

  .spec-label {
    min-width: auto;
  }
}

.image-wrapper {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* full box fill karega */
  border-radius: 10px;
  /* optional styling */
}

.product-meta p {
  color: #454545;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.product-meta strong {
  color: #231F20;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.product-point {
  padding: 0px;
}

.custom-divider {
  width: 100%;
  max-width: 574px;
  height: 1px;
  background: #D3D3D3;
  margin: 20px auto;
}


/* Tablets */
@media (max-width: 992px) {
  .image-wrapper {
    height: 450px;
  }
}

/* ðŸ“± Mobile */
@media (max-width: 576px) {
  .image-wrapper {
    height: 300px;
  }

  .product-meta p {
    color: #454545;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
  }

  .product-point {
    padding: 0px 16px;
  }

}

.custom-divider-mid {
  width: 100%;
  max-width: 85%;
  height: 1px;
  background: #D3D3D3;
  margin: 30px auto 0px auto;
}

.parent {
  padding: 60px 0px 20px 0px;
}

.product-showcase {
  border-radius: 12px;
}

/* --- Thumbnail Column Parent --- */
.col-lg-1.order-lg-1 {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 150px;
}

/* --- Thumbnail Column --- */
.thumbnail-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid transparent;
  min-height: 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumbnail:hover {
  border-color: var(--yellow-accent);
}

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

/* --- Main Image Column --- */
.col-lg-6.order-lg-2 {
  flex: 1;
  max-width: calc(100% - 120px - 41.666667%);
}

/* --- Main Image --- */
.main-image-container {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Product Info --- */
.product-info-section {
  display: flex;
  flex-direction: column;
}


.product-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: start;
  padding: 0px;
}


.product-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.brand-info {
  color: #666;
}

.brand-label {
  font-weight: 500;
}

.brand-name {
  color: #000;
  font-weight: 600;
}

.rating-stars {
  color: #ffc107;
  display: flex;
  gap: 2px;
}

.stock-status {
  font-weight: 600;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-description p {
  margin-bottom: 0;
}

/* --- Buttons --- */
.product-buttons {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.btn-dark-custom {
  background-color: var(--text-black);
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  border-radius: 22px;
}


.btn-dark-custom:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
}


.btn-yellow-custom {
  background-color: var(--one-background-color);
  color: var(--text-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 0.8rem;
  text-decoration: none;
  text-align: center;
  border-radius: 24px;
}


.btn-yellow-custom:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
  color: white;
}

.custom-divider-right {
  width: 100%;
  max-width: 574px;
  height: 1px;
  background: #D3D3D3;
  margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 991px) {

  .parent {
    padding: 40px 0px 20px 0px;
  }

  .col-lg-1.order-lg-1 {
    display: block;
    width: 100%;
  }

  .col-lg-6.order-lg-2 {
    max-width: 100%;
  }

  .thumbnail-column {
    flex-direction: row;
    overflow-x: auto;
    margin-bottom: 20px;
    height: auto;
    margin-top: 40px;
  }


  .thumbnail {
    min-width: 100px;
    width: 100px;
    flex: 0 0 auto;
  }

  .main-image-container {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .custom-divider-mid {
    width: 100%;
    max-width: 85%;
    height: 1px;
    background: #D3D3D3;
    margin: 0px auto 0px auto;
  }


  .product-title {
    font-size: 1.5rem;
  }

  .product-buttons {
    flex-direction: column;
  }
}
/*============== end Product Detail===========*/







 /*======================= Blog Page =================*/

 .blog-card-body {
    padding: 10px 25px;
}
 

/* Blog Listing Section */
.blog_listing {
    padding: 60px 0;
}

.gap_cus {
    margin: 40px 0;
}

/* CRITICAL: Make Bootstrap row work with sticky */
.blog_listing .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* This is CRITICAL for sticky to work */
}

/* Make sure columns don't have overflow issues */
.blog_listing .col-lg-8,
.blog_listing .col-lg-4 {
    position: relative;
}

/* Blog Card Styles */
.blog-card-blog {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.blog-card-body {
    padding: 10px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    color: #585B6F;
    padding: 25px 0;
}

.blog-meta .author,
.blog-meta .post_date {
    gap: 8px;
}

/* .blog-meta img {
    width: 20px;
    height: 20px;
    object-fit: cover;
} */

.blog-meta p {
    font-size: 14px;
    font-family: Poppins;
}

.blog-card-title {
    color: var(--background-color);
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-text {
    color: var(--gry-text);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-more-btn {
    margin-top: auto;
    padding-bottom: 25px;
}

.read-more-btn {
    color: var(--background-color);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
    gap: 12px;
}

.arrow-icon-read {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon-read {
    transform: translateX(5px);
}

.btn_gap {
    margin: 25px 0;
}

/* ============================================
   STICKY SIDEBAR - MAIN IMPLEMENTATION
   ============================================ */
.sidebar-box {
    padding: 15px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    background: #fff;
    
    /* Sticky positioning */
    position: -webkit-sticky; /* Safari support */
    position: sticky;
    top: 20px; /* Distance from top - adjust if you have a header */
    align-self: flex-start; /* CRITICAL for sticky to work */
}

.sidebar-box-body {
    padding: 10px;
}

/* Search Wrapper */
.search-wrapper {
    margin-bottom: 30px;
}

.search-wrapper .position-relative {
    position: relative;
}

.search-wrapper .search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 3px;
    border: 1px solid rgba(88, 91, 111, 0.07);
    font-family: Poppins;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-wrapper .search-input:focus {
    outline: none;
    border-color: rgba(88, 91, 111, 0.07);
    box-shadow: 0 0 0 0.2rem rgba(198, 203, 223, 0.25);
}

.search-wrapper .search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

/* Sidebar Title */
.sidebar-title {
    color: var(--background-color);
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(88, 91, 111, 0.1);
}

/* Sidebar Items */
.sidebar-item {
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(88, 91, 111, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-item:hover {
    background-color: rgba(88, 91, 111, 0.02);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 3px;
}

.siderbar-item-one {
    width: 30%;
    flex-shrink: 0;
}

.siderbar-item-two {
    width: 70%;
}

.side_img {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    overflow: hidden;
}

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

.sidebar-item:hover .side_img img {
    transform: scale(1.1);
}

.side_title h5 {
    color: var(--background-color);
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side_title p {
    color: #585B6F;
    font-family: Space Grotesk;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .blog-card-title {
        font-size: 18px;
        line-height: 23px;
    }
    
    .blog-card-text {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 991px) {
    /* Disable sticky on tablet and mobile */
    .blog_listing .row {
        align-items: stretch;
    }
    
    .sidebar-box {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px;
    }
    
    .blog-image {
        height: 220px;
    }
    
    .gap_cus {
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    .blog_listing {
        padding: 40px 0;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-card-body {
        padding: 10px 20px;
    }
    
    .blog-meta {
        padding: 20px 0;
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-card-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .blog-card-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .view-more-btn {
        padding-bottom: 20px;
    }
    
    .sidebar-box {
        padding: 12px;
    }
    
    .side_img {
        width: 80px;
        height: 80px;
    }
    
    .side_title h5 {
        font-size: 14px;
        line-height: 20px;
    }
    
    .side_title p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .blog-image {
        height: 180px;
    }
    
    .blog-card-title {
        font-size: 16px;
        line-height: 20px;
    }
    
    .blog-card-text {
        font-size: 13px;
        line-height: 18px;
    }
    
    .read-more-btn {
        font-size: 14px;
    }
    
    .sidebar-item {
        padding: 15px 0;
    }
    
    .side_img {
        width: 70px;
        height: 70px;
    }
}

 /*======================= End Blog Page ================*/

 .blog-detail_page_1 .blog-detail_page_image img {
      height: 400px;
 }
 .blog-detail-page-title {
    font-size: 25px;
    font-weight: 700;
 }
 .blog-detail-page-text {
    text-align: justify;
 }
.brands-section p{    text-transform: capitalize;}
.title_line2{display:none;}
@media(min-width:1200px){
	.para-serv{width:85%;margin:auto;}
.right-image img {
	height: 480px;}
}
.user-review-card{margin-bottom:10px !important;}


/* 9-4-26 sy */
article#post-645 header {
    display: none;
}

article#post-645 .entry-content > p {
    display: none;
}



/*for product detail page */

/* ───────── HERO ───────── */
.hero {
  background: var(--text-black);
  padding: 40px 5% 50px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Slider */
.slider-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.slides { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.slides:hover .slide img { transform: scale(1.04); }
.slide-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--one-background-color);
  color: var(--text-black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  padding: 4px 14px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: 1.5px solid rgba(255,255,255,.15);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 5;
}
.slider-btn:hover { background: var(--one-background-color); border-color: var(--one-background-color); color: #000; }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 12px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.active { background: var(--one-background-color); transform: scale(1.3); }
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumb {
  width: 80px; height: 55px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  flex-shrink: 0;
}
.thumb.active { border-color: var(--one-background-color); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Hero Info Panel */
.hero-info { color: var(--text-white); margin: auto 0px;}
.hero-badge-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.badge-new { background: var(--one-background-color); color: #000; }
.badge-featured { background: transparent; border: 1.5px solid var(--one-background-color); color: var(--one-background-color); }
.hero-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.hero-sub {
  font-size: .9rem;
  color: #aaa;
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.price-block {
  background: rgba(254,200,97,.1);
  border: 1.5px solid rgba(254,200,97,.25);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.price-label { font-size: .75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.price-main {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--one-background-color);
  letter-spacing: 1px;
}
.price-main span { font-size: 1rem; font-weight: 600; margin-right: 4px; }
.price-note { font-size: .78rem; color: #888; margin-top: 4px; }
.price-note i { color: var(--one-background-color); }

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.spec-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-icon { color: var(--one-background-color); font-size: 1rem; width: 18px; text-align: center; }
.spec-label { font-size: .7rem; color: #888; text-transform: uppercase; letter-spacing: .8px; }
.spec-val { font-weight: 600; font-size: .9rem; color: #fff; }

.hero-btns { display: flex; flex-direction: column; gap: 10px; }
.btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .92rem;
  padding: 14px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .4px;
  transition: all .2s;
}
.btn-primary { background: var(--dark-yellow); color: #000; }
.btn-primary:hover { background: var(--one-background-color); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,191,56,.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--one-background-color); color: var(--one-background-color); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #d40000; transform: translateY(-1px); }

/* ───────── SECTION COMMON ───────── */
.section { padding: 60px 5%; }
.section-alt { background: var(--sec-background-color); }
.section-white { background: #fff; }
.sec-header { margin-bottom: 30px; }
.sec-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--one-background-color);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px; height: 2.5px;
  background: var(--one-background-color);
  border-radius: 2px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-black);
  text-transform: uppercase;
  letter-spacing: .5px;
}



/* ───────── DESCRIPTION ───────── */

.desc-text p { font-size: .97rem; line-height: 1.8; color: var(--gry-text); margin-bottom: 16px; }
.desc-text p:last-child { margin-bottom: 0; }
.desc-side {
  background: var(--text-black);
  border-radius: 12px;
  padding: 28px;
  color: #fff;
}
.desc-side-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
  color: var(--one-background-color);
}
.highlight-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.highlight-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: #ccc;
}
.highlight-list li i { color: var(--one-background-color); width: 16px; }



/* ───────── CTA STRIP ───────── */
.cta-strip {
  background: var(--text-black);
  padding: 50px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.cta-strip-text p { color: #aaa; font-size: .92rem; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }





/* ───────── WHATSAPP FLOAT ───────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: waFloat 2.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.wa-btn i { font-size: 1.2rem; }
.wa-badge {
  position: absolute;
  top: -6px; right: -4px;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 1.8s infinite;
}
@keyframes waFloat {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}
@keyframes pulse {
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.3); opacity: .7; }
}



/* ───────── RESPONSIVE ───────── */
@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .desc-wrap { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 2rem; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .wa-btn span { display: none; }
  .wa-btn { padding: 14px; border-radius: 50%; }
}
@media(max-width: 480px) {
  .cars-grid { grid-template-columns: 1fr; }
  .hero { padding: 24px 4% 32px; }
  .section { padding: 40px 4%; }
}

.blog-detail-page-text h3 {
    text-align: left;
}
.breadcrumb-container nav a, .breadcrumb-container nav {
    color: #fff;
}
.blog-detail-page-text h2 {
    font-size: 2rem;
    text-align: left;
    word-spacing: 4px;
    margin-top: 26px !important;
    margin-bottom: 12px;
}
.blog-detail-page-title {
    font-size: 2rem;
    font-weight: 600;
}