/**************************************
    Default Styles
***************************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --fallback-fonts: 
    /* Modern system UI fonts */
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue",
    
    /* Windows/macOS classics */
    Arial, Helvetica, Tahoma, Verdana, "Trebuchet MS", Geneva,
    "Gill Sans", "Lucida Grande", "Lucida Sans Unicode", "Franklin Gothic Medium",
    "Century Gothic", Calibri, Cambria,

    /* Serif options */
    Garamond, Georgia, Times, "Times New Roman", Palatino,
    "Palatino Linotype", Baskerville, "Book Antiqua",

    /* Monospace options */
    Courier, "Courier New", Consolas, Monaco,

    /* Extra coverage fonts */
    "Noto Sans", "Noto Serif", "Noto Sans JP", "Noto Sans KR",
    "Droid Sans", "Droid Serif", "Liberation Sans", "Liberation Serif",

    /* Generic fallbacks */
    monospace, serif, sans-serif;
  --font-primary: 'Montserrat', var(--fallback-fonts);
  --color-one: #ED1F27;
  --color-two: #024E7E;
  --dark:#1A0808;
  --dark2: #090708;
  --dark3: #001B33;
  --color-white: #fff;
    --color-default: #5a5a5a;
    --transition:all ease 0.5s;
  }

  * {
  scrollbar-width: thin;
  scrollbar-color: var(--color-one) transparent;
}
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color-one);
}

::selection {
  background:var(--color-one);
}

::selection {
  color: #fff;
  text-shadow: none;
}

:root {
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  font-family: var(--font-primary);
}


ul, ol, ul li, ol li{
  margin: 0;
  padding: 0;
  list-style: none;
}

a{
  text-decoration: unset !important;
  color: unset;
}

img{
  max-width: 100%;
  height: auto;
}

.swiper-container{
  width: 100%;
  height: 100%;
}

/* html{
  margin-top: 0 !important;
} */

/* 
======================================
# Container Width set
====================================== */

@media (min-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1520px;
  }
}
@media (min-width: 1700px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1620px;
  }
}
/* ==============================
# Back To Top Button
============================== */
.rn-progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #f8e3c3;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  .rn-progress-parent.rn-backto-top-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .rn-progress-parent::after {
  position: absolute;
  font-family: 'remixicon' !important;
    content: "\ea76";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-one);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
  .rn-progress-parent:hover::after {
    color: var(--color-one); }
  .rn-progress-parent::before {
    position: absolute;
    font-family: 'remixicon' !important;
    content: "\ea76";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: #0d0d12;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .rn-progress-parent svg path {
    fill: none; }
.rn-progress-parent svg.rn-back-circle path {
  stroke: var(--color-one);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}


/* =====================
 # Top bar
====================== */

.top-bar{
  display: block;
  padding: 10px 0;
  background: var(--dark);
}

.top-bar .header-topbar-icon{
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 30px;
}

.top-bar .header-topbar-icon li{
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.top-bar .header-topbar-icon li i{
  margin-inline-end: 8px;
}

.top-bar .header-topbar-icon li a{
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.top-bar .header-topbar-icon li a:hover{
color: var(--color-one);
}

.top-bar .social-media{
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 20px;
  justify-content: end;
}
.top-bar .social-media li{
   color: #fff;
  font-size: 14px;
}

.top-bar .social-media li a{
   transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.top-bar .social-media li a:hover{
  color: var(--color-one);
}


/* Main Menu */

.header {
    padding: 15px 0;
    background: #fff;
}

.header .logo img{
max-height: 60px;
}

@media (min-width: 1200px) {
    .hamberger-button {
        display: none;
    }

    .popup-mobile-menu-header {
        display: none;
    }

    .popup-mobile-menu .mainmenu {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .popup-mobile-menu .mainmenu{
      gap: 25px;
    }

    .popup-mobile-menu .mainmenu li {
        position: relative;
    }

    .popup-mobile-menu .mainmenu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 600;
        color: #333333;
        white-space: nowrap;
        transition: 0.3s;
    }

    .main-header.without_banner .popup-mobile-menu .mainmenu a {
        color: rgb(102, 102, 102);
        font-weight: 500;
    }

    .popup-mobile-menu .mainmenu a .dropdown-indicator {
        font-size: 12px;
        line-height: 0;
        margin-inline-start: 5px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu {
        display: block;
        position: absolute;
        left: 0px;
        top: calc(100% + 50px);
        margin: 0;
        padding: 15px;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 10px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown:hover .submenu {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu li {
        min-width: 200px;
        line-height: 26px;
        padding: 2px 0px;
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu a {
        padding: 6px 15px;
        font-size: 14px;
        text-transform: none;
        font-weight: 400;
        color: var(--color-default);
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        background: transparent;
}

    .popup-mobile-menu .mainmenu .has-droupdown .submenu a:hover {
        background: var(--color-two);
        border-radius: 5px;
       
        color: var(--color-white);
    }

    .popup-mobile-menu .mainmenu > li:last-child > a {
        background: var(--color-two);
        padding: 8px 20px;
        border-radius: 4px;
        color: var(--color-white);
        transition:all 0.5s;
        -webkit-transition:all 0.5s ;
        -moz-transition:all 0.5s ;
        -ms-transition:all 0.5s ;
        -o-transition:all 0.5s ;
}

     .popup-mobile-menu .mainmenu > li:last-child > a:hover {
       background: var(--color-one);
       color: var(--color-white);
    }

}


@media (max-width: 1199px) {
  .header .logo img {
	max-height: 50px;
}
    .hamberger-button {
        height: 40px;
        line-height: 40px;
        width: 40px;
        text-align: center;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
        border-radius: 5px;
        outline: none;
        color: var(--color-two);
        border: 0 none;
        padding: 0;
        background: var(--color-white);
        display: block;
        font-size: 16px;
    }

    .main-header.without_banner .hamberger-button {
        box-shadow: unset;
        background: #f0f0f0;
    }

    .popup-mobile-menu {
        z-index: 9999;
        position: fixed;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s ease-out;
    }

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

    .popup-mobile-menu .inner {
        width: 320px;
        z-index: 999;
        position: absolute;
        background: var(--color-white);
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
        height: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        opacity: 0;
        left: -150px;
        transition: all 0.5s ease-out;
    }

    .popup-mobile-menu.active .inner {
        opacity: 1;
        left: 0;
        overflow-y: auto;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header {
        display: flex;
        border-bottom: 1px solid #eeeeee;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header .logo img {
        max-height: 45px;
    }

    .popup-mobile-menu .inner .popup-mobile-menu-header .close-menu .close-button {
        background: var(--color-white);
        border: 0 none;
        color: var(--color-default);
        width: 40px;
        height: 40px;
        font-size: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    }

    .popup-mobile-menu .inner .mainmenu .has-droupdown .submenu {
        display: none;
    }

    .popup-mobile-menu .mainmenu {
        list-style: none;
        margin: 0;
        padding: 15px 20px;
    }

    .popup-mobile-menu .mainmenu li {
        margin: 0;
    }

    .popup-mobile-menu .mainmenu li + li {
        border-top: 1px solid #f0f0f0;
    }

    .popup-mobile-menu .mainmenu .has-droupdown > a {
        position: relative;
    }

    .popup-mobile-menu .mainmenu li a {
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 500;
        color: #6f6b80;
    }

    .popup-mobile-menu .mainmenu li a:hover,
    .popup-mobile-menu .mainmenu li a.open {
        color: var(--color-one);
    }

    .popup-mobile-menu .mainmenu li a .dropdown-indicator {
        transition: all 0.3s;
    }

    .popup-mobile-menu .mainmenu li a.open .dropdown-indicator {
        transform: rotate(180deg);
    }

    .popup-mobile-menu .mainmenu .has-droupdown .submenu {
        padding: 0;
        max-width: 100%;
        list-style: none;
        padding-inline-start: 14px;
        display: none;
    }
}



/* =============== homepage banner ============= */

.swiper-homepage-image .swiper-pagination .swiper-pagination-bullet{
  background: #f5f5f5;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.swiper-homepage-image .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 100px;
  background: #fff;
}

@media (max-width:575px) {
  .swiper-homepage-image .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 55px;
  }
}

@media (min-width:768px) {
.swiper-homepage-image .swiper-slide .mob-image{
  display: none;
}  
}

@media (max-width:767px) {
.swiper-homepage-image .swiper-slide .web-image{
  display: none;
}  
}

/* ====================================
# Footer
==================================== */
.main-footer{
  background: #212529;
  display: block;
  width: 100%;
  padding: 80px 0 20px 0;
}

.main-footer .logo-box{
  display: block;
}

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

.main-footer .logo-box p{
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  margin-top: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.main-footer .logo-box .social-links{
  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* Explicitly left-align */
  gap: 16px;
  margin-top: 20px;
  padding-left: 0; /* Ensure no padding is pushing content */
  list-style: none; /* Remove any default list styling */
}

.main-footer .logo-box .social-links li{
  display: block;
  margin: 0; /* Remove any default margin */
}

.main-footer .logo-box .social-links li a{
  font-size: 16px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  color: #212529;
}

.main-footer .logo-box .social-links li a:hover{
  background: var(--color-one);
  color: #fff;
}

@media (min-width:992px) {
  .main-footer .logo-box{
    padding-inline-end: 30px;
    border-right: 1px solid #4f565e;
  }
}

.main-footer .footer-list h4{
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  margin: 0;
}

.main-footer .footer-list ul{
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}

.main-footer .footer-list ul li{
  margin: 0;
  padding: 0;
  list-style: none;
} 

.main-footer .footer-list ul li + li{
  margin-top: 10px;
}

.main-footer .footer-list ul li a{
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-primary);
}

.main-footer .footer-list ul li a:hover{
   text-decoration: underline !important;
}

.main-footer .copy-right-info{
  border-top: 1px solid #4f565e;
  padding-top: 20px;
  margin-top: 35px;
}

.main-footer .copy-right-info p{
  font-size: 12px;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.main-footer .copy-right-info h5{
  margin: 0;
  margin-top: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* ==========================
# Section Header
========================== */

.section-header .top-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primaryColor);
	display: block;
	position: relative;
	z-index: 1;
	padding: 0 32px;
	width: fit-content;
	margin: 0 auto;
}

.section-header .top-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/title-shape.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.section-header .top-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/title-shape.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.section-header .top-title.white-top-title {
    color: var(--whiteColor);
}

.section-header .top-title.white-top-title::before {
    background-image: url(../images/title-shape-2.png);
}

.section-header .top-title.white-top-title::after {
    background-image: url(../images/title-shape-2.png);
}

.section-header h2{
  font-size: 48px;
  color: #0d003b;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  margin-top: 10px;
}

.section-header p{
  font-size: 18px;
  font-weight: 500;
  color: #777777;
  line-height: 1.6;
  margin: 0;
  margin-top: 20px;
}

@media (max-width:767px) {
  .section-header h2{
    font-size: 35px;
  }
  .section-header p{
    font-size: 15px;
  }
}

.section-header.left .top-title{
  margin: 0;
}

/* ==================================
# button Design
================================== */
.btn-01{
  display: block;
  width: fit-content;
  line-height: normal;
  padding: 18.5px 38px;
  border-radius: 50px;
  border: none;
  position: relative;
  z-index: 1;
  transition: all ease 0.5s;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  background: linear-gradient(272deg, #f15523 31.24%, #ff9615 99.07%);
  color: #fff;
}

.btn-01::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background-color: var(--color-two);
	border-radius: 50px;
	z-index: -1;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
}

.btn-01:hover::before{
  width: 100%;
  right: auto;
  left: 0;
}
.btn-01:hover{
  color: #fff;
}

/* 
===========================
# About us 
=========================== */
.about-us-area .about-us-img {
	padding-bottom: 120px;
	margin-right: 20px;
}

.about-us-area .about-us-img .about-img-2 {
	border-radius: 20px;
	max-width: 502px;
}

.about-us-area .about-us-img .about-img-3 {
	border-radius: 20px;
	max-width: 282px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-us-area .about-us-img .about-shape {
	border-radius: 20px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	opacity: 0.1;
}

.about-us-area .experience {
    background-color: var(--color-two);
    border-radius: 100px;
    padding: 19px 38px;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.about-us-area .experience h3 {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 0;
}

.about-us-area .experience span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

.about-us-area .section-header p{
  margin-bottom: 43px;
}
.about-us-area p{
  /* margin: 0; */
  margin-bottom: 43px;
  font-weight: 500;
  color: #777777;
  line-height: 1.6;
}


.about-us-area .about-single-item {
    margin-bottom: 25px;
}

.about-us-area .about-single-item i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    background-color: #e4f6ff;
    font-size:30px;
    display: inline-block;
    color: var(--color-two);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.about-us-area .about-single-item h3 {
    font-size: 20px;
    margin-bottom: 0;
}

@media (max-width:767px) {
   .about-us-area .about-us-img {
    padding-bottom: 0;
    margin-right: 0;
}

.about-us-area .about-us-img .about-img-2 {
    max-width: 100%;
    border-radius: 10px;
}

.about-us-area .about-us-img .about-img-3 {
    position: unset;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.about-us-area .experience {
    padding: 20px;
    border-radius: 10px;
    position: initial;
    margin-top: 0;
}

.about-us-area .experience h3 {
    font-size: 27px;
}

.about-us-area .experience span {
    font-size: 16px;
}

.about-us-area p{
  margin-bottom: 20px;
}

}

/* .about-single-item:hover i {
    background-color: var(--color-one);
    color: var(--color-white);
} */

/* =============
# Brand Scroll
============= */

.brand-section .brandsection_featurescroll{
  display: flex;
  overflow: hidden;
  background-color: var(--color-two);
}

.brand-section .brandsection_featurescroll .brandfeature_scroll {
	flex-direction: row;
	flex: none;
	align-items: stretch;
	display: flex;
	padding: 0px;
	margin: 0px;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
0% {transform:translateX(0px);}
100% {transform:translateX(calc(-100% - 1.25rem));}
}


.brand-section .brandsection_featurescroll .brandfeature_card {
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	color: #ffffff;
	border-radius: 16px;
	flex: none;
	align-items: center;
	font-size: 1.2rem;
	display: flex;
	margin: 0px 15px;
}

.brand-section .brandsection_featurescroll .brandlogo-img {
	width: 100%;
	height: 60px;
}

/* ============================
# Why Choose us
============================ */
.why-choose-us .inner-items {
    max-width: 635px;
    margin-top: 40px;
}

.why-choose-us .inner-items .item {
    display: flex;
    align-items: center;
    padding: 17px 20px;
    border-radius: 20px;
    background-color: #FFEBE4;
    margin-bottom: 20px;
}

.why-choose-us .inner-items .item .icon {
    display: inline-block;
    width: 75px;
    height: 75px;
    min-width: 75px;
    min-height: 75px;
    line-height: 75px;
    font-size: 40px;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.why-choose-us .inner-items .item .icon img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    max-height: 40px;
}

.why-choose-us .inner-items .item .title {
    margin-left: 20px;
}

.why-choose-us .inner-items .item .title h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-choose-us .inner-items .item .title p {
    margin-bottom: 0;
    font-weight: 500;
    max-width: 500px;
}

.why-choose-us .inner-items .item.bg-E7E9FF {
    background-color: #E7E9FF;
}

.why-choose-us .inner-items .item.bg-FFE4C5 {
    background-color: #FFE4C5;
}

.why-choose-us .inner-items .item:last-child {
    margin-bottom: 0;
}

.why-choose-us .inner-items .item:nth-child(2n) {
    position: relative;
    right: -45px;
}

.why-choose-us .inner-items .item:hover .icon {
    background-color: var(--dark2);
}


.img-border-reduis-design-1{
  border-radius: 0 165px 0 0 !important;
}

@media (max-width:1400px) {
  .why-choose-us .inner-items .item:nth-child(2n) {
	position: inherit;
}
}

@media (max-width:767px) {
  .why-choose-us .inner-items .item{
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  .why-choose-us .inner-items .item .title{
    margin: 0;
  }
}

/* ==================================
# Sevices Section
================================== */
.services-section .paragraph{
  max-width: 475px;
  margin-left: auto;
}

.services-section .paragraph p{
  line-height: 26px;
  color: var(--color-default);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.services-section .services-card{
  padding: 40px 40px 40px 40px;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.services-section .services-card:hover{
  transform: translateY(-18px);
  -webkit-transform: translateY(-18px);
  -moz-transform: translateY(-18px);
  -ms-transform: translateY(-18px);
  -o-transform: translateY(-18px);
  z-index: 9;
}

.services-section .services-card .content h3{
  color: var(--dark);
  text-decoration: none;
  font-size: 23.5px;
  margin-bottom: 15px;
  font-weight: 700;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2;
  transition: var(--transition);
}

.services-section .services-card:hover h3{
  color: var(--color-one);
}

.services-section .services-card .content p{
font-weight: 500;
  margin-bottom: 0;
  color: var(--color-default);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.services-section .services-card .image{
  position: relative;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


@media (max-width:767px) {
  .services-section .services-card{
    padding: 30px;
  }
}


.bg-linear{
  background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
}








/* ======================
# Testimonilas
====================== */

.swiper-testimonilas .swiper-slide{
  padding: 20px;
  height: auto;
}

.swiper-testimonilas .testimonilas-box{
  position: relative;
  display: block;
  height: 100%;
 padding: 35px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
   border-radius: 10px; 
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px; 
  position: relative;
}


.swiper-testimonilas .testimonilas-box .testimonial-author-area{
  /* padding: 35px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
background: #f1f1f1;
   border-radius: 10px; 
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;  */
  position: relative;
}

.swiper-testimonilas .testimonilas-box .testimonial-author-area p{
  font-size: 18px;
  font-family: var(--font-primary);
  color: #001B33;
  line-height: 28px;
  font-style: italic;
  margin: 0;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.swiper-testimonilas .testimonilas-box .testimonial-author-area img {
	position: absolute;
	bottom: -55px;
	right: 10px;
	opacity: 0.3;
	width: 91px;
}

.swiper-testimonilas .testimonilas-box .testimonial-author-area .stars{
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
}

.swiper-testimonilas .testimonilas-box .testimonial-author-area .stars li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  background: rgb(253, 165, 1);
  color: #fff;
}

.swiper-testimonilas .testimonilas-box  .auto-info-area{
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.swiper-testimonilas .testimonilas-box  .auto-info-area .img img{
  height: 90px;
  width: 90px;
  min-width: 90px;
  border-radius: 50%;
  display: block;
  border: 1px solid #f1f1f1;
}

.swiper-testimonilas .testimonilas-box  .auto-info-area .man-text{
  padding-left: 16px;
}

.swiper-testimonilas .testimonilas-box  .auto-info-area .man-text h4{
font-size: 20px;
font-weight: 600;
color: var(--color-two);
margin: 0;
}
.swiper-testimonilas .testimonilas-box  .auto-info-area .man-text p{
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #6f6b80;
  margin-top: 5px;
}

@media (max-width:767px) {
  .swiper-testimonilas .swiper-slide{
    padding: 10px;
  }
  .swiper-testimonilas .testimonilas-box{
    padding: 20px;
  }
  .swiper-testimonilas .testimonilas-box .testimonial-author-area p{
    font-size: 15px;
    line-height: 1.5;
  }
}


/* =========================
# lets Fix Area
========================= */

.bg-0d003b {
  background-color: #0d003b;
}

.lest-fix-area {
    position: relative;
}

.lest-fix-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-white);
}

.lest-fix-wrap {
    padding: 111px 108px;
    border-radius: 20px;
}

.lest-fix-content {
    max-width: 745px;
    margin: auto;
    margin-top: -5px;
}

.lest-fix-content h2 {
    color: var(--color-white);
    font-size: 48px;
    margin-bottom: 38px;
    font-weight: 700;
}

.lest-fix-content .call i {
    width: 49px;
    height: 49px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    color: var(--color-white);
    background-color: #f15523;
    font-size: 24px;
}

.lest-fix-content .call a {
    margin-left: 15px;
    font-size: 34px;
    font-weight: 700;
    color: #f15523;
    text-decoration: none;
}

.lest-fix-content .or {
    margin: 0 38px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.lest-fix-content .btn-01::before {
    background-color: var(--color-white);
}

.lest-fix-content .btn-01:hover {
    color: #f15523;
}


@media only screen and (max-width: 767px) {
    .lest-fix-wrap {
        padding: 25px;
    }

    .lest-fix-content h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .lest-fix-content .call a {
        font-size: 23px;
    }

    .lest-fix-content .or {
        display: none;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lest-fix-wrap {
        padding: 50px;
    }

    .lest-fix-content h2 {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .lest-fix-content .call a {
        font-size: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .lest-fix-content h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}


.lest-fix-area .shape {
	position: absolute;
	z-index: -1;
}

.lest-fix-area .shape.shape-2 {
	bottom: 50px;
	left: 55px;
	animation: rotation 15s infinite linear;
}

.lest-fix-area .shape.shape-3 {
	top: 50px;
	right: 55px;
	animation: rotation 15s infinite linear;
}

.lest-fix-area .shape.shape-4 {
	top: 0;
	left: 0;
	animation: off-on 10s infinite linear;
}

.lest-fix-area .shape.shape-5 {
	bottom: 0;
	right: 0;
	animation: off-on 15s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
@keyframes moveBounce {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(50px);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes off-on {
	0% {
	  opacity: 0;
	}
	75% {
 	  opacity: 1;
 	}
	100% {
 	  opacity: 0;
	}
 }
@keyframes radius {
	00% {
		border-radius: 100%;
	}
	50% {
		border-radius: 0;
	}
	100% {
		border-radius: 100%;
	}
}

@media (max-width:1199px) {
  .lest-fix-area .shape {
    display: none;
  }
}

@media (max-width:575px) {
  .lest-fix-content .btn-01{
    margin: auto;
  }
}


/* =======================
# Faq Section
======================= */

.faq-section{
  display: block;
}
.faq-section .faq-items{
  margin-top: 30px;
}

.faq-section .faq-items .items h4{
  font-size: 20px;
  text-align: start;
  font-weight: 600;
  color: var(--dark2);
  margin: 0;
  text-transform: capitalize;
}

.faq-section .faq-items .items p {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	text-align: start;
	margin: 0;
	margin-top: 10px;
	color: #1e1e1e;
	letter-spacing: 0.5px;
}

/* =======================
# Blog Section
======================= */
.blog-section .blog-items{
  margin-top: 30px;
}
.blog-section .blog-items .items{
  padding: 24px;
  border-radius: 15px;
  border: 1px solid #e6e6e6;
  background: var(--color-white);
}

.blog-section .blog-items .items .thumb{
  border-radius: 15px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.blog-section .blog-items .items .body-text{
  position: relative;
}

.blog-section .blog-items .items .body-text .tag-meta{
  position: absolute;
  top: -50px;
  left: 0;
  display: inline-block;
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.32px;
  padding: 6px 12px;
  gap: 12px;
  border-radius: 100px;
  background: var(--color-two);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.blog-section .blog-items .items .body-text h3{
  margin-top: 30px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark3);
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.3;
}

.blog-section .blog-items .items .body-text h3 a{
display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-section  .blog-items .items .body-text .blog-meta {
  display: flex;
  align-items: center;
}

 .blog-section  .blog-items .items .body-text .blog-meta .item {
  position: relative;
}

 .blog-section  .blog-items .items .body-text .blog-meta .item.child1 {
  position: relative;
  margin-right: 60px;
}


.blog-section  .blog-items .items .body-text .blog-meta .item.child1::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  background: var(--color-two);
  right: -30px;
  top: 8px;
}

 .blog-section .blog-items .items .body-text .blog-meta .item .icon {
  margin-right: 15px;
}

 .blog-section .blog-items .items .body-text .blog-meta .item .icon i{
  font-size: 16px;
  color: var(--color-two);
 }

 .blog-section .blog-items .items .body-text .blog-meta .item .text {
  color:#858585;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
}
/* vinay css ............................................................................. */

/* about.css - Upgraded minimal padding version with amb-info prefix */

/* Variables */
:root{
  --accent: #0d003b;
  --accent-2: #1f4faa;
  --accent-50: rgba(13,0,59,0.05);
  --muted: #66707a;
  --bg: #ffffff;
  --soft: linear-gradient(180deg, rgba(13,0,59,0.02), rgba(13,0,59,0.00));
  --card-bg: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --container: 1180px;
  --shadow-soft: 0 10px 30px rgba(15,22,28,0.06);
  --shadow-strong: 0 18px 40px rgba(13,0,59,0.08);
  --ease: cubic-bezier(.16,.84,.44,1);
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset & base */
*{box-sizing:border-box;}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#0f1720;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.6;
  overflow-x: hidden;
}
.amb-info-container{max-width:var(--container); margin:0 auto; padding:0 18px;}

/*==========================================
=            Our Story Widget Styles            =
==========================================*/

/* --- Typography --- */
.amb-info-hero-title{ font-size: clamp(28px, 4.2vw, 48px); color:var(--accent); font-weight:700; line-height:1.12; margin:0 0 8px; }
.amb-info-section-title{ font-size: clamp(24px, 3.2vw, 40px); color:var(--accent); font-weight:700; line-height:1.15; margin:0 0 8px; }
.amb-info-lead{ font-size:1.03rem; color:#21303a; margin-bottom:0.5rem; }
.amb-info-muted{ color:var(--muted); }
.amb-info-small{ font-size:.9rem; }

/* --- Layout --- */
.amb-info-story-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

/* --- Timeline Styles --- */
.amb-info-timeline {
    position: relative;
    padding-left: 30px;
    flex-grow: 1; /* Take up remaining space */
}

.amb-info-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px; /* Align with first dot */
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.amb-info-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

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

.amb-info-timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.amb-info-timeline-year {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.amb-info-timeline-body h5 {
    margin-bottom: 5px;
    color: #333;
}

.amb-info-timeline-body p {
    margin-bottom: 0;
}

/* --- Owner Image Styles --- */
.amb-info-owner-image-container {
    flex-shrink: 0; /* Prevent shrinking */
    text-align: center;
    max-width: 150px; /* A good size for a "passport size" photo */
}

.amb-info-owner-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amb-info-owner-caption {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 8px;
    margin-bottom: 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .amb-info-story-container {
        flex-direction: column;
        align-items: center;
    }
    .amb-info-timeline {
        width: 100%;
    }
    .amb-info-owner-image-container {
        margin-top: 30px;
    }
}
/* Sections */
.amb-info-section{padding:48px 0;}
.amb-info-section--soft-gradient{ background: var(--soft); }

/* Hero */
.amb-info-hero-section{ position:relative; padding:40px 0 24px; background:var(--soft); overflow:visible; }
.amb-info-hero-grid{ display:grid; grid-template-columns: 1fr 440px; gap:24px; align-items:center; }
@media (max-width: 992px){ .amb-info-hero-grid{ grid-template-columns: 1fr; } }

.amb-info-hero-sub{ color:#334a55; margin-bottom:12px; max-width:66ch; }
.amb-info-hero-features{ list-style:none; padding:0; margin:12px 0 0; display:flex; gap:12px; flex-wrap:wrap; color:var(--muted); }
.amb-info-hero-features li{ font-size:.95rem; }

/* ======================
   Base Button Styles
   ====================== */
.amb-info-btn-01, .amb-info-btn-02 {
  display: inline-block;
  min-width: 140px;
  padding: 12px 28px;
  margin-right: 8px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Primary CTA */
.amb-info-btn-01 {
  background: linear-gradient(272deg, #f15523 31%, #ff9615 99%);
  color: #fff;
  background-size: 200% 200%;
}
.amb-info-btn-01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #0d003b;
  border-radius: 50px;
  z-index: -1;
  transition: all 0.5s ease;
}
.amb-info-btn-01::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: 0;
  border-radius: 50px;
}
.amb-info-btn-01:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  background-position: right center;
}
.amb-info-btn-01:hover::before { width: 100%; left: 0; right: auto; }
.amb-info-btn-01:hover::after { left: 130%; }

/* Secondary CTA */
.amb-info-btn-02 {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  background-size: 200% 200%;
}
.amb-info-btn-02::before { content:""; position:absolute; top:0; right:0; width:0; height:100%; background-color:#0d003b; border-radius:50px; z-index:-1; transition:all 0.5s ease; }
.amb-info-btn-02::after { content:""; position:absolute; top:0; left:-80%; width:50%; height:100%; background:rgba(255,255,255,0.2); transform:skewX(-20deg); transition:all 0.6s ease; z-index:0; border-radius:50px; }
.amb-info-btn-02:hover { transform:translateY(-3px) scale(1.05); box-shadow:0 18px 38px rgba(0,0,0,0.18); background-position:left center; }
.amb-info-btn-02:hover::before{ width:100%; left:0; right:auto; }
.amb-info-btn-02:hover::after{ left:130%; }

.amb-info-btn-01.active, .amb-info-btn-02.active { background-color: #0d003b; color:#fff; }
.amb-info-btn-01.active:hover, .amb-info-btn-02.active:hover { background-color: #F15523; color:#fff; }

/* Hero media */
.amb-info-hero-media{ display:flex; flex-direction:column; align-items:center; gap:6px; }
.amb-info-hero-img{ width:100%; height:auto; border-radius:12px; border:1px solid #eef3f6; box-shadow: var(--shadow-soft); }

/* scroll indicator */
.amb-info-hero-scroll-indicator{ position:absolute; left:50%; transform:translateX(-50%); bottom:8px; width:28px; height:42px; border-radius:16px; border:1px solid rgba(13,0,59,0.06); display:flex; align-items:flex-start; justify-content:center; }
.amb-info-hero-scroll-indicator span{ width:6px; height:6px; background:var(--accent); border-radius:50%; margin-top:6px; animation: amb-info-scroll 1.8s infinite; opacity:.9;}
@keyframes amb-info-scroll{ 0%{ transform:translateY(0);}50%{transform:translateY(10px);}100%{transform:translateY(0);}}

/* Intro grid */
.amb-info-grid-intro{ display:grid; grid-template-columns:480px 1fr; gap:24px; align-items:center; }
@media (max-width: 992px){ .amb-info-grid-intro{ grid-template-columns: 1fr; } }
.amb-info-img-responsive{ width:100%; height:auto; border-radius:10px; border:1px solid #eef3f6; box-shadow: var(--shadow-soft); }

/* Features grid */
.amb-info-features-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:8px; margin-top:12px; }
.amb-info-feature{ display:flex; gap:6px; align-items:center; color:var(--muted); }
.amb-info-feature i{ color:var(--accent); width:20px; }

/* Two card grid */
.amb-info-grid-2cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (max-width: 768px){ .amb-info-grid-2cards{ grid-template-columns:1fr; } }
.amb-info-card{ border-radius:12px; padding:16px; background:var(--card-bg); border:1px solid #eef3f6; box-shadow: var(--shadow-soft); transition: transform 260ms var(--ease), box-shadow 260ms var(--ease); }
.amb-info-card--elevated:hover{ transform: translateY(-6px); box-shadow: var(--shadow-strong); }

/* Timeline */
.amb-info-timeline{ display:flex; flex-direction:column; gap:12px; margin-top:16px; }
.amb-info-timeline-item{ display:flex; gap:12px; align-items:flex-start; }
.amb-info-timeline-year{ background:var(--accent); color:#fff; padding:6px 10px; border-radius:8px; font-weight:700; min-width:72px; text-align:center; box-shadow: 0 8px 20px rgba(13,0,59,0.06); }
.amb-info-timeline-body h5{ margin:0 0 4px; color:#102233; }
.amb-info-timeline-body p{ margin:0; color:var(--muted); }

/* Swiper Core Values */
.amb-info-values-swiper .swiper-slide { transition: transform 0.4s ease, opacity 0.4s ease; opacity: 0.5; transform: scale(0.85); overflow: hidden; }
.amb-info-values-swiper .swiper-slide.is-center { transform: scale(1); opacity: 1; z-index: 10; }
.amb-info-value-card { background: #fff; border-radius: 12px; padding: 24px 16px; text-align: center; box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.amb-info-value-icon { font-size: 36px; margin-bottom: 12px; }

/* Grid for Why Choose Us */
.amb-info-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
@media (max-width: 992px){ .amb-info-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px){ .amb-info-why-grid { grid-template-columns: 1fr; } }
.amb-info-why-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; justify-content: space-between; }
.amb-info-why-card h5 { font-size: 1.05rem; margin-bottom: 6px; color: var(--accent); }
.amb-info-why-card p { color: var(--muted); flex-grow: 1; }
.amb-info-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.amb-info-why-card .amb-info-btn-02 { align-self: flex-start; padding:10px 20px; font-size:0.85rem; }

/* Team Grid */
.amb-info-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:16px; }
@media (max-width: 992px){ .amb-info-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px){ .amb-info-team-grid { grid-template-columns: 1fr; } }

.amb-info-team-card { background: var(--card-bg); border-radius: var(--radius-md); padding:16px; text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display:flex; flex-direction: column; align-items:center; }
.amb-info-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.amb-info-team-img { width:100px; height:100px; object-fit: cover; border-radius: 50%; margin-bottom:10px; border: 2px solid var(--accent-50); }
.amb-info-team-card h5 { font-size:1.05rem; margin-bottom:4px; color: var(--accent); }
.amb-info-team-card p { color:var(--muted); margin-bottom:4px; }

/* Milestones */
.amb-info-milestones-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap:16px; margin-top:24px; justify-items:center; }
.amb-info-milestone-card { background:#fff; border-radius:12px; padding:16px; text-align:center; box-shadow:0 6px 18px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.amb-info-milestone-card:hover { transform: translateY(-6px); box-shadow:0 12px 30px rgba(0,0,0,0.12); }
.amb-info-milestone-number { font-size: clamp(24px, 4vw, 36px); font-weight:700; color:var(--accent); margin-bottom:6px; }
.amb-info-milestone-label { font-size:0.9rem; color:var(--muted); margin-bottom:8px; }
.amb-info-milestone-card .amb-info-btn-02 { padding:8px 16px; font-size:0.85rem; background:linear-gradient(180deg,var(--accent),var(--accent-2)); border-radius:50px; text-decoration:none; color:#fff; }
.amb-info-milestone-card .amb-info-btn-02:hover { transform:none; box-shadow:none; background:linear-gradient(180deg,var(--accent),var(--accent-2)); }

/* CTA Section */
.amb-info-cta-grid { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:16px; padding:32px 0; }
.amb-info-cta-content { flex:1 1 300px; }
.amb-info-cta-content h2 { font-size:clamp(26px,4vw,42px); margin-bottom:8px; color:var(--accent); }
.amb-info-cta-content p { font-size:1rem; color:#334a55; margin-bottom:12px; }
.amb-info-cta-buttons { display:flex; flex-wrap:wrap; gap:12px; }
.amb-info-cta-buttons .amb-info-btn-01, .amb-info-cta-buttons .amb-info-btn-02 { min-width:140px; padding:12px 28px; font-size:0.9rem; }
@media (max-width:768px){ .amb-info-cta-grid { flex-direction:column; text-align:center; } .amb-info-cta-buttons { justify-content:center; } }

/* Contact Section */
.amb-info-contact-grid.professional { 
    display:grid; 
    grid-template-columns:1fr 1fr; 
    gap:32px; 
    align-items:center; 
    padding:40px 0; 
}

.amb-info-contact-info { 
    background:#fff; 
    padding:32px 24px; 
    border-radius:16px; 
    box-shadow:0 12px 28px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.amb-info-contact-info:hover { 
    transform:translateY(-4px); 
    box-shadow:0 20px 40px rgba(0,0,0,0.12); 
}

.amb-info-contact-info h2 { 
    margin-bottom:16px; 
    font-size:clamp(24px,3vw,36px); 
    color:var(--accent); 
}

.amb-info-contact-info p { 
    font-size:1rem; 
    color:#334a55; 
    margin-bottom:8px; 
}

.amb-info-contact-info a:not(.amb-info-btn-01):not(.amb-info-btn-02) { 
    color:var(--accent-2); 
    text-decoration:none; 
    font-weight:600; 
}

.amb-info-contact-btns { 
    display:flex; 
    gap:12px; 
    flex-wrap:wrap; 
    margin-top:12px; 
}

/* --- Enhanced Button Styles --- */

/* Common styles for both buttons */
.amb-info-contact-btns .amb-info-btn-01, 
.amb-info-contact-btns .amb-info-btn-02 { 
    min-width:140px; 
    padding:12px 28px; 
    font-size:0.9rem; 
    border-radius:50px;
    color: white; /* White text color as requested */
    display: inline-block;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Primary Button Style */
.amb-info-contact-btns .amb-info-btn-01 {
    background-color: var(--accent); /* Uses your primary accent color */
}

.amb-info-contact-btns .amb-info-btn-01:hover {
    background-color: #0a5d3d; /* A darker shade for hover effect */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 93, 61, 0.3);
}

/* Secondary Button Style */
.amb-info-contact-btns .amb-info-btn-02 {
    background-color: var(--accent-2); /* Uses your secondary accent color */
}

.amb-info-contact-btns .amb-info-btn-02:hover {
    background-color: #b43838; /* A darker shade for hover effect */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 56, 56, 0.3);
}


.amb-info-contact-map { 
    width:100%; 
    height:350px; 
    border-radius:16px; 
    overflow:hidden; 
    box-shadow:0 12px 28px rgba(0,0,0,0.08); 
    transition:transform 0.3s ease,box-shadow 0.3s ease; 
}

.amb-info-contact-map:hover { 
    transform:translateY(-2px); 
    box-shadow:0 18px 38px rgba(0,0,0,0.12); 
}

@media (max-width:992px){ 
    .amb-info-contact-grid.professional{grid-template-columns:1fr;} 
    .amb-info-contact-map{height:250px;} 
    .amb-info-contact-info{padding:24px 16px;} 
}

/* Small helpers */
.mb-6{margin-bottom:24px!important;}
.mb-4{margin-bottom:16px!important;}
.mt-4{margin-top:16px!important;}
.text-center{text-align:center;}
.text-left{text-align:left;}
.text-right{text-align:right;}
/* vinay services page.......................................................................... */
.gm-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* 🌟 ADVANCED HEADINGS WITH OFF-WHITE BACKGROUND */

.gm-section-title:hover::after {
  width: 100px;
  transition: all 0.5s ease;
}

/* 🔘 PREMIUM BUTTON STYLE */
.gm-btn-major, .gm-btn {
  background: linear-gradient(135deg, #007bff, #00c3ff);
  color: #fff;
  border: none;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.7px;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gm-btn-major::before, .gm-btn::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
}

.gm-btn-major:hover::before, .gm-btn:hover::before {
  transform: scale(1);
}

.gm-btn-major:hover, .gm-btn:hover {
  background: linear-gradient(135deg, #0056d6, #00a8e8);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.45);
}

.gm-btn-major:active, .gm-btn:active {
  transform: scale(0.97);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.35);
}

/* ============================================
   HERO SECTION - GALAXMIAL - FULLY RESPONSIVE
   ============================================ */
/* HERO VIDEO SECTION */
.gm-hero-video {
  position: relative;
  height: 75vh; /* Reduced from 100vh */
  min-height: 450px; /* Reduced from 600px */
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border-radius: 30px;
  padding: 15px 0; /* Reduced from 30px */
  margin: 0 10px;
  box-sizing: border-box;
}

/* VIDEO BACKGROUND */
.gm-hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4) contrast(1.1);
  transform: translate(-50%, -50%);
}

/* OVERLAY */
.gm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px; /* Reduced from 20px */
  z-index: 3;
  box-sizing: border-box;
  border-radius: 30px;
}

/* CONTENT */
.gm-hero-content {
  position: relative;
  z-index: 4; /* Increased to ensure it's above the overlay */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CENTERED TEXT */
.gm-hero-text {
  animation: fadeInUp 1.2s ease forwards;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.gm-hero-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
  line-height: 1.2;
  margin-bottom: clamp(15px, 3vw, 25px);
  font-weight: 700;
  text-align: center;
}

.gm-hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  color: #e0e7ff;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
  margin-bottom: clamp(20px, 3vw, 30px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CTA BUTTON */
.gm-btn-primary {
  width: clamp(180px, 30vw, 220px);
  background: linear-gradient(135deg, #00bfff, #0099ff);
  color: #fff;
  padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,153,255,0.3);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.gm-btn-primary:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(0,153,255,0.5);
}

/* RIGHT IMAGE */
.gm-hero-right {
  margin-top: 30px;
  display: none;
}

.gm-hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  animation: fadeIn 1.5s ease forwards;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* EXTRA LARGE SCREENS (1400px and up) */
@media (min-width: 1400px) {
  .gm-hero-video {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 20px 0; /* Reduced from 40px */
  }
  
  .gm-hero-overlay {
    border-radius: 40px;
  }
  
  .gm-hero-content {
    padding: 0 40px;
  }
}

/* LARGE SCREENS (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .gm-hero-video {
    border-radius: 35px;
    padding: 18px 0; /* Reduced from 35px */
  }
  
  .gm-hero-overlay {
    border-radius: 35px;
  }
}

/* MEDIUM SCREENS (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .gm-hero-video {
    height: 70vh; /* Reduced from 90vh */
    min-height: 450px; /* Reduced from 550px */
    border-radius: 30px;
    padding: 15px 0; /* Reduced from 30px */
  }
  
  .gm-hero-overlay {
    border-radius: 30px;
  }
}

/* TABLETS (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .gm-hero-video {
    height: 65vh; /* Reduced from 80vh */
    min-height: 400px; /* Reduced from 500px */
    border-radius: 25px;
    padding: 12px 0; /* Reduced from 25px */
  }
  
  .gm-hero-overlay {
    border-radius: 25px;
  }
  
  .gm-hero-text h1 {
    margin-bottom: 20px;
  }
  
  .gm-hero-text p {
    max-width: 500px;
  }
}

/* MOBILE LANDSCAPE (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) and (orientation: landscape) {
  .gm-hero-video {
    height: 120vh; /* Reduced from 150vh */
    min-height: 350px; /* Reduced from 400px */
    border-radius: 20px;
    padding: 10px 0; /* Reduced from 20px */
  }
  
  .gm-hero-overlay {
    border-radius: 20px;
  }
}

/* SMALL MOBILE (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .gm-hero-video {
    height: 60vh; /* Reduced from 70vh */
    min-height: 380px; /* Reduced from 450px */
    border-radius: 20px;
    padding: 12px 0; /* Reduced from 25px */
  }
  
  .gm-hero-overlay {
    border-radius: 20px;
  }
  
  .gm-hero-text p {
    max-width: 450px;
  }
}

/* EXTRA SMALL MOBILE (575px and below) */
@media (max-width: 575px) {
  .gm-hero-video {
    height: 80vh; /* Reduced from 100vh */
    min-height: 450px; /* Reduced from 600px */
    border-radius: 15px;
    padding: 10px 0; /* Reduced from 20px */
    margin: 0 5px;
    width: calc(100% - 10px);
  }
  
  .gm-hero-overlay {
    border-radius: 15px;
    padding: 10px; /* Reduced from 15px */
  }
  
  .gm-hero-text h1 {
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .gm-hero-text p {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .gm-btn-primary {
    width: 100%;
    max-width: 280px;
  }
}

/* VERY SMALL MOBILE (375px and below) */
@media (max-width: 375px) {
  .gm-hero-video {
    min-height: 400px; /* Reduced from 550px */
    border-radius: 10px;
    padding: 8px 0; /* Reduced from 15px */
  }
  
  .gm-hero-overlay {
    border-radius: 10px;
  }
  
  .gm-hero-text h1 {
    font-size: 1.75rem;
  }
  
  .gm-hero-text p {
    font-size: 0.95rem;
  }
}

/* HIGH DPI/RETINA DISPLAYS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gm-hero-video-bg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .gm-hero-text,
  .gm-hero-right img {
    animation: none;
  }
  
  .gm-btn-primary {
    transition: none;
  }
  
  .gm-btn-primary:hover {
    transform: none;
  }
} 
/* 🌟 PRODUCTS SECTION */
.gmg-products {
  padding: 60px 15px;
  background: #e8f5ff;
  border-radius: 20px;
}

/* Header Section */
.gmg-header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gmg-header-left {
  flex: 1;
  min-width: 300px;
}

.gmg-services-btn {
  background: transparent;
  border: none;
  color: #666;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.gmg-services-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.gmg-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #001f4d;
  margin: 0;
  line-height: 1.2;
}

.gmg-title-highlight {
  color: #000;
  font-weight: 900;
}

.gmg-header-right {
  flex: 1;
  min-width: 300px;
  padding-left: 30px;
  /* background-color: rgba(255, 255, 255, 0.7); */
  padding: 20px;
  border-radius: 15px;
}

.gmg-section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.gmg-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Each card takes 1/3 width minus gap for 3 cards per row */
.gmg-product-card {
  flex: 0 1 calc(33.333% - 20px);
  box-sizing: border-box;
}

/* Card styles */
.gmg-product-card .card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #fff;
}

.gmg-product-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.gmg-product-card img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
}

.gmg-product-card .card-body {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gmg-product-card .product-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: #001f4d;
  margin-bottom: 5px;
}

.gmg-product-card .product-info p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Arrow Button - matching the screenshot */
.product-arrow, .gmg-product-arrow {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-arrow:hover, .gmg-product-arrow:hover {
  transform: translateY(-3px);
  background: #333;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.product-arrow i, .gmg-product-arrow i {
  font-size: 16px;
}

/* Expanded extra content */
.gmg-card-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 20px;
  background: #f9fcff;
}

.gmg-card.expanded .gmg-card-extra {
  max-height: 220px;
  opacity: 1;
  padding: 15px 20px 20px;
}

.gmg-card.expanded .product-arrow i {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

/* Modal Box */
.gmg-product-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7);
  padding-top: 60px;
}

.gmg-modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  max-width: 600px;
  position: relative;
  text-align: center;
}

.gmg-close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gmg-close-modal:hover {
  color: #007bff;
}

.gmg-modal-content img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.gmg-modal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #001f4d;
  margin-bottom: 10px;
}

.gmg-modal-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.gmg-modal-nav button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gmg-modal-nav button:hover {
  background: #0056d6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gmg-header-section {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gmg-header-right {
    padding-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  
  .gmg-section-title {
    font-size: 36px;
  }
  
  .gmg-product-card {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .gmg-product-card .card-body {
    flex-direction: column;
    gap: 10px;
  }
  
  .product-arrow {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .gmg-section-title {
    font-size: 32px;
  }
  
  .gmg-product-card {
    flex: 0 1 100%;
  }
  
  .gmg-header-left, .gmg-header-right {
    min-width: 100%;
  }
}
/* ......................................................................... */
/* ===================== FILTER SECTION ===================== */
.gm-filter {
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all 0.3s ease;
}

.gm-filter .dropdown {
  position: relative;
  z-index: 2;
}

.gm-filter .dropdown-toggle {
  background: #fff;
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0,123,255,0.1);
  transition: all 0.3s ease, transform 0.3s ease;
}

.gm-filter .dropdown-toggle:hover,
.gm-filter .dropdown-toggle:focus {
  background: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,123,255,0.25);
}

.gm-filter .dropdown-menu {
  min-width: 220px;
  border-radius: 15px;
  border: 1px solid #007bff33;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 15px;
  background: #fff;
  transition: all 0.3s ease;
}

.gm-filter .dropdown-menu li {
  margin-bottom: 10px;
  list-style: none;
}

.gm-filter .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.gm-filter-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #007bff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gm-filter-checkbox:hover {
  transform: scale(1.2);
}

.gm-filter .dropdown-menu label {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gm-filter .dropdown-menu label:hover {
  color: #007bff;
}

/* ===================== PRODUCTS SECTION ===================== */
.gm-products {
  padding: 60px 15px;
  background: #e8f5ff;
  border-radius: 20px;
}

.gm-products h2 {
  font-size: 42px;
  font-weight: 800;
  color: #001f4d;
  margin-bottom: 40px;
  text-align: center;
}

.gm-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.gm-product-card .card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #fff;
}

.gm-product-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Arrow Button */
.gm-product-arrow {
  width: 40px;
  height: 40px;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gm-product-arrow:hover {
  transform: translateY(-6px);
  background: #0056d6;
}

/* Extra Content */
.gm-card-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 20px;
  background: #f9fcff;
}

/* Expanded */
.gm-card.expanded .gm-card-extra {
  max-height: 220px;
  opacity: 1;
  padding: 15px 20px 20px;
}

/* Arrow rotation */
.gm-card.expanded .gm-product-arrow i {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

/* ===================== ABOUT SECTION ===================== */
.gm-about {
  padding: 80px 20px;
  background: #fdfdfd;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gm-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 123, 255, 0.1);
}

.gm-about .gm-section-header p {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 1.8;
  max-width: 850px;
  margin: 15px auto 30px;
}

.gm-about h2 {
  font-size: 42px;
  font-weight: 800;
  color: #001f4d;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gm-about h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c3ff);
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,123,255,0.3);
}

.gm-about p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 25px;
  transition: color 0.3s ease;
}

.gm-about p:hover {
  color: #007bff;
}

/* ===================== TESTIMONIALS ===================== */
.gm-testimonials {
  padding: 90px 20px;
  background: #f6f8ff;
  text-align: center;
  position: relative;
}

.gm-testimonials h2 {
  font-size: 40px;
  font-weight: 700;
  color: #001f4d;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.gm-testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c3ff);
  border-radius: 3px;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,123,255,0.3);
}

.gm-testimonial-card {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 30px 35px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.gm-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,123,255,0.12);
}

.gm-testimonial-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  transition: color 0.3s ease;
}

.gm-testimonial-card p::before,
.gm-testimonial-card p::after {
  content: '"';
  color: #007bff;
  font-size: 24px;
  vertical-align: top;
}

.gm-testimonial-card h4 {
  margin-top: 20px;
  color: #007bff;
  font-weight: 600;
  font-size: 18px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .gm-about,
  .gm-testimonials {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {
  .gm-about h2,
  .gm-testimonials h2 {
    font-size: 36px;
  }

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

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

  .gm-products h2 {
    font-size: 32px;
  }

  .gm-product-arrow {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .gm-about h2,
  .gm-testimonials h2 {
    font-size: 32px;
  }

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

  .gm-testimonial-card h4 {
    font-size: 15px;
  }
}
/* ============================================================
   🌟 SUPPORT & TRUST SECTION - CLEAN + FIXED VERSION
/* MAIN SECTION */
.gm-support-trust-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  z-index: 1;
}

/* BACKGROUND GLOW */
.gm-support-trust-section::before {
  content: "";
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.16), rgba(0, 195, 255, 0.05));
  filter: blur(160px);
  z-index: 0;
}

/* MAIN HEADING */
.gm-main-heading {
  text-align: center;
  color: #0a1a44;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 15px;
}

/* SUBTEXT */
.gm-sub-text {
  color: #404b6b;
  font-size: clamp(15px, 2vw, 18px);
  max-width: 780px;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto 50px;
}

/* SECTION TITLE */
.gm-love-section-title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #0a1a44;
}

/* FEATURE CARD */
.gm-feature-card {
  background: #ffffff;
  border: 1px solid #eef1f4;
  border-radius: 18px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease-in-out;
}

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

/* ICON CENTERED */
.gm-feature-icon i {
  font-size: 42px;
  color: #1a73e8;
  margin-bottom: 18px;
  display: inline-block;
  transition: 0.25s;
}

.gm-feature-card:hover .gm-feature-icon i {
  transform: scale(1.1);
}

/* FEATURE TITLE */
.gm-feature-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: #0a1a44;
  margin-bottom: 12px;
}

/* FEATURE TEXT */
.gm-feature-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* REVIEWS */
.gm-review-title {
  text-align: center;
  color: #1a1a1a;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 35px;
}

/* REVIEW CARD */
.gm-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  height: 100%;
}

.gm-review-card:hover {
  transform: translateY(-4px);
}

/* REVIEW TEXT */
.gm-review-card p {
  font-size: 15px;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* AUTHOR */
.gm-review-card h6 {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: #1a73e8;
}

/* MOBILE FIXES */
@media (max-width: 575px) {
  .gm-support-trust-section { padding: 55px 0; }

  .gm-feature-card,
  .gm-review-card { padding: 22px 18px; }

  .gm-review-card h6 { text-align: left; }
}

/* ................................................................................... */

/* ===================== Wrapper ===================== */
.gm-services-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch; /* ensures equal height */
  flex-wrap: wrap;
}

/* ===================== Battery Box ===================== */
.gm-battery-box {
  flex: 1 1 45%;
  background: linear-gradient(145deg, #e0f7ff, #c0e4ff);
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* fill height */
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.gm-battery-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.gm-battery-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #0099ff;
  transition: transform 0.3s ease;
}

.gm-battery-box:hover .gm-battery-icon {
  transform: scale(1.1) rotate(-5deg);
}

.gm-battery-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #004080;
}

.gm-battery-box p {
  font-size: 16px;
  color: #004080;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gm-btn-primary {
  width: 200px;           /* fixed width */
  padding: 12px 0;        /* adjust padding for fixed width */
  border-radius: 50px;
  background: linear-gradient(135deg, #00bfff, #0099ff);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;         /* needed to use margin auto */
  margin: 0 auto;         /* center horizontally */
  text-align: center;
}

.gm-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,153,255,0.3);
}


/* ===================== Mobile Repair Section ===================== */
.gm-repair {
  flex: 1 1 50%;
  background: linear-gradient(145deg, #f0f8ff, #d0ebff);
  border-radius: 25px;
  padding: 40px 25px; /* same as battery box */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* fill height */
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.gm-repair h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 25px;
}

/* Repair Cards Grid */
.gm-repair-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

/* Individual Repair Cards */
.gm-card-repair {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.gm-card-repair:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.gm-repair-icon {
  font-size: 35px;
  margin-bottom: 10px;
  color: #0099ff;
}

.gm-btn-outline {
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid #0099ff;
  color: #0099ff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.gm-btn-outline:hover {
  background: #0099ff;
  color: #fff;
}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .gm-battery-box, .gm-repair {
    flex: 1 1 100%;
  }
  .gm-repair-grid {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .gm-battery-box, .gm-repair {
    padding: 25px 15px;
  }
  .gm-battery-box h2, .gm-repair h2 {
    font-size: 28px;
  }
  .gm-battery-box p {
    font-size: 15px;
  }
  .gm-card-repair {
    padding: 15px 10px;
  }
  .gm-repair-icon {
    font-size: 30px;
  }
  .gm-btn-primary, .gm-btn-outline {
    padding: 10px 25px;
  }
}

/* term-condition / Privacy Policy..................................................... */
/* Privacy Policy Container - Aligned with site container/logo */
.privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Privacy Policy Header */
/* .privacy-policy-header {
    padding: 40px 0;
    text-align: center;
}

.privacy-policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.privacy-policy-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
} */

/* Privacy Policy Content */
.privacy-policy-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

/* Headings */
.privacy-policy-content h5 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 1.4rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.privacy-policy-content h5:first-of-type {
    margin-top: 0;
}

/* Paragraphs and Lists */
.privacy-policy-content p,
.privacy-policy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.privacy-policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
}

.privacy-policy-content strong {
    color: #1a73e8;
}

/* Links */
.privacy-policy-content a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .privacy-policy-container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-header {
        padding: 30px 0;
    }
    
    .privacy-policy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-policy-header .subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-policy-content {
        padding: 30px 20px;
    }
    
    .privacy-policy-content h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .privacy-policy-container {
        padding: 0 15px;
    }
    
    .privacy-policy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-policy-header .subtitle {
        font-size: 1rem;
    }
    
    .privacy-policy-content {
        padding: 25px 15px;
    }
    
    .privacy-policy-content h5 {
        font-size: 1.2rem;
    }
    
    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 0.95rem;
    }
}
/* FAQs............................................................................................ */

body {
      margin: 0;
      padding: 0;
      background: #f7f9fc;
      font-family: 'Poppins', sans-serif;
    }

    /* ----------------------------------------------------
       🌟 FULL-WIDTH HEADER
    ---------------------------------------------------- */
    .vinay_faq_header_section {
      /* width: 100%; */
      margin: 0;
      padding: 0;
    }

    .vinay_faq_header {
      text-align: center;
      padding: 60px 20px;
      /* width: 100%; */
      background: linear-gradient(
        rgba(0, 10, 30, 0.75),
        rgba(0, 10, 30, 0.75)
      ),
      url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=1500&q=80')
      center/cover no-repeat;
      color: #fff;
      border-radius: 30px;
    padding: 70px 0;
    margin-right: 10px !important;
    margin-left: 10px !important;

    }

    .vinay_faq_header h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 8px;
      color: #fff;
    }

    .vinay_faq_header p {
      font-size: 18px;
      opacity: 0.9;
    }
/* ----------------------------------------------------
   🌟 FAQ CONTENT SECTION
---------------------------------------------------- */
 /* MAIN FAQ WRAPPER */
.vinay_faq_content {
  padding: 40px 0;
}

.vinay_faq_box {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}

/* ACCORDION ITEM BOX */
.vinay_faq_box .accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  margin: 0;
  overflow: hidden;
}

/* Gap Between Items */
.vinay_faq_box .accordion-item + .accordion-item {
  margin-top: 10px;
}

/* REMOVE BOOTSTRAP ARROW */
.vinay_faq_box .accordion-button::after {
  display: none !important;
}

/* ACCORDION BUTTON */
.vinay_faq_box .accordion-button {
  width: 100%;
  position: relative;
  padding: 16px 20px !important;
  padding-right: 500px !important; /* space for right-end icon */
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  font-size: 18px;
  font-weight: 700;
  color: #001f4d !important;

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

/* ICON BOX AT RIGHT END */
.vinay_faq_box .accordion-button::before {
  content: "-";
  position: absolute;
  top: 50%;
  right: 30px; /* icon aligned to right corner */
  transform: translateY(-50%);

  width: 26px;
  height: 26px;
  border-radius: 6px;

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

  font-size: 19px;
  font-weight: 900;
  color: #000;

  background: #ff2b8b; /* OPEN → PINK */
  transition: 0.25s ease;
}

/* COLLAPSED STATE → PLUS BLUE BG */
.vinay_faq_box .accordion-button.collapsed::before {
  content: "+";
  background: #007bff;
}

/* FAQ BODY */
.vinay_faq_box .accordion-body {
  padding: 20px !important;
  border-top: 1px solid #eeeeee;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vinay_faq_box {
    padding: 0 5px;
  }

  .vinay_faq_box .accordion-button {
    font-size: 16px;
    padding-right: 70px !important;
  }

  .vinay_faq_box .accordion-button::before {
    right: 20px;
    width: 24px;
    height: 24px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .vinay_faq_box .accordion-button {
    font-size: 15px;
    padding-right: 60px !important;
  }

  .vinay_faq_box .accordion-button::before {
    right: 16px;
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
}

/* contact-us.................................................................................. */
     .vinay_pratap-heading {
        font-size: 48px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
      }

      .vinay_pratap-heading1 {
        color: #0d003b;
      }

      .vinay_pratap-text {
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        margin: 0 !important;
        line-height: 1.7 !important;
      }

      /* HEADER */
      .vinay_pratap-header-section {
        background: linear-gradient(
            135deg,
            rgba(0, 8, 15, 0.8),
            rgba(2, 18, 34, 0.95)
          ),
          url("https://images.unsplash.com/photo-1518770660439-4636190af475")
            center/cover no-repeat;
        padding: 85px 0;
        text-align: center;
        color: #fff;
      }

      .vinay_pratap-header-section h1 {
        font-size: 50px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }

   /* CONTACT DETAILS CONTAINER WITH OFF-WHITE BACKGROUND */
/* CONTACT DETAILS CONTAINER WITH OFF-WHITE BACKGROUND */
/* CONTACT DETAILS CONTAINER WITH OFF-WHITE BACKGROUND */
.vinay-contact-container {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 60px 40px;
    background: linear-gradient(145deg, #f8fafc, #ecf0f3);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.vinay-contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(2, 78, 127, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(2, 78, 127, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* CONTACT DETAILS SECTION */
.vinay_pratap-contact-details-section {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* SECTION TITLE - Enhanced styling */
.vinay_pratap-section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #024e7f;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Enhanced title underline */
.vinay_pratap-section-title::after {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #024e7f, transparent);
    border-radius: 2px;
}

/* CONTACT GRID - Enhanced spacing */
.vinay_pratap-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

/* GRID BOX - Professional Advanced Card Style */
.vinay_pratap-grid-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(2, 78, 127, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Subtle gradient overlay for depth */
.vinay_pratap-grid-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Icon Wrapper - Enhanced design */
.vinay_pratap-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 78, 127, 0.08), rgba(2, 78, 127, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(2, 78, 127, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Icon wrapper inner glow */
.vinay_pratap-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(2, 78, 127, 0.1);
    transition: all 0.5s ease;
}

/* ICON STYLE - Enhanced */
.vinay_pratap-grid-box i {
    font-size: 32px;
    color: #024e7f;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

/* Contact Info - Enhanced typography */
.vinay_pratap-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vinay_pratap-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #024e7f;
    margin: 0 0 12px 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: -0.2px;
}

.vinay_pratap-contact-text {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 400;
}

.vinay_pratap-contact-help {
    font-size: 14px;
    color: #024e7f;
    margin: 10px 0 0 0;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.8;
}

/* Link Style - Enhanced */
.vinay_pratap-contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ADVANCED HOVER EFFECT - Professional with new color */
.vinay_pratap-grid-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(20, 33, 61, 0.15),
        0 15px 30px rgba(20, 33, 61, 0.1);
    border-color: rgba(20, 33, 61, 0.2);
    background: rgba(20, 33, 61, 0.9);
    backdrop-filter: blur(20px);
}

.vinay_pratap-grid-box:hover::before {
    opacity: 1;
}

.vinay_pratap-grid-box:hover .vinay_pratap-contact-title {
    color: #ffffff;
    transform: translateY(-2px);
}

.vinay_pratap-grid-box:hover .vinay_pratap-contact-text {
    color: rgba(255, 255, 255, 0.85);
}

.vinay_pratap-grid-box:hover .vinay_pratap-contact-help {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.vinay_pratap-grid-box:hover .vinay_pratap-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg) scale(1.1);
}

.vinay_pratap-grid-box:hover .vinay_pratap-icon-wrapper::after {
    width: 100%;
    height: 100%;
}

.vinay_pratap-grid-box:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Ripple effect on hover */
.vinay_pratap-grid-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.vinay_pratap-grid-box:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive Adjustments - Enhanced */
@media (max-width: 1200px) {
    .vinay-contact-container {
        padding: 50px 30px;
        margin: 50px auto 60px auto;
    }
    
    .vinay_pratap-contact-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .vinay-contact-container {
        padding: 40px 25px;
        margin: 40px auto 50px auto;
    }
    
    .vinay_pratap-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .vinay_pratap-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .vinay_pratap-grid-box {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .vinay-contact-container {
        padding: 35px 20px;
        margin: 40px auto 50px auto;
    }
    
    .vinay_pratap-section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .vinay_pratap-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vinay_pratap-grid-box {
        padding: 25px 18px;
    }
    
    .vinay_pratap-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .vinay_pratap-grid-box i {
        font-size: 28px;
    }
    
    .vinay_pratap-contact-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .vinay-contact-container {
        padding: 30px 15px;
        margin: 30px auto 40px auto;
    }
    
    .vinay_pratap-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .vinay_pratap-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vinay_pratap-grid-box {
        padding: 25px 15px;
    }
    
    .vinay_pratap-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .vinay_pratap-grid-box i {
        font-size: 26px;
    }
    
    .vinay_pratap-contact-title {
        font-size: 16px;
    }
    
    .vinay_pratap-contact-text {
        font-size: 14px;
    }
}
/* CONTACT WRAPPER WITH OFF-WHITE BACKGROUND */
.vinay-contact-wrapper {
background-color: #f8f9fa; /* Off-white background */
padding: 60px 0;
margin: 40px 0;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* CONTACT CONTAINER */
.vinay_amb-contact-container {
padding: 0 15px;
}

.vinay_amb-contact-box {
max-width: 1200px;
margin: 0 auto;
}

/* CONTACT FORM CARD */
.vinay_amb-contact-card {
background: #ffffff;
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
height: 100%;
display: flex;
flex-direction: column;
}

/* FORM HEADING */
.vinay_amb-heading {
font-size: 32px;
font-weight: 700;
color: #072a4d;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}

.vinay_amb-heading:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background: linear-gradient(90deg, #00aaff, #ffaa00);
border-radius: 2px;
}

/* FORM INPUTS */
.vinay_amb-contact-card input,
.vinay_amb-contact-card textarea {
width: 100%;
padding: 14px 16px;
font-size: 15px;
border: 1px solid #e5e5e5;
border-radius: 10px;
background: #fff;
box-sizing: border-box;
transition: box-shadow .25s ease, border-color .25s ease;
margin-bottom: 20px;
}

.vinay_amb-contact-card input:focus,
.vinay_amb-contact-card textarea:focus {
border-color: #00BFFF;
box-shadow: 0 0 0 3px rgba(0,191,255,0.15);
outline: none;
}

/* IMAGE WRAPPER */
.vinay_amb-image-wrapper {
height: 100%;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.vinay_amb-contact-image:hover {
transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 768px) {
.vinay-contact-wrapper {
padding: 40px 0;
margin: 20px 0;
}

.vinay_amb-contact-card {
padding: 30px 25px;
border-radius: 16px;
}

.vinay_amb-heading {
font-size: 28px;
}

.vinay_amb-submit {
padding: 12px !important;
font-size: 16px !important;
}

.vinay_amb-image-wrapper {
margin-top: 30px;
height: 300px;
}
}

@media (max-width: 576px) {
.vinay-contact-wrapper {
padding: 30px 0;
margin: 15px 0;
}

.vinay_amb-contact-card {
padding: 25px 20px;
}

.vinay_amb-heading {
font-size: 24px;
}

.vinay_amb-image-wrapper {
height: 250px;
}
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .vinay-contact-wrapper {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .vinay_amb-contact-card { 
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .vinay_amb-heading {
    font-size: 28px;
  }
  
  .vinay_amb-submit { 
    padding: 12px !important; 
    font-size: 16px !important; 
  }
  
  .vinay_amb-image-wrapper {
    margin-top: 30px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .vinay-contact-wrapper {
    padding: 30px 0;
    margin: 15px 0;
  }
  
  .vinay_amb-contact-card { 
    padding: 25px 20px;
  }
  
  .vinay_amb-heading {
    font-size: 24px;
  }
  
  .vinay_amb-image-wrapper {
    height: 250px;
  }
}

 /* MAP + ADDRESS */
      .vinay_pratap-map-address-section {
        margin-top: 60px;
        margin-bottom: 60px;
      }

      .vinay_pratap-map-box {
        height: 350px;
        background: #fff;
      }

      .vinay_pratap-address-box {
        background: #fff;
        height: 350px;
      }

      .shadow-blue {
        box-shadow: 0 8px 25px rgba(5, 117, 198, 0.25) !important;
      }

      .vinay_pratap-addr-title {
        font-size: 28px;
        font-weight: 700;
        color: #0575c6;
        margin-bottom: 15px;
      }

      .vinay_pratap-addr-text {
        font-size: 17px;
        line-height: 1.8;
      }

      .vinay_pratap-addr-text a {
        color: #0575c6;
        text-decoration: none;
      }

      .vinay_pratap-addr-text a:hover {
        text-decoration: underline;
      }

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

      @media (max-width: 991px) {
        .vinay_pratap-header-section h1 {
          font-size: 38px;
        }

        .vinay_pratap-image-wrapper {
          height: 320px;
          margin-top: 20px;
        }

        .vinay_pratap-contact-card {
          padding: 25px;
        }

        .vinay_pratap-map-box,
        .vinay_pratap-address-box {
          height: auto;
        }
      }

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

        .vinay_pratap-header-section h1 {
          font-size: 32px;
        }

        .vinay_pratap-grid-box i {
          font-size: 26px;
        }

        .vinay_pratap-grid-box {
          padding: 15px;
        }

        .vinay_pratap-contact-card {
          padding: 20px;
        }

        .vinay_pratap-image-wrapper {
          height: 260px;
        }

        .vinay_pratap-contact-image {
          border-radius: 15px;
        }
      }

      @media (max-width: 480px) {
        .vinay_pratap-header-section h1 {
          font-size: 26px;
        }

        .vinay_pratap-contact-card {
          padding: 18px;
        }

        .vinay_pratap-submit {
          padding: 10px;
          font-size: 16px;
        }

        .vinay_pratap-image-wrapper {
          height: 220px;
        }

        .vinay_pratap-addr-title {
          font-size: 22px;
        }

        .vinay_pratap-addr-text {
          font-size: 15px;
        }
      }
  
 /* ==============================================================================================
       HEADER SECTION warranty policy
      ======================== */
      .deep_amb_header-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&w=1600&q=80")
            center/cover no-repeat;
        color: #fff;
        text-align: center;
        padding: 120px 20px;
      }

      /* Responsive header text */
      @media (max-width: 768px) {
        .deep_amb_header-section {
          padding: 80px 15px;
        }
        .deep_amb_header-section h1 {
          font-size: 2rem;
        }
        .deep_amb_header-section p {
          font-size: 1rem;
        }
      }

    /* =======================
       CONTENT BOXES
      ======================== */
      .deep_amb_content-box {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        height: 100%;
      }

      /* Scrollable table on small screens */
      .deep_amb_content-box table {
        width: 100%;
        overflow-x: auto;
        display: block;
      }

      body {
        background: #f5f5f5;
      }

      h3 {
        color: #222;
        font-weight: 600;
        margin-bottom: 12px;
      }

      ul {
        padding-left: 20px;
      }

      /* =======================
       SUPPORT FULL WIDTH BOX
      ======================== */
      .deep_amb_support-section {
        background: #ffffff;
        padding: 40px 20px;
        margin-top: 40px;
        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.06);
      }

      .deep_amb_support-box {
        max-width: 700px;
        margin: auto;
        text-align: center;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid #ddd;
        background: #fdfdfd;
      }

      /* Responsive adjustments for support box */
      @media (max-width: 768px) {
        .deep_amb_support-section {
          padding: 30px 15px;
        }
        .deep_amb_support-box {
          padding: 20px;
        }
      }

      /* Ensure images, if any added later, scale */
      img {
        max-width: 100%;
        height: auto;
      }

       /* ====== Page styling Warranty Policy =================================================================== */
      :root {
        --brand: #0d6efd;
        --muted: #6c757d;
      }

      body {
        font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial;
        background: #f8f9fa;
      }

      .deepa_amb_hero {
        background: linear-gradient(
            90deg,
            rgba(3, 15, 32, 0.615),
            rgba(0, 12, 29, 0.463)
          ),
          url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80")
            center/cover no-repeat;

        padding: 5.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 30px;
    padding: 70px 0;
    margin-right: 10px !important;
    margin-left: 10px !important;

      }

      .deepa_amb_heading1 {
        font-weight: 700;
        color: #fff;
      }

      .deepa_amb_hero .deepa_amb_badge-company {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: #fff;
      }

      .deepa_amb_hero h1 {
        font-weight: 700;
        color: #fff;
        text-shadow: 0 2px 10px rgba(13, 110, 253, 0.25);
      }

      .deepa_amb_card-coverage {
        border-left: 4px solid var(--brand);
      }

      .deepa_amb_section-title {
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .deepa_amb_muted {
        color: var(--muted);
      }

      footer {
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        padding: 1rem 0;
      }

      @media (max-width: 576px) {
        .deepa_amb_hero {
          padding: 3.5rem 0;
        }
      }
 /* Header Section E-Waste-------------------------------------------------------------------------*/
      .deepak_amb-header-section {
        position: relative;
        background: url("https://images.unsplash.com/photo-1548092372-0d1bd40894a3?auto=format&fit=crop&w=1600&q=80")
          center/cover no-repeat;
        /* height: 55vh; */
        border-radius: 30px;
    padding: 70px 0;
    margin-right: 10px !important;
    margin-left: 10px !important;

        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
      }
      .heading1{
        color: #ffff;
        font-weight: 700;
      }

      /* Dark overlay */
      .deepak_amb-header-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(0, 0, 0, 0.55);  */
      }

      .deepak_amb-header-content {
        position: relative;
        z-index: 2;
      }

      .deepak_amb-section-title {
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
      }

      .deepak_amb-policy-box {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
      }
      /* bulk order........................................................................ */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* ===== Header Section ===== */
.anu_bulk-header {
  position: relative;
  /* height: 60vh; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
   border-radius: 30px;
    padding: 60px 0;
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.anu_bulk-heading1 {
  color: #fff;
}

.anu_bulk-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.anu_bulk-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: anu_bulk-fadeInUp 1s ease forwards;
  opacity: 0;
}

.anu_bulk-header h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
}

.anu_bulk-header p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

@keyframes anu_bulk-fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


      /* ===== Info Section ===== */
      .bulk-info {
        padding: 80px 20px 40px;
        text-align: center;
      }
      .bulk-info h2 {
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
      }
      .bulk-info p {
        max-width: 800px;
        margin: auto;
        font-size: 1.05rem;
        color: #555;
        line-height: 1.6;
      }

      /* ===== Gallery Section ===== */
      .bulk-gallery-section {
        background: #f8f9fa;
        /* padding: 60px 20px; */
      }
      .bulk-gallery .card {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: rgba(255, 255, 255, 0.95);
      }
      .bulk-gallery .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }
      .bulk-gallery .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }
      .bulk-gallery .card-body {
        padding: 15px;
        text-align: center;
      }
      .bulk-gallery .card-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 8px;
      }
      .bulk-gallery .card-text {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 12px;
      }
      .bulk-gallery .order-btn {
        background-color: #ff8c00;
        border: none;
        color: white;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s ease;
      }
      .bulk-gallery .order-btn:hover {
        background-color: #00c0ff;
      }

/* ===== Bulk Order Form Section ===== */
.bulk-order-modern {
    font-family: "Poppins", Arial, sans-serif;
}

/* Form Container (Left Side) - Enhanced */
.bulk-form-modern {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Form Title - Enhanced */
.bulk-form-modern h3 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 20px;
}


.bulk-form-modern:hover h3:after {
    width: 120px;
}

/* Form Controls & Labels - Enhanced */
.bulk-form-modern .form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    position: relative;
    padding-left: 5px;
}

.bulk-form-modern .form-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(90deg, #00c0ff, #0080ff);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.bulk-form-modern .form-group:hover .form-label::before {
    height: 100%;
}

.bulk-form-modern .form-control,
.bulk-form-modern input[type="text"],
.bulk-form-modern input[type="email"],
.bulk-form-modern input[type="tel"],
.bulk-form-modern input[type="number"],
.bulk-form-modern input[type="date"],
.bulk-form-modern select,
.bulk-form-modern textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #e0e6ed;
    box-sizing: border-box;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    position: relative;
}

/* Add focus effect with animation */
.bulk-form-modern .form-control:focus,
.bulk-form-modern input[type="text"]:focus,
.bulk-form-modern input[type="email"]:focus,
.bulk-form-modern input[type="tel"]:focus,
.bulk-form-modern input[type="number"]:focus,
.bulk-form-modern input[type="date"]:focus,
.bulk-form-modern select:focus,
.bulk-form-modern textarea:focus {
    border-color: #00c0ff;
    box-shadow: 0 0 0 5px rgba(0, 192, 255, 0.1);
    background-color: #fff;
    transform: translateY(-2px);
}

/* Form group styling */
.bulk-form-modern .form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Add floating label effect */
.bulk-form-modern .form-floating {
    position: relative;
}

.bulk-form-modern .form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}

/* Submit Button - Enhanced & Fully Responsive */
.bulk-form-modern .wpcf7-submit {
    background: linear-gradient(90deg, #00c0ff, #0080ff);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 192, 255, 0.3);
    transition: all 0.4s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* Tablet Devices */
@media (max-width: 991px) {
    .bulk-form-modern .wpcf7-submit {
        padding: 16px 40px;
        font-size: 15px;
        margin-top: 15px;
    }
}

/* Mobile Devices - Landscape */
@media (max-width: 767px) {
    .bulk-form-modern .wpcf7-submit {
        padding: 14px 30px;
        font-size: 14px;
        margin-top: 15px;
        box-shadow: 0 8px 20px rgba(0, 192, 255, 0.25);
    }
}

/* Mobile Devices - Portrait */
@media (max-width: 575px) {
    .bulk-form-modern .wpcf7-submit {
        padding: 14px 25px;
        font-size: 14px;
        margin-top: 15px;
        border-radius: 40px;
        box-shadow: 0 6px 15px rgba(0, 192, 255, 0.2);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .bulk-form-modern .wpcf7-submit {
        padding: 12px 20px;
        font-size: 13px;
        margin-top: 10px;
        border-radius: 35px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .bulk-form-modern .wpcf7-submit {
        padding: 12px 15px;
        font-size: 12px;
        margin-top: 10px;
        border-radius: 30px;
    }
}

/* Hover effects for desktop only */
@media (min-width: 992px) {
    .bulk-form-modern .wpcf7-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 192, 255, 0.4);
        background: linear-gradient(90deg, #00a0e0, #0060d0);
    }
    
    .bulk-form-modern .wpcf7-submit:active {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0, 192, 255, 0.3);
    }
}

/* Touch-friendly active state for mobile */
@media (max-width: 991px) {
    .bulk-form-modern .wpcf7-submit:active {
        transform: scale(0.98);
        box-shadow: 0 5px 15px rgba(0, 192, 255, 0.3);
    }
};


/* Add ripple effect */
.bulk-form-modern .wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.bulk-form-modern .wpcf7-submit:hover::before {
    transform: translateX(0);
}

.bulk-form-modern .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 128, 255, 0.4);
}

/* Add loading state */
.bulk-form-modern .wpcf7-submit.sending {
    pointer-events: none;
    opacity: 0.7;
}

.bulk-form-modern .wpcf7-submit.sending::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.1;
    }
    70% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Add success state */
.bulk-form-modern .wpcf7-submit.success {
    background: linear-gradient(90deg, #00c853, #00e676);
}

/* Add error state */
.bulk-form-modern .wpcf7-submit.error {
    background: linear-gradient(90deg, #ff5252, #ff8a80);
}

/* ========================================================= */
/* ===== RIGHT SIDE INFO BOX (MODERN & RESPONSIVE) ===== */
/* ========================================================= */
.bulk-info-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Add hover effect to the entire info box */
.bulk-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Background Image Style */
.bulk-info-box.has-bg-image {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 52, 96, 0.9) 100%);
    background-size: cover;
    background-position: center;
}

.bulk-info-box.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.85) 100%);
    z-index: 1;
}

/* Subtle background pattern */
.bulk-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.bulk-info-box > * {
    position: relative;
    z-index: 2;
}

/* Info Box Image */
.info-box-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-box-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

/* Adjust spacing when there's no heading */
.bulk-info-box.no-heading .info-box-features {
    margin-top: 0;
}

.bulk-info-box.no-heading .info-box-image {
    margin-bottom: 30px;
}

/* Info Box Header */
.bulk-info-box .info-box-header {
    margin-bottom: 30px;
}

.bulk-info-box .info-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.bulk-info-box .info-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Feature Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.info-icon-wrapper {
    background: rgba(0, 192, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 192, 255, 0.3), rgba(0, 128, 255, 0.3));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-item:hover .info-icon-wrapper::before {
    transform: translateX(0);
}

.info-item:hover .info-icon-wrapper {
    background: rgba(0, 192, 255, 0.25);
    transform: scale(1.05);
}

.info-icon {
    font-size: 22px;
    color: #00c0ff;
    position: relative;
    z-index: 1;
}

.info-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item:hover .info-item-content h4 {
    color: #00c0ff;
}

.info-item-content p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-item:hover .info-item-content p {
    opacity: 1;
}

/* Statistics Section */
.bulk-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    flex: 1;
    margin: 0 5px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #00c0ff;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
}

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

/* Tablet and Below */
@media (max-width: 991px) {
    .bulk-order-modern .row {
        flex-direction: column-reverse; /* Info box first, form second */
    }
    .bulk-info-box {
        margin-bottom: 40px;
    }
    .bulk-form-modern, .bulk-info-box {
        padding: 40px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bulk-form-modern, .bulk-info-box {
        padding: 30px 25px;
    }

    .bulk-form-modern h3, .bulk-info-box .info-title {
        font-size: 26px;
    }

    /* Stack stats vertically on mobile */
    .bulk-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 32px;
    }
}
/* reparing page --------------------------------------------------------------------------------- */
  /* Global Styles */
      body {
        font-family: "Segoe UI", sans-serif;
        scroll-behavior: smooth;
      }
      h2 {
        font-weight: 700;
        margin-bottom: 20px;
      }
      /* p {
        color: #ffffff;
      } */
      .section {
        padding: 80px 0;
      }

  /* ===== HEADER VIDEO WIDGET SPECIFIC CSS ===== */

/* Method 1: Targeting the exact class with highest specificity */
/* .elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    overflow: visible !important;
}

/* Method 2: Alternative approach if above doesn't work */
/*body .elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    overflow: visible !important;
}

/* Method 3: Most aggressive approach - targeting any element with these classes */
/*[class*="elementor-element"][class*="e-con-full"][class*="e-flex"][class*="e-con"][class*="e-parent"][class*="e-lazyloaded"] {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    overflow: visible !important;
}

/* Method 4: If all else fails - use !important on everything */
/*.elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded,
.elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded *,
.elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded *::before,
.elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded *::after {
    box-sizing: border-box !important;
}

.elementor-element.elementor-element-e09eb36.e-con-full.e-flex.e-con.e-parent.e-lazyloaded {
    position: fixed !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
} */


/* Header Video Section - Enhanced */
.header-video {
    position: relative;
    height: 75vh;
    overflow: hidden;
    width: calc(100% - 20px); /* Account for margins */
    margin: 0 10px !important; /* Apply specified margins */
    border-radius: 30px; /* Apply specified border radius */
    z-index: 1;
    background-color: #000; /* Added fallback background color */
}

.header-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.5s ease;
    z-index: 1;
    border-radius: 30px; /* Match container border radius */
}

/* Fallback image for devices that don't support video */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: none;
    border-radius: 30px; /* Match container border radius */
}

/* Overlay - Enhanced with specified padding */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Increased opacity for better text contrast */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Changed from flex-start to center */
    align-items: center;
    text-align: center;
    padding: 20px; /* Simplified padding */
    z-index: 3;
    box-sizing: border-box;
    border-radius: 30px; /* Match container border radius */
}

/* Content container for better control */
.header-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centered content */
    padding: 30px; /* Increased padding for better content spacing */
    /* background: rgba(0, 0, 0, 0.3);  */
    border-radius: 20px; /* Rounded corners for content box */
    z-index: 4;
}

/* Title - Enhanced */
.header-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size using clamp() */
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8); /* Enhanced text shadow for better visibility */
    letter-spacing: -0.5px; /* Improved letter spacing */
    position: relative;
    z-index: 5;
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Full width for proper centering */
}

.heading1 {
    color: #fff;
    position: relative;
    display: inline-block; /* For underline effect */
    z-index: 5; /* Ensure heading is above all layers */
}

/* Description - Enhanced */
.header-overlay p {
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font size using clamp() */
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
    text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.8); /* Enhanced text shadow for better visibility */
    font-weight: 400; /* Slightly bolder text */
    position: relative;
    z-index: 5; /* Ensure paragraph is above all layers */
    text-align: center; /* Ensure text is centered */
    width: 100%; /* Full width for proper centering */
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    position: relative;
    margin-top: 30px; /* Increased margin */
    z-index: 10; /* Increased z-index for scroll indicator */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    gap: 5px;
    padding: 10px 20px; /* Added padding */
    background: rgba(255, 255, 255, 0.1); /* Restored background */
    border-radius: 50px; /* Rounded button */
}

.scroll-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2); /* Restored hover effect */
}

/* Mouse Scroll Indicator - Enhanced */
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

/* Scroll Text - Enhanced */
.scroll-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
    gap: 5px;
}

.scroll-text span {
    white-space: nowrap;
}

.scroll-text i {
    font-size: 1rem;
    animation: bounce 2s infinite;
    color: #ffffff;
}

.scroll-link:hover .scroll-text {
    opacity: 1;
}

/* Scroll Animation */
@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 6px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Advanced Responsive Design */
/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .header-video {
        height: 80vh; /* Slightly taller for larger screens */
    }
    .header-overlay {
        padding: 20px; /* Simplified padding */
    }
    .header-content {
        padding: 40px; /* Increased padding for larger screens */
    }
}

/* Large Screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .header-video {
        height: 75vh;
    }
    .header-overlay {
        padding: 20px; /* Simplified padding */
    }
    .header-content {
        padding: 35px;
    }
}

/* Medium Screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .header-video {
        height: 70vh;
        width: calc(100% - 20px);
        margin: 0 10px !important;
    }
    .header-overlay {
        padding: 20px; /* Simplified padding */
    }
    .header-content {
        max-width: 700px;
        padding: 30px;
    }
    .header-overlay h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem); /* Slightly smaller for medium screens */
    }
    .header-overlay p {
        font-size: clamp(0.9rem, 1.8vw, 1.3rem); /* Slightly smaller for medium screens */
    }
}

/* Small Screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .header-video {
        height: 60vh;
        width: calc(100% - 20px);
        margin: 0 10px !important;
    }
    .header-overlay {
        padding: 15px; /* Reduced padding for small screens */
    }
    .header-content {
        max-width: 90%; /* Use percentage instead of fixed width */
        padding: 25px;
    }
    .header-overlay h1 {
        font-size: clamp(2rem, 4vw, 3.2rem); /* Smaller for small screens */
        margin-bottom: 15px;
    }
    .header-overlay p {
        font-size: clamp(0.85rem, 1.6vw, 1.2rem); /* Smaller for small screens */
        margin-bottom: 15px;
    }
    
    /* Improved scroll indicator responsiveness */
    .mouse {
        width: 20px;
        height: 32px;
    }
    .wheel {
        width: 2px;
        height: 6px;
        top: 5px;
    }
    .scroll-text {
        font-size: 0.75rem;
        gap: 3px;
    }
    .scroll-text i {
        font-size: 0.9rem;
    }
    .scroll-link {
        gap: 4px;
        padding: 8px 16px;
    }
}

/* Extra Small Screens (575px and below) */
@media (max-width: 575px) {
    .header-video {
        height: 50vh;
        width: calc(100% - 20px);
        margin: 0 10px !important;
    }
    .header-overlay {
        padding: 15px; /* Reduced padding for extra small screens */
    }
    .header-content {
        max-width: 95%; /* Use percentage instead of fixed width */
        padding: 20px;
    }
    .header-overlay h1 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Even smaller for extra small screens */
        margin-bottom: 15px;
        line-height: 1.1; /* Adjusted line height */
    }
    .header-overlay p {
        font-size: clamp(0.8rem, 1.5vw, 1.1rem); /* Even smaller for extra small screens */
        margin-bottom: 15px;
        line-height: 1.4; /* Adjusted line height */
    }
    
    /* Further improved for small screens */
    .mouse {
        width: 18px;
        height: 28px;
    }
    .wheel {
        width: 2px;
        height: 5px;
        top: 4px;
    }
    .scroll-text {
        font-size: 0.7rem;
        gap: 2px;
    }
    .scroll-text i {
        font-size: 0.8rem;
    }
    .scroll-link {
        gap: 3px;
        padding: 6px 14px;
    }
}

/* Very Small Screens (400px and below) */
@media (max-width: 400px) {
    .header-video {
        height: 45vh;
    }
    .header-overlay {
        padding: 10px; /* Further reduced padding */
    }
    .header-content {
        max-width: 95%;
        padding: 15px;
    }
    .header-overlay h1 {
        font-size: clamp(1.6rem, 3vw, 2.5rem); /* Even smaller for very small screens */
        margin-bottom: 10px;
        line-height: 1.1;
    }
    .header-overlay p {
        font-size: clamp(0.75rem, 1.4vw, 1rem); /* Even smaller for very small screens */
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    /* Optimized for very small screens */
    .mouse {
        width: 16px;
        height: 24px;
    }
    .wheel {
        width: 1.5px;
        height: 4px;
        top: 3px;
    }
    .scroll-text {
        font-size: 0.65rem;
    }
    .scroll-text i {
        font-size: 0.7rem;
    }
    .scroll-link {
        gap: 2px;
        padding: 5px 12px;
    }
}

/* Video optimization for mobile devices - Fixed */
@media (max-width: 768px) {
    /* Only hide video if there's a fallback image available */
    .header-video .video-fallback:not([style*="background-image: none"]) + .header-video video {
        display: none;
    }
    
    /* Show fallback image if it has a background */
    .header-video .video-fallback[style*="background-image"] {
        display: block;
    }
}

/* Animation effects - Enhanced */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-overlay h1,
.header-overlay p {
    animation: fadeInUp 1s ease-out;
}

.header-overlay h1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.header-overlay p {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.scroll-indicator {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Additional professional enhancements */
.header-content {
    position: relative;
    overflow: hidden;
}

/* Add subtle gradient overlay to the entire header - Fixed z-index */
.header-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2; /* Lowered z-index to ensure content is above */
    border-radius: 30px; /* Match container border radius */
    pointer-events: none; /* Allow clicking through */
}

/* Ensure content is above the gradient overlay */
.header-overlay {
    z-index: 3; /* Increased z-index to ensure content is above gradient */
}
/* how-it-works */

.how-it-works {
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Space from header */
}

.step-card {
  border: none;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #377de6, #212ee4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

/* Icon Circle - Modern Professional Look */
.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f3f2ff;
  border: 2px solid #377de6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(107, 70, 193, 0.1));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover .icon-circle::before {
  opacity: 1;
}

.step-card i {
  font-size: 50px;
  color: #377de6;
  transition: all 0.4s ease;
  display: block;
  position: relative;
  z-index: 2;
}

.step-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Hover Effects */
.step-card.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.step-card.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-card.hover-shadow:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Hover Effects - Modern Look */
.step-card:hover .icon-circle {
  background-color: #377de6;
  border-color: #377de6;
  transform: scale(0.95) rotate(-5deg);
}

.step-card:hover i {
  color: #ffffff;
  transform: scale(0.9) rotate(5deg);
}

/* Equal height row */
.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height .step-card {
  height: 100%;
}

/* Two Part Section */
.two-part-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Responsive adjustments */
@media(max-width: 1200px){
  .step-card {
    padding: 25px 15px;
  }
  .icon-circle {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
  .step-card i {
    font-size: 45px;
  }
  .step-card h5 {
    font-size: 1.15rem;
  }
  .step-card p {
    font-size: 0.9rem;
  }
}

@media(max-width: 992px){
  .step-card {
    padding: 25px 15px;
    margin-bottom: 30px;
  }
  .icon-circle {
    width: 85px;
    height: 85px;
    margin-bottom: 16px;
  }
  .step-card i {
    font-size: 42px;
  }
  .step-card h5 {
    font-size: 1.1rem;
  }
  .step-card p {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .two-part-section {
    flex-direction: column;
    gap: 30px;
  }
}

@media(max-width: 768px){
  .step-card {
    padding: 20px 15px;
    margin-bottom: 25px;
  }
  .icon-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .step-card i {
    font-size: 40px;
  }
  .step-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .step-card p {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media(max-width: 576px){
  .step-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .icon-circle {
    width: 75px;
    height: 75px;
    margin-bottom: 12px;
  }
  .step-card i {
    font-size: 36px;
  }
  .step-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .step-card p {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media(max-width: 480px){
  .step-card {
    padding: 18px 12px;
    margin-bottom: 15px;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  .step-card i {
    font-size: 32px;
  }
  .step-card h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .step-card p {
    font-size: 0.8rem;
  }
}

      /* Centered Text Section */
      .text-center-section {
        display: flex;
        justify-content: center; /* center horizontally */
        text-align: center; /* center text inside */
        align-items: center;
        padding: 60px 20px;
      }

      .text-center-section .text-side {
        max-width: 800px; /* limit text width for better readability */
      }

      .text-center-section h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #222;
        position: relative;
      }

      .text-center-section p {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.7;
      }

      /* Responsive */
      @media (max-width: 992px) {
        .text-center-section h2 {
          font-size: 2.2rem;
        }
        .text-center-section p {
          font-size: 1rem;
        }
        .text-center-section {
          padding: 40px 15px;
        }
      }

   .brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.brand-logos img {
  width: 160px !important; /* Increased size and added !important to override */
  height: auto !important;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 12px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  flex-shrink: 0; /* Prevents flex items from shrinking */
  min-width: 160px; /* Ensures minimum width */
}

.brand-logos img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .brand-logos img {
    width: 140px !important;
    min-width: 140px;
  }
}

@media screen and (max-width: 992px) {
  .brand-logos img {
    width: 120px !important;
    min-width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .brand-logos img {
    width: 100px !important;
    min-width: 100px;
    padding: 10px;
  }
}

@media screen and (max-width: 576px) {
  .brand-logos img {
    width: 90px !important;
    min-width: 90px;
    padding: 8px;
  }
}

      /* Modal Styles */
     .book-repair-section {
  background: #f8f9fa; /* light background */
}

.repair-card {
  border: 3px solid #000000; /* border highlight */
  border-radius: 25px; /* rounded corners */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* subtle shadow */
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
}

.repair-card h2 {
  font-size: 2.5rem;
  color: #000000;
}

.repair-card p {
  font-size: 1.2rem;
  color: #555;
}

/* Modal Styles */
.repair-modal {
  display: none; 
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6); 
  justify-content: center;
  align-items: center;
}

.repair-modal-content {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.repair-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

/* Cards */
.why-us-section {
  position: relative;
  overflow: hidden;
}

.why-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
  transition: transform 0.4s;
  display: block;
}

.why-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Hover Effects */
.why-card.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-card.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.why-card.hover-shadow:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-card:hover i {
  transform: scale(1.1) rotate(-3deg);
}

/* Equal height row */
.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height .why-card {
  height: 100%;
}

/* Responsive adjustments */
@media(max-width: 1200px){
  .why-card {
    padding: 25px 15px;
  }
  .why-card i {
    font-size: 2.3rem;
  }
  .why-card h5 {
    font-size: 1.15rem;
  }
  .why-card p {
    font-size: 0.9rem;
  }
}

@media(max-width: 992px){
  .why-card {
    padding: 25px 15px;
    margin-bottom: 30px;
  }
  .why-card i {
    font-size: 2.2rem;
  }
  .why-card h5 {
    font-size: 1.1rem;
  }
  .why-card p {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media(max-width: 768px){
  .why-card {
    padding: 20px 15px;
    margin-bottom: 25px;
  }
  .why-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .why-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media(max-width: 576px){
  .why-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .why-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .why-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media(max-width: 480px){
  .why-card {
    padding: 18px 12px;
    margin-bottom: 15px;
  }
  .why-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .why-card h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .why-card p {
    font-size: 0.8rem;
  }
}
/* service avaliable------------------------------------------------------------------------- */
 /* :root {
        --primary-color: #4a6cf7;
        --secondary-color: #6c757d;
        --light-bg: #f8f9fa;
        --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        --card-hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s ease;
      } */

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

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: #ffffff;
        color: #333;
        line-height: 1.6;
      }

      /* Services Section Styles */
      /* .services-section {
        padding: 80px 0;
        background-color: #ffffff;
      } */

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title h2::after {
        /* content: ""; */
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        /* background: linear-gradient(90deg, #4a6cf7, #8b5cf6); */
        border-radius: 3px;
      }

      /* Service Card Styles */
      .service-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: var(--card-shadow);
        transition: var(--transition);
        border: 1px solid #e9ecef;
        margin-bottom: 30px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #4a6cf7, #5c9af6);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }

      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-hover-shadow);
        border-color: #4a6cf7;
      }

      .service-card:hover::before {
        transform: scaleX(1);
      }

      .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #4a6cf7;
        transition: var(--transition);
        position: relative;
      }

      .service-card:hover .service-icon {
        background: linear-gradient(135deg, #4a6cf7, #5ca4f6);
        color: white;
        transform: scale(1.1);
      }

      .service-icon i {
        transition: var(--transition);
      }

      .service-card:hover .service-icon i {
        transform: rotate(5deg);
      }

      .service-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      /* Custom Icons for Services */
      .icon-screen::before {
        content: "📱";
        font-size: 2.5rem;
      }

      .icon-battery::before {
        content: "🔋";
        font-size: 2.5rem;
      }

      .icon-mic::before {
        content: "🎤";
        font-size: 2.5rem;
      }

      .icon-receiver::before {
        content: "📞";
        font-size: 2.5rem;
      }

      .icon-charging::before {
        content: "🔌";
        font-size: 2.5rem;
      }

      .icon-speaker::before {
        content: "🔊";
        font-size: 2.5rem;
      }

      .icon-back::before {
        content: "📱";
        font-size: 2.5rem;
      }

      .icon-proximity::before {
        content: "📡";
        font-size: 2.5rem;
      }

      /* Alternative SVG Icons */
      .svg-icon {
        width: 50px;
        height: 50px;
        fill: #4a6cf7;
        transition: var(--transition);
      }

      .service-card:hover .svg-icon {
        fill: white;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .service-card {
          margin-bottom: 25px;
        }
      }

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

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

        .service-card {
          padding: 25px 15px;
        }

        .service-icon {
          width: 70px;
          height: 70px;
          font-size: 1.8rem;
        }

        .service-title {
          font-size: 1rem;
        }
      }

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

        .section-title {
          margin-bottom: 40px;
        }

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

        .service-icon {
          width: 60px;
          height: 60px;
          margin-bottom: 15px;
        }
      }
/* -------------------------------------------------------------------------------------- */
/* ===== Mobile Issue Form Section ===== */
.mobile-issue-form {
    font-family: "Poppins", Arial, sans-serif;
}

/* Form Container (Left Side) - Enhanced */
.galax_amb {
    /* --- REMOVED --- background-color: #ffffff; */
    /* --- REMOVED --- border-radius: 20px; */
    /* --- REMOVED --- box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.galax_amb-card {
    padding: 60px;
}

/* Form Title - Enhanced */
.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 20px;
}

.form-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00c0ff, #0080ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.galax_amb:hover .form-header h3:after {
    width: 120px;
}

/* Form Controls & Labels - Enhanced */
.galax_amb-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.galax_amb-group {
    position: relative;
}

.galax_amb-input-wrapper {
    position: relative;
}

/* Form Controls */
.bulk-form-control,
.bulk-form-select,
textarea.bulk-form-control {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border-radius: 10px;
    border: 1px solid #e0e6ed;
    box-sizing: border-box;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

/* Add focus effect with animation */
.bulk-form-control:focus,
.bulk-form-select:focus,
textarea.bulk-form-control:focus {
    border-color: #00c0ff;
    box-shadow: 0 0 0 5px rgba(0, 192, 255, 0.1);
    background-color: #fff;
    transform: translateY(-2px);
    outline: none;
}

/* Form Icons */
.bulk-form-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9a9a;
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.bulk-form-control:focus ~ .bulk-form-icon,
.bulk-form-select:focus ~ .bulk-form-icon,
textarea.bulk-form-control:focus ~ .bulk-form-icon {
    color: #00c0ff;
}

/* Form group styling */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Add floating label effect */
.form-floating {
    position: relative;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}

/* Submit Button - Enhanced */
.wpcf7-submit {
    background: linear-gradient(90deg, #00c0ff, #0080ff);
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 192, 255, 0.3);
    transition: all 0.4s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

/* Add ripple effect */
.wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.wpcf7-submit:hover::before {
    transform: translateX(0);
}

.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 128, 255, 0.4);
}

/* Add loading state */
.wpcf7-submit.sending {
    pointer-events: none;
    opacity: 0.7;
}

.wpcf7-submit.sending::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.1;
    }
    70% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Add success state */
.wpcf7-submit.success {
    background: linear-gradient(90deg, #00c853, #00e676);
}

/* Add error state */
.wpcf7-submit.error {
    background: linear-gradient(90deg, #ff5252, #ff8a80);
}

/* ========================================================= */
/* ===== RIGHT SIDE INFO BOX (MODERN & RESPONSIVE) ===== */
/* ========================================================= */
.bulk-info-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Add hover effect to the entire info box */
.bulk-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Background Image Style */
.bulk-info-box.has-bg-image {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 52, 96, 0.9) 100%);
    background-size: cover;
    background-position: center;
}

.bulk-info-box.has-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.85) 100%);
    z-index: 1;
}

/* Subtle background pattern */
.bulk-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.bulk-info-box > * {
    position: relative;
    z-index: 2;
}

/* Info Box Image */
.info-box-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-box-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

/* Adjust spacing when there's no heading */
.bulk-info-box.no-heading .info-box-features {
    margin-top: 0;
}

.bulk-info-box.no-heading .info-box-image {
    margin-bottom: 30px;
}

/* Info Box Header */
.bulk-info-box .info-box-header {
    margin-bottom: 30px;
}

.bulk-info-box .info-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.bulk-info-box .info-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Feature Items */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.info-icon-wrapper {
    background: rgba(0, 192, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 192, 255, 0.3), rgba(0, 128, 255, 0.3));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-item:hover .info-icon-wrapper::before {
    transform: translateX(0);
}

.info-item:hover .info-icon-wrapper {
    background: rgba(0, 192, 255, 0.25);
    transform: scale(1.05);
}

.info-icon {
    font-size: 22px;
    color: #00c0ff;
    position: relative;
    z-index: 1;
}

.info-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item:hover .info-item-content h4 {
    color: #00c0ff;
}

.info-item-content p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.info-item:hover .info-item-content p {
    opacity: 1;
}

/* Statistics Section */
.bulk-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    flex: 1;
    margin: 0 5px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #00c0ff;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
}

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

/* Tablet and Below */
@media (max-width: 991px) {
    .bulk-order-modern .row {
        flex-direction: column-reverse; /* Info box first, form second */
    }
    .bulk-info-box {
        margin-bottom: 40px;
    }
    .galax_amb-card, .bulk-info-box {
        padding: 40px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .galax_amb-card, .bulk-info-box {
        padding: 30px 25px;
    }

    .form-header h3, .bulk-info-box .info-title {
        font-size: 26px;
    }

    /* Stack stats vertically on mobile */
    .bulk-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 32px;
    }
    
    /* Adjust form elements for mobile */
    .bulk-form-control,
    .bulk-form-select,
    textarea.bulk-form-control {
        padding: 14px 45px 14px 15px;
        font-size: 14px;
    }
    
    .bulk-form-icon {
        font-size: 16px;
        right: 15px;
    }
    
    .wpcf7-submit {
        padding: 16px 0;
        font-size: 15px;
    }
}

/* Success Message */
.galax_amb-success {
    display: none;
    background: #d4f8d3;
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    color: #2e7d32;
    margin-bottom: 20px;
}
/* term & conditions-------------------------------------------------------------------------- */
/* Main container styles */
/* Terms Container - Aligned with site container/logo */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Terms & Conditions Content */
.ambient_terms_content.ymn_amb-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

/* Heading styles */
.ambient_terms_content.ymn_amb-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #0f073a;
    font-size: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ambient_terms_content.ymn_amb-content h4:first-of-type {
    margin-top: 0;
}

/* Paragraph and list styles */
.ambient_terms_content.ymn_amb-content p,
.ambient_terms_content.ymn_amb-content li,
.ambient_terms_content.ymn_amb-content div {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

/* List styles */
.ambient_terms_content.ymn_amb-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ambient_terms_content.ymn_amb-content li {
    margin-bottom: 10px;
}

/* Contact info styles */
.ambient_terms_content.ymn_amb-content p strong {
    color: #0f073a;
    font-weight: 600;
}

/* Links */
.ambient_terms_content.ymn_amb-content a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ambient_terms_content.ymn_amb-content a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .terms-container {
        max-width: 960px;
    }
    
    .ambient_terms_content.ymn_amb-content {
        padding: 35px 20px;
    }
    
    .ambient_terms_content.ymn_amb-content h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .terms-container {
        padding: 0 15px;
    }
    
    .ambient_terms_content.ymn_amb-content {
        padding: 30px 20px;
        border-radius: 10px;
    }
    
    .ambient_terms_content.ymn_amb-content h4 {
        font-size: 1.3rem;
        margin-top: 25px;
    }
    
    .ambient_terms_content.ymn_amb-content p,
    .ambient_terms_content.ymn_amb-content li,
    .ambient_terms_content.ymn_amb-content div {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .terms-container {
        padding: 0 15px;
    }
    
    .ambient_terms_content.ymn_amb-content {
        padding: 25px 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .ambient_terms_content.ymn_amb-content h4 {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .ambient_terms_content.ymn_amb-content h4:after {
        width: 40px;
        height: 2px;
    }
    
    .ambient_terms_content.ymn_amb-content p,
    .ambient_terms_content.ymn_amb-content li,
    .ambient_terms_content.ymn_amb-content div {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .ambient_terms_content.ymn_amb-content ul {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 0 10px;
    }
    
    .ambient_terms_content.ymn_amb-content {
        padding: 20px 10px;
    }
    
    .ambient_terms_content.ymn_amb-content h4 {
        font-size: 1.1rem;
    }
    
    .ambient_terms_content.ymn_amb-content p,
    .ambient_terms_content.ymn_amb-content li,
    .ambient_terms_content.ymn_amb-content div {
        font-size: 0.85rem;
    }
}

/* Print styles */
@media print {
    .terms-container {
        max-width: 100%;
        padding: 0;
    }
    
    .ambient_terms_content.ymn_amb-content {
        box-shadow: none;
        border: 1px solid #ddd;
        max-width: 100%;
        padding: 20px;
    }
    
    .ambient_terms_content.ymn_amb-content h4:after {
        background: #000;
    }
}
/* about-us-header-------------------------------------------------------------------------------- */
 /* Header Outer Wrapper */
      .about-us-header {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: center; /* Added for centering */
  color: #ffffff;
  overflow: hidden;
  border-radius: 30px;
   /*padding: 70px 0;   Changed from 70px 30px to 70px 20px */
  margin-right: 10px !important;
    margin-left: 0px !important;
  /* margin-top: 10px; */
  height: 350px;
}

.about-us-header-overlay {
  opacity: 0.95; /* Increased from 0.9 to 0.95 */
  /* top: 0;
  left: 0;
  right: 0; */
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
}

/* Updated Title Class (to avoid overriding issues) */
.about-header-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center; /* Ensured text is centered */
}

/* Breadcrumb bubble background */
.breadcrumb-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  margin: 0 auto; /* Added to center the breadcrumb */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #c8d0d4;
  padding-right: 4px;
}

.breadcrumb-item a {
  color: #d5e5e7;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 600;
}

.breadcrumb-home-icon {
  color: #ed1f27;
  font-size: 18px;
  margin-right: 6px;
}

/* Added to ensure header content is centered */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
/* vision-mission....................................................................... */
/* Mission Vision Section Styles */
      .MissionVision {
        padding: 80px 0;
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
      }

      .MissionVision .row {
        display: flex;
        align-items: stretch;
      }

      .MissionVision .section-image {
        position: relative;
        height: 100%;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
      }

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

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

      .MissionVision .section-content {
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
      }

      .MissionVision .section-subtitle {
        color: #0d003b;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }

      .MissionVision .section-subtitle i {
        margin-right: 10px;
      }

      .MissionVision .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #000000f6;
        margin-bottom: 40px;
        line-height: 1.2;
      }

      .MissionVision .mission-vision-container {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
      }

      .MissionVision .mission-box,
      .MissionVision .vision-box {
        flex: 1;
        background-color: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        height: 100%;
      }

      .MissionVision .mission-box:hover,
      .MissionVision .vision-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      .MissionVision .box-title {
        font-size: 24px;
        font-weight: 600;
        color: #000102;
        margin-bottom: 15px;
      }

      .MissionVision .box-desc {
        font-size: 16px;
        color: #6c757d;
        margin-bottom: 20px;
        line-height: 1.5;
      }

      .MissionVision .feature-list {
        list-style: none;
        padding: 0;
      }

      .MissionVision .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        gap: 10px;
      }

      .MissionVision .feature-item i {
        color: #0d003b;
        font-size: 18px;
        margin-top: 3px;
        flex-shrink: 0;
      }

      .MissionVision .feature-text {
        font-size: 16px;
        color: #495057;
        line-height: 1.5;
      }

      .MissionVision .btn-learn-more {
        /* Changed from gradient to solid color #0d003b */
        background-color: #0d003b;
        color: white;
        padding: 15px 35px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: none;
        font-size: 16px;
        position: relative;
        overflow: hidden;
        /* Updated box-shadow to match new color */
        box-shadow: 0 5px 15px rgba(13, 0, 59, 0.2);
      }

      .MissionVision .arrow-circle {
        width: 40px;
        height: 40px;
        /* Changed to a lighter shade of #0d003b for contrast */
        background-color: #4a426b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 15px;
        transition: all 0.3s ease;
      }

      .MissionVision .arrow-icon {
        color: white;
        font-size: 18px;
        transition: transform 0.3s ease;
      }

      .MissionVision .btn-learn-more:hover {
        transform: translateY(-2px);
        /* Updated box-shadow to match new color */
        box-shadow: 0 10px 20px rgba(13, 0, 59, 0.3);
        color: white;
      }

      .MissionVision .btn-learn-more:hover .arrow-circle {
        transform: translateY(-5px);
        background-color: #000;
      }

      /* Modified this part to tilt the arrow downwards instead of rotating fully */
      .MissionVision .btn-learn-more:hover .arrow-icon {
        transform: rotate(45deg);
      }

      /* Enhanced animation - updated to use new color */
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(13, 0, 59, 0.4);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(13, 0, 59, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(13, 0, 59, 0);
        }
      }

      .MissionVision .btn-learn-more:hover {
        animation: pulse 1.5s infinite;
      }

      /* Background shapes */
      .MissionVision .bg-shape-1,
      .MissionVision .bg-shape-2 {
        position: absolute;
        z-index: -1;
        opacity: 0.1;
      }

      .MissionVision .bg-shape-1 {
        top: 10%;
        left: 5%;
      }

      .MissionVision .bg-shape-2 {
        bottom: 10%;
        right: 5%;
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .MissionVision .row {
          flex-direction: column;
        }

        .MissionVision .section-image {
          height: 400px;
          margin-bottom: 30px;
        }

        .MissionVision .mission-vision-container {
          flex-direction: column;
          gap: 20px;
        }
      }

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

        .MissionVision .section-content {
          padding: 20px;
        }

        .MissionVision .section-title {
          font-size: 32px;
        }
      }
/* new header about of mobile reparing --------------------------------------------------------------------------------- */
 /* --- Repairing Services Widget Styles --- */

.rs-heading {
    font-size: 36px;
    color: #0d003b;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
    display: block;
}

.rs-subheading {
    font-size: 18px;
    color: #3498db;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 15px;
}

.rs-subheading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #3498db;
    border-radius: 50%;
}

.rs-description {
    line-height: 24px;
    font-size: 14px;
    padding: 1.5rem;
    padding-left: 3rem;
    border-left: 3px solid #3498db;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 0 8px 8px 0;
}

.rs-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Default gap */
}

.rs-card-wrapper {
    /* Width is controlled by the widget's 'columns' setting */
    box-sizing: border-box;
}

.rs-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Add a small delay to each card for a staggered animation effect */
.rs-card-wrapper:nth-child(1) .rs-card { animation-delay: 0.1s; }
.rs-card-wrapper:nth-child(2) .rs-card { animation-delay: 0.2s; }
.rs-card-wrapper:nth-child(3) .rs-card { animation-delay: 0.3s; }


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

.rs-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.rs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.rs-card:hover .rs-img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.rs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.5)
    );
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-card:hover .rs-overlay {
    opacity: 1;
}

.rs-overlay-icon {
    color: white;
    font-size: 3rem;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.rs-card:hover .rs-overlay-icon {
    transform: scale(1);
}

.rs-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rs-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d003b;
    margin-bottom: 0.8rem;
    text-align: center;
}

.rs-text {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

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

.rs-features li {
    padding: 0.4rem 0;
    color: #333333;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.rs-features li:last-child {
    border-bottom: none;
}

.rs-features li i {
    color: #3498db;
    margin-right: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .rs-heading {
        font-size: 32px;
    }
    .rs-subheading {
        font-size: 16px;
    }
    .rs-description {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    .rs-heading {
        font-size: 28px;
    }
    .rs-subheading {
        font-size: 15px;
    }
    .rs-description {
        padding-left: 1.5rem;
    }
    .rs-img-box {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .rs-heading {
        font-size: 24px;
    }
    .rs-subheading {
        font-size: 14px;
    }
    .rs-description {
        padding-left: 1rem;
    }
    .rs-img-box {
        height: 160px;
    }
}
/* video reapring services ---------------------------------------------------------------------------------------------- */
 /* HERO SECTION */
      .vs-hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* BACKGROUND VIDEO */
.vs-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* GRADIENT OVERLAY */
.vs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: -1;
}

/* HEADING */
.vs-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  opacity: 0;
  animation: vs-fadeUp 1s ease forwards;
}

.vs-hero-title span {
  color: #ffcc52;
}

/* ANIMATION */
@keyframes vs-fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* DESCRIPTION */
.vs-hero-text {
  opacity: 0;
  animation: vs-fadeUp 1.3s ease forwards;
  animation-delay: 0.2s;
  color: #ffffff;
}

/* BUTTONS */
.vs-btn-modern {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  text-decoration: none;
}

/* YELLOW BUTTON */
.vs-btn-modern-primary {
  background: linear-gradient(90deg, #ffb300, #ff9900);
  border: none;
  color: #ffffff !important;
}

.vs-btn-modern-primary:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* OUTLINE BUTTON */
.vs-btn-modern-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.vs-btn-modern-outline:hover {
  background: white;
  color: #000 !important;
  transform: translateY(-3px);
}

/* VERY LARGE SCREENS (1440px and above) */
@media (min-width: 1440px) {
  .vs-hero-title {
    font-size: 4rem;
  }
  
  .vs-hero-text {
    font-size: 1.3rem;
  }
  
  .vs-btn-modern {
    padding: 14px 36px;
    font-size: 1.1rem;
  }
}

/* LARGE SCREENS (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .vs-hero-title {
    font-size: 3.6rem;
  }
  
  .vs-hero-text {
    font-size: 1.2rem;
  }
}

/* DESKTOP (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .vs-hero-title {
    font-size: 3.2rem;
  }
  
  .vs-hero-text {
    font-size: 1.1rem;
  }
}

/* TABLET LANDSCAPE (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .vs-hero-section {
    height: 100vh;
  }
  
  .vs-hero-title {
    font-size: 2.8rem;
  }
  
  .vs-hero-text {
    font-size: 1rem;
  }
  
  .vs-btn-modern {
    padding: 11px 28px;
    font-size: 0.95rem;
  }
}

/* TABLET PORTRAIT (600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .vs-hero-section {
    min-height: 100vh;
    height: auto;
    padding: 4rem 0;
  }
  
  .vs-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
  }
  
  .vs-hero-title {
    font-size: 2.4rem;
    line-height: 1.3;
  }
  
  .vs-hero-text {
    font-size: 1rem;
  }
  
  .vs-btn-modern {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* LARGE PHONES (480px to 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .vs-hero-section {
    min-height: 100vh;
    height: auto;
    padding: 3.5rem 0;
  }
  
  .vs-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }
  
  .vs-hero-title {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  
  .vs-hero-text {
    font-size: 0.95rem;
  }
  
  .vs-btn-modern {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* MEDIUM PHONES (400px to 479px) */
@media (min-width: 400px) and (max-width: 479px) {
  .vs-hero-section {
    min-height: 100vh;
    height: auto;
    padding: 3rem 0;
  }
  
  .vs-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.8) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
  
  .vs-hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
  
  .vs-hero-text {
    font-size: 0.9rem;
  }
  
  .vs-btn-modern {
    padding: 9px 18px;
    font-size: 0.8rem;
  }
}

/* SMALL PHONES (375px to 399px) */
@media (min-width: 375px) and (max-width: 399px) {
  .vs-hero-section {
    min-height: 100vh;
    height: auto;
    padding: 2.5rem 0;
  }
  
  .vs-hero-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .vs-hero-text {
    font-size: 0.85rem;
  }
  
  .vs-btn-modern {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* VERY SMALL PHONES (up to 374px) */
@media (max-width: 374px) {
  .vs-hero-section {
    min-height: 100vh;
    height: auto;
    padding: 2rem 0;
  }
  
  .vs-hero-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .vs-hero-text {
    font-size: 0.8rem;
  }
  
  .vs-btn-modern {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
}

/* LANDSCAPE ORIENTATION FOR MOBILE/TABLET */
@media (max-height: 600px) and (orientation: landscape) {
  .vs-hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .vs-hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .vs-hero-text {
    margin-bottom: 1rem;
  }
  
  .vs-btn-modern {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* ULTRA-WIDE MONITORS (1920px and above) */
@media (min-width: 1920px) {
  .vs-hero-title {
    font-size: 4.5rem;
  }
  
  .vs-hero-text {
    font-size: 1.4rem;
  }
  
  .vs-btn-modern {
    padding: 16px 40px;
    font-size: 1.2rem;
  }
}

/* 4K MONITORS (2560px and above) */
@media (min-width: 2560px) {
  .vs-hero-title {
    font-size: 5.5rem;
  }
  
  .vs-hero-text {
    font-size: 1.6rem;
  }
  
  .vs-btn-modern {
    padding: 18px 48px;
    font-size: 1.3rem;
  }
}
/* RSV Question ------------------------------------------------------------------------------------------------------------ */
.galaxmial-rsv {
    min-height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
      url("https://picsum.photos/seed/darkbackground/1920/1080.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.galaxmial-rsv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.galaxmial-rsv-container {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.galaxmial-rsv-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* LEFT COLUMN */
.galaxmial-rsv-col-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
}

/* RIGHT COLUMN → RIGHT ALIGN */
.galaxmial-rsv-col-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    display: flex;
    justify-content: flex-end; /* RIGHT ALIGN */
}

/* Actions → ALSO RIGHT ALIGN */
.galaxmial-rsv-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;  /* RIGHT ALIGN BUTTONS */
    gap: 2rem;
}

.galaxmial-rsv-question {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
}

.galaxmial-rsv-faq {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.galaxmial-rsv-faq:hover {
    transform: translateX(5px);
    color: white;
}

.galaxmial-rsv-faq i {
    margin-left: 0.5rem;
}

.galaxmial-rsv-button {
    background-color: #ffb300;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    text-decoration: none;
}

.galaxmial-rsv-button:hover {
    background-color: #e6a200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
    color: white;
    text-decoration: none;
}

.galaxmial-rsv-button i {
    margin-left: 0.5rem;
}

/* ULTRA WIDE SCREENS (1920px and above) */
@media (min-width: 1920px) {
    .galaxmial-rsv-container {
        max-width: 1400px;
    }
    
    .galaxmial-rsv-question {
        font-size: 3.2rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.5rem;
    }
    
    .galaxmial-rsv-button {
        padding: 14px 36px;
        font-size: 1.3rem;
    }
    
    .galaxmial-rsv-actions {
        gap: 2.5rem;
    }
}

/* LARGE DESKTOPS (1440px to 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .galaxmial-rsv-question {
        font-size: 2.8rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.4rem;
    }
    
    .galaxmial-rsv-button {
        padding: 13px 34px;
        font-size: 1.2rem;
    }
}

/* DESKTOPS (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .galaxmial-rsv-question {
        font-size: 2.6rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.3rem;
    }
    
    .galaxmial-rsv-button {
        padding: 12px 32px;
        font-size: 1.15rem;
    }
}

/* TABLET LANDSCAPE (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .galaxmial-rsv-question {
        font-size: 2.4rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.2rem;
    }
    
    .galaxmial-rsv-button {
        padding: 11px 28px;
        font-size: 1.05rem;
    }
    
    .galaxmial-rsv-actions {
        gap: 1.8rem;
    }
}

/* TABLET PORTRAIT (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .galaxmial-rsv {
        min-height: 45vh;
        padding: 1.5rem 0;
    }
    
    .galaxmial-rsv-question {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.1rem;
    }
    
    .galaxmial-rsv-button {
        padding: 10px 26px;
        font-size: 1rem;
    }
    
    .galaxmial-rsv-actions {
        gap: 1.6rem;
    }
}

/* LARGE PHONES (600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .galaxmial-rsv {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 2rem;
        justify-content: center;
    }

    .galaxmial-rsv-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
    }

    .galaxmial-rsv-question {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1.05rem;
    }
    
    .galaxmial-rsv-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* MEDIUM PHONES (480px to 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .galaxmial-rsv {
        min-height: 55vh;
        padding: 1.5rem 0;
    }
    
    .galaxmial-rsv-container {
        padding: 0 10px;
    }
    
    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 1.5rem;
        justify-content: center;
    }

    .galaxmial-rsv-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.3rem;
        justify-content: center;
    }

    .galaxmial-rsv-question {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1rem;
    }
    
    .galaxmial-rsv-button {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

/* SMALL PHONES (400px to 479px) */
@media (min-width: 400px) and (max-width: 479px) {
    .galaxmial-rsv {
        min-height: 60vh;
        padding: 1.2rem 0;
    }
    
    .galaxmial-rsv-container {
        padding: 0 8px;
    }
    
    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 1.3rem;
        justify-content: center;
    }

    .galaxmial-rsv-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        justify-content: center;
        width: 100%;
    }

    .galaxmial-rsv-question {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .galaxmial-rsv-faq {
        font-size: 0.95rem;
    }
    
    .galaxmial-rsv-button {
        padding: 9px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* VERY SMALL PHONES (375px to 399px) */
@media (min-width: 375px) and (max-width: 399px) {
    .galaxmial-rsv {
        min-height: 65vh;
        padding: 1rem 0;
    }
    
    .galaxmial-rsv-container {
        padding: 0 8px;
    }
    
    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 1.2rem;
        justify-content: center;
    }

    .galaxmial-rsv-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.1rem;
        justify-content: center;
        width: 100%;
    }

    .galaxmial-rsv-question {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .galaxmial-rsv-faq {
        font-size: 0.9rem;
    }
    
    .galaxmial-rsv-button {
        padding: 8px 18px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
    }
}

/* TINY PHONES (up to 374px) */
@media (max-width: 374px) {
    .galaxmial-rsv {
        min-height: 70vh;
        padding: 1rem 0;
    }
    
    .galaxmial-rsv-container {
        padding: 0 6px;
    }
    
    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 6px;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 1rem;
        justify-content: center;
    }

    .galaxmial-rsv-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }

    .galaxmial-rsv-question {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .galaxmial-rsv-faq {
        font-size: 0.85rem;
    }
    
    .galaxmial-rsv-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 240px;
    }
}

/* LANDSCAPE MODE FOR MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    .galaxmial-rsv {
        min-height: 100vh;
        padding: 0.5rem 0;
    }
    
    .galaxmial-rsv-col-left,
    .galaxmial-rsv-col-right {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .galaxmial-rsv-col-right {
        margin-top: 0;
        justify-content: flex-end;
    }
    
    .galaxmial-rsv-actions {
        gap: 1rem;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .galaxmial-rsv-question {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 0.9rem;
    }
    
    .galaxmial-rsv-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: auto;
        max-width: none;
    }
}

/* LANDSCAPE MODE FOR TABLET */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .galaxmial-rsv {
        min-height: 80vh;
    }
    
    .galaxmial-rsv-question {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .galaxmial-rsv-faq {
        font-size: 1rem;
    }
    
    .galaxmial-rsv-button {
        padding: 9px 20px;
        font-size: 0.9rem;
    }
}
/* new testimonials stj---------------------------------------------------------------------------------------------------- */

.testimonial-wrapper .swiper-slide {
            padding-left: 30px;
        }

        /* .box {
            background-color: #0d003b;
        } */

        .tj-countup-section {
            z-index: 2;
            margin-bottom: -122px;
            position: relative;
        }

        .countup-wrap {
            background-color: #24ADCD;
            border-radius: 12px;
            flex-wrap: wrap;
            display: flex;
        }

        .countup-item {
            flex-direction: column;
            align-items: center;
            width: 25%;
            padding: 68px 50px 74px;
            display: flex;
            position: relative;
            color: white !important;
        }

        .inline-content {
            font-size: 74px;
            line-height: 1;
            font-weight: var(--tj-fw-medium);
            color: white !important;
            font-family: var(--tj-ff-heading);
            letter-spacing: -1.48px;
            align-items: center;
            margin-bottom: 5px;
            display: inline-flex;
        }

        .inline-content .odometer {
            font-weight: var(--tj-fw-medium);
            font-family: var(--tj-ff-heading);
            display: inline-flex;
            color: white !important;
        }

        .inline-content .odometer .odometer-digit,
        .inline-content .odometer span {
            font-weight: var(--tj-fw-medium);
            color: white !important;
            font-family: var(--tj-ff-heading);
            vertical-align: bottom;
            display: inline-flex;
        }

        .odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
        .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
            vertical-align: middle;
            vertical-align: auto;
            visibility: hidden;
            -moz-box-orient: vertical;
            display: inline-block;
        }

        .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
        .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
            text-align: left;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            overflow: hidden;
        }

        .odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
        .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
            display: block;
        }

        .odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
        .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
            -webkit-backface-visibility: hidden;
            display: block;
        }

        .count-separator {
            top: 50%;
            opacity: .15;
            width: 10px;
            height: 90px;
            position: absolute;
            transform: translateY(-50%);
            right: 0;
        }

        .count-text {
            color: var(--tj-color-common-white);
            display: block;
        }

        /* ================================
           Testimonial Slider (Scoped CSS)
           Parent Class: .testimonial-slider
        =================================== */

        .tj-testimonial-section {
            /* background-color:#D8E5E5; */
            z-index: 1;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            padding-bottom: 40px;
        }

        .section-gap-x {
            -webkit-margin-start: 15px;
            -webkit-margin-end: 15px;
            margin-left: 15px;
            margin-right: 15px;
          
        }

        /* .section-gap {
            padding-top: 80px;
            padding-bottom: 80px;
        } */

        .testimonial-slider .testimonial-item {
            background-color: #fff;
            border: 2px solid #fff;
            border-radius: 12px;
            height: 100%;
            padding: 45px 26px 35px;
        }

        .testimonial-slider .testimonial-item .quote-icon {
            color: #24ADCD;
            font-size: 46px;
            line-height: 1;
            display: inline-flex;
        }

        .testimonial-slider .testimonial-item .rating-wrap {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .testimonial-slider .testimonial-item .rating-wrap .rating-img {
            background-color: #d8e5e5;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
        }

        .testimonial-slider .testimonial-item .rating-wrap .rating-img img {
            width: 33px;
            height: 33px;
        }

        .testimonial-slider .testimonial-item .rating-wrap .rating-text {
            font-size: 14px;
            color: #a9b8b8;
        }

        .testimonial-slider .testimonial-item .rating-wrap .rating-text strong {
            font-size: 16px;
            font-weight: #600;
            color: #000;
        }

        .testimonial-slider .testimonial-item .desc {
            padding-top: 23px;
            padding-bottom: 22px;
            font-size: 18px;
            line-height: 1.444;
        }

        .testimonial-slider .testimonial-item .desc p {
            margin-bottom: 0;
        }

      

        .testimonial-slider .testimonial-author {
            border-top: 1px dashed #c9d1d1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 30px;
        }

        .testimonial-slider .testimonial-author .author-inner {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .testimonial-slider .testimonial-author .author-img {
            width: 59px;
            height: 59px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .testimonial-slider .testimonial-author .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

      

        .testimonial-slider .testimonial-author .title {
            margin-bottom: 0;
            line-height: 1;
        }

        .testimonial-slider .testimonial-author .designation {
            font-size: 14px;
            line-height: 1;
            display: inline-flex;
        }

        .testimonial-slider .testimonial-author .quote-icon {
            font-size: 43px;
            color: #24ADCD;
            line-height: 1;
            display: inline-flex;
        }

       

        .testimonial-slider .star-ratings {
            position: relative;
            padding: 0;
            margin: 0;
            font-size: 17px;
            line-height: 1;
            unicode-bidi: bidi-override;
            letter-spacing: 3px;
            -webkit-text-stroke: 1px #24ADCD;
        }

        .testimonial-slider .star-ratings .fill-ratings {
            color: #24ADCD;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            padding: 0;
            z-index: 1;
        }

        .testimonial-slider .swiper-slide-active .testimonial-item {
            border-color: #24ADCD;
        }

        

        .tj-testimonial-section .sec-heading-wrap {
            padding-top: 120px;
            margin-top: 30px;
        }

        .sec-heading-wrap .sub-title {
            color: #0d003b;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            font-size: 14px;
            line-height: 1;
            font-weight: 700;
            border: 1px dashed #c9d1d1;
            border-radius: 4px;
            align-items: center;
            gap: 4px;
            margin-bottom: 20px;
            padding: 10px 20px;
            display: inline-flex;
        }

        .heading-wrap-content {
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
            margin-bottom: 52px;
            display: flex;
        }

        .sec-heading .sec-title {
            margin-bottom: 0;
            color: white;
        }



/* ============================
   EXTRA LARGE (≥1400px)
============================ */
@media (min-width: 1400px) {
    .sec-heading .sec-title {
        font-size: 48px;
        line-height: 1.2;
    }
}

/* ============================
   LARGE (1200px – 1399px)
============================ */
@media (max-width: 1399px) {
    .sec-heading .sec-title {
        font-size: 40px;
        line-height: 1.2;
    }
}

/* ============================
   MEDIUM (992px – 1199px)
============================ */
@media (max-width: 1199px) {
    .sec-heading .sec-title {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* ============================
   TABLET (768px – 991px)
============================ */
@media (max-width: 991px) {
    .tj-countup-section {
        margin-bottom: -100px;
    }
    
    .countup-item {
        width: 50%;
        padding: 40px 25px 45px;
    }
    
    .countup-item:nth-child(2) .count-separator,
    .countup-item:nth-child(4) .count-separator {
        display: none;
    }
    
    .inline-content {
        font-size: 50px;
    }
    
    .count-text {
        font-size: 14px;
    }
    
    .testimonial-slider .testimonial-item {
        padding: 35px 20px 25px;
    }
    
    .testimonial-slider .testimonial-item .desc {
        font-size: 16px;
    }
    
    .testimonial-slider .testimonial-author .author-img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-slider .testimonial-author {
        padding-top: 20px;
    }
    
    .testimonial-slider .testimonial-author .quote-icon {
        font-size: 30px;
    }
    
    .tj-testimonial-section .sec-heading-wrap {
        padding-top: 110px;
    }
    
    /* Updated heading styles */
    .sec-heading .sec-title {
        font-size: 32px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

/* ============================
   SMALL TABLET (576px – 767px)
============================ */
@media (max-width: 767px) {
    .tj-countup-section {
        margin-bottom: -80px;
    }
    
    .countup-item {
        width: 50%;
        padding: 30px 20px 35px;
    }
    
    .inline-content {
        font-size: 40px;
    }
    
    .count-text {
        font-size: 13px;
    }
    
    .testimonial-slider .testimonial-item {
        padding: 30px 15px 20px;
    }
    
    .testimonial-slider .testimonial-item .desc {
        font-size: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .testimonial-slider .testimonial-author .author-img {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-slider .testimonial-author .title {
        font-size: 16px;
    }
    
    .testimonial-slider .testimonial-author .designation {
        font-size: 13px;
    }
    
    .tj-testimonial-section .sec-heading-wrap {
        padding-top: 100px;
    }
    
    /* Updated heading styles */
    .sec-heading .sec-title {
        font-size: 28px;
        line-height: 1.3;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

/* ============================
   MOBILE (≤575px)
============================ */
@media (max-width: 575px) {
    .tj-countup-section {
        margin-bottom: -60px;
    }
    
    .countup-item {
        width: 100%;
        padding: 25px 15px 30px;
    }
    
    .count-separator {
        display: none;
    }
    
    .inline-content {
        font-size: 36px;
    }
    
    .count-text {
        font-size: 12px;
    }
    
    .testimonial-slider .testimonial-item {
        padding: 25px 15px 20px;
    }
    
    .testimonial-slider .testimonial-item .desc {
        font-size: 14px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .testimonial-slider .testimonial-author {
        padding-top: 15px;
    }
    
    .testimonial-slider .testimonial-author .author-img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-slider .testimonial-author .title {
        font-size: 15px;
    }
    
    .testimonial-slider .testimonial-author .designation {
        font-size: 12px;
    }
    
    .tj-testimonial-section .sec-heading-wrap {
        padding-top: 90px;
    }
    
    /* Updated heading styles */
    .sec-heading .sec-title {
        font-size: 22px;
        line-height: 1.4;
        max-width: 100%;
        padding-right: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    
    .testimonial-wrapper .swiper-slide {
        padding-left: 15px;
    }
}

/* ============================
   EXTRA SMALL MOBILE (≤400px)
============================ */
@media (max-width: 400px) {
    .tj-countup-section {
        margin-bottom: -50px;
    }
    
    .countup-item {
        padding: 20px 10px 25px;
    }
    
    .inline-content {
        font-size: 30px;
    }
    
    .count-text {
        font-size: 11px;
    }
    
    .testimonial-slider .testimonial-item {
        padding: 20px 10px 15px;
    }
    
    .testimonial-slider .testimonial-item .desc {
        font-size: 13px;
    }
    
    .testimonial-slider .testimonial-author .author-img {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-slider .testimonial-author .title {
        font-size: 14px;
    }
    
    .testimonial-slider .testimonial-author .designation {
        font-size: 11px;
    }
    
    .tj-testimonial-section .sec-heading-wrap {
        padding-top: 80px;
    }
    
    /* Updated heading styles */
    .sec-heading .sec-title {
        font-size: 18px;
        line-height: 1.5;
        max-width: 100%;
        padding-right: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    
    .testimonial-wrapper .swiper-slide {
        padding-left: 10px;
    }
}
/* BACKGROUND PATTERN */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(20, 33, 61, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(252, 163, 17, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(230, 57, 70, 0.05) 0%,
      transparent 20%
    );
  z-index: -1;
}

/* MAIN WRAPPER */
.tj-contact-form {
  max-width: 1180px;
  margin: 60px auto;
  display: flex;
  gap: 40px;
  padding: 20px;
  align-items: stretch;
  position: relative;
}

/* LEFT SECTION */
.tj-contact-form .content-left {
  flex: 1;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-contact-form .content-left:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Decorative element */
.tj-contact-form .content-left::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #14213d20 0%, #fca31120 100%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.tj-contact-form .content-left:hover::before {
  transform: scale(1.2);
}

.tj-contact-form .contact-btn {
  border: none;
  padding: 10px 24px;
  background: #eef1f4;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #14213d;
}

.tj-contact-form .contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #14213d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: 0;
}

.tj-contact-form .contact-btn:hover::before {
  width: 300px;
  height: 300px;
}

.tj-contact-form .contact-btn:hover {
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(20, 33, 61, 0.2);
}

.tj-contact-form .contact-btn span {
  position: relative;
  z-index: 1;
}

.tj-contact-form .title {
  font-size: 35px;
  font-weight: 700;
  color: #14213d;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.tj-contact-form .description {
  margin: 20px 0 35px;
  font-size: 16px;
  color: #555;
  max-width: 550px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Stats Box */
.tj-contact-form .stats-box {
  display: flex;
  gap: 15px;
  background: #f9fafc;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.tj-contact-form .stats-box:hover {
  background: #f0f2f5;
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tj-contact-form .stats-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.tj-contact-form .stats-box:hover .stats-icon {
  transform: scale(1.1) rotate(5deg);
}

.tj-contact-form .stats-icon.blue {
  background: rgba(20, 33, 61, 0.06);
  color: #14213d;
}

.tj-contact-form .stats-icon i {
  transition: all 0.3s ease;
}

.tj-contact-form .stats-box:hover .stats-icon i {
  transform: scale(1.2);
}

.tj-contact-form .stats-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #14213d;
  margin-bottom: 5px;
}

.tj-contact-form .stats-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* RIGHT FORM SECTION */
.tj-contact-form .form-right {
  flex: 1;
  background: #121a22;
  color: white;
  padding: 45px 35px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Form background decoration */
.tj-contact-form .form-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 33, 61, 0.8) 0%,
    rgba(18, 26, 34, 0.9) 100%
  );
  z-index: 0;
}

.tj-contact-form .form-right > * {
  position: relative;
  z-index: 1;
}

/* CHANGED h3 to h4 */
.tj-contact-form .form-right h4 {
  font-size: 26px;
  margin-bottom: 5px;
  font-weight: 600;
}

.tj-contact-form .form-sub {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* FORM INPUTS */
.tj-contact-form .form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  outline: none;
  font-size: 15px;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tj-contact-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tj-contact-form .form-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(252, 163, 17, 0.5);
  box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.1);
  transform: translateY(-2px);
}

/* SEND BUTTON */
.tj-contact-form .send-btn {
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fca311 0%, #ff8c00 100%);
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.tj-contact-form .send-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.tj-contact-form .send-btn:hover::before {
  left: 100%;
}

.tj-contact-form .send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(252, 163, 17, 0.3);
}

.tj-contact-form .send-btn:active {
  transform: translateY(-1px);
}

.tj-contact-form .send-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.tj-contact-form .send-btn:hover i {
  transform: translateX(5px);
}

/* Success message */
.success-message {
  display: none;
  padding: 15px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  color: #4caf50;
  margin-top: 20px;
  animation: slideInUp 0.5s ease;
}

.success-message.show {
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .tj-contact-form {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .tj-contact-form .title {
    font-size: 26px;
  }

  .tj-contact-form .content-left,
  .tj-contact-form .form-right {
    padding: 30px 25px;
  }
}