/**************************************
    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: #ebb11f;
  --main-color: #0d1d47;
  --hero-white: #ffffff;
}

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



* {
  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;
}

@media (min-width: 768px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 90% !important;
  }
}



/* ----------------------------------------------------------------
    Header
------------------------------------------------------------------- */
.main-header {
  background-color: #fff;
  height: 80px;
  position: relative;
  transition: height .5s ease-in;
  z-index: 99;
}
.header-sticky {
  animation: headerSticky .95s ease forwards;
  position: fixed;
  z-index: 14;
  width: 100%;
  box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
  transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
  background-color: rgb(252, 252, 252);
  top: 0;
}
@-webkit-keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.main-header.dropdown-open {
  background-color: rgb(252, 252, 252);
}
.main-header .nabbar-nav {
  margin-bottom: 0;
  height: 100%;
  overflow: hidden;
}
.main-header .nabbar-nav > .container-lg {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
  display: inline-block;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand img {
  max-height: 60px;
}
/* Desktop Navigation */
@media (min-width: 992px) {
  .main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
    margin-inline-end: 32px;
  }
  .main-header .nabbar-nav .mainmenu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
  }
  .main-header .nabbar-nav .mainmenu li {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu li.megamenu {
    position: inherit;
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
    color: rgb(54, 54, 54);
    font-weight: 600;
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu > li > a.active {
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu > li > a > span {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span[data-offer]:after {
    content: attr(data-offer);
    background: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown > a > .dropdown-indicator {
    font-size: 12px;
    line-height: 0;
    margin-inline-start: 5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a, .main-header .nabbar-nav .mainmenu li:has(.active) > a {
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    background-color: rgb(252, 252, 252);
    border-radius: 0px 0px 50px 50px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
  }
  .main-header .navbar-button, .main-header .nabbar-nav .mobile-menu-header {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 960px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
	.main-header .nabbar-nav .mainmenu li.has-droupdown.megamenu-four .submenu .megamenu-item > li{
		width: 25%;
	}
	
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li + li {
    border-left: 1px solid #f0f0f0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span {
    display: block;
    padding: 4px 8px;
    border-radius: 10px;
    width: max-content;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    height: 24px;
    position: relative;
    z-index: 5;
    background-color: rgb(144, 219, 150);
    color: rgb(54, 54, 54);
    font-size: 13px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(144, 219, 150) transparent transparent transparent;
    transform: translatey(-50%) rotate(90deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a {
    color: var(--main-color);
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a i {
    margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover {
    background-size: 100% 1px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover i {
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    font-style: normal;
    text-transform: capitalize;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgb(124, 144, 170);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: #f7f9fd;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active {
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 23%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:after {
    content: '\F138';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: bootstrap-icons !important;
    font-size: 17px;
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    height: 45px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: all 0.5s;
    width: 45px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 24px;
    line-height: 0;
    color: #667093;
    transition: all 0.5s;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover > .inner > .icon > .inner, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active > .inner > .icon > .inner {
    background-color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover > .inner > .icon > .inner i, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active > .inner > .icon > .inner i {
    color: #fff;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img {
    display: block;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists {
    display: block;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists h3 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgb(124, 144, 170);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p {
    font-size: 16px;
    margin: 0;
    position: relative;
    color: #6c6c6c;
    padding-inline-start: 25px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p:before {
    content: "\eb86";
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 14px;
    font-family: remixicon !important;
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p + p {
    margin-top: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.web-off {
    display: none;
  }
}
@media (min-width: 1200px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 1140px;
  }
}
@media (min-width: 1270px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 90% !important;
  }
}
/* Mobile Navigation */
@media (max-width: 991px) {
  .main-header .navbar-button {
    height: auto;
    width: auto;
    text-align: center;
    outline: none;
    border: 0 none;
    padding: 0;
    background: transparent;
    display: block;
    font-size: 25px;
    margin-inline-end: 15px;
  }
  .main-header .mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  .main-header .mobile-menu-header .logo img {
    max-height: 30px;
  }
  .main-header .mobile-menu-header .close-icon .navbar-close {
    border: 0 none;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #cccccc40;
    line-height: 0;
    border-radius: 0;
  }
  .main-header .header-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 .5s ease-out;
  }
  .main-header .header-menu.active {
    visibility: visible;
    opacity: 1;
  }
  body:has(.main-header .header-menu.active) {
    overflow: hidden;
  }
  .main-header .header-menu > .inner {
    width: 320px;
    z-index: 999;
    position: absolute;
    background: #FFFFFF;
    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 .5s ease-out;
  }
  .main-header .header-menu.active > .inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
  }
  .main-header .nabbar-nav .mainmenu {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .main-header .nabbar-nav .mainmenu > li {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(246, 246, 249);
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    color: rgb(54, 54, 54);
    text-decoration: none;
    background-color: transparent;
    border: medium;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span[data-offer]:after {
    content: attr(data-offer);
    background: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open {
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a > .dropdown-indicator {
    font-size: 17px;
    transform: rotate(-90deg);
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown .submenu {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: 15px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 0;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 20px;
    line-height: 0;
    color: var(--main-color);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img {
    display: none;
  }
}
@media (min-width:501px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns i {
    display: none;
  }
}
@media (max-width:500px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns {
    padding: 8px 12px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .btns span {
    display: none;
  }
}

 .main-header .nabbar-nav .nav-right-side-bar .btns.header-btn{
  padding: 13px 40px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  line-height: 25px;
  display: flex;
  align-items: center;
  position: relative;
 }
  .main-header .nabbar-nav .nav-right-side-bar .btns.header-btn:before{
    opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(5,133,205,.27);
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(.65,0,.34,1);
  animation-timing-function: cubic-bezier(.65,0,.34,1);
  z-index: -1;
  border-radius: 50px;
  }

  @keyframes ripple {
  from {
    opacity:1;
    transform:scale3d(.75,.75,1)
  }
  to {
    opacity:0;
    transform:scale3d(2,2,1)
  }
}



/* ====================
Main Footer
==================== */

.main-footer {
      background-color: #0a1045;
      color: #cdd5f3;
      padding: 60px 0 0 0;
    }
 
    .main-footer .logo img {
      max-height: 90px;
    }
 
   
    .main-footer .brand-tagline {
      font-size: 14px;
      color: #e6e6e6;
      font-weight: 500;
      letter-spacing: 1px;
    }
 
    
 
    .main-footer .follow-us-label {
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
    }
 
    .main-footer .social-icons a {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #cdd5f3;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
 
    .main-footer .social-icons a:hover {
      background-color: #f0c040;
      color: #0a1045;
      border-color: #f0c040;
    }
 
    .main-footer .footer-heading {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 14px;
      position: relative;
      padding-bottom: 10px;
    }
 
    .main-footer .footer-heading::after {
      content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-gold), transparent);
  border-radius: 2px;
    }
 
    .main-footer .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
 
    .main-footer .footer-links li {
      margin-bottom: 9px;
    }
 
    .main-footer .footer-links li a {
      color: #cdd5f3;
      text-decoration: none;
      font-size: 13.5px;
      transition: color 0.2s;
    }
 
    .main-footer .footer-links li a:hover {
      color: #f0c040;
    }
 
    .main-footer .footer-divider {
      border-top: 1px solid rgba(240, 192, 64, 0.35);
      margin-top: 40px;
    }
 
    .main-footer .footer-bottom {
      padding: 18px 0;
      font-size: 13px;
      color: #8fa3d3;
    }
 
    .main-footer .footer-bottom .years {
      color: #f0c040;
      font-weight: 700;
    }
 
    .main-footer .footer-bottom .bottom-links a {
      color: #8fa3d3;
      text-decoration: none;
      font-size: 13px;
      margin-left: 20px;
      transition: color 0.2s;
    }
 
    .main-footer .footer-bottom .bottom-links a:hover {
      color: #f0c040;
    }


/* @media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1141px !important;
  }
}

@media (min-width: 1300px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240!important;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1341px !important;
  }
}

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

@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1540x !important;
  }
}

@media (min-width: 1700px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1640x !important;
  }
}

@media (min-width: 1800px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1740x !important;
  }
}

@media (min-width: 1900px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1840px !important;
  }
} */

/* ==============================
# 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;
}

/* ==========================================
 Home-ambient-hero-section-WebGLRenderingContext.php
 ========================================== */
/* Base Variables & Layout */

/* ============================================================
   AMBIENT HERO SLIDER — CSS
   Fixes: layout grid, button design, full responsiveness,
   overlay system, progress bar, alignment modes
   ============================================================ */

/* ---------- BASE WRAPPER ---------- */
.hero_slider_wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* overridden by Elementor slider */
  overflow: hidden;
  background-color: #000;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.hero_slider_wrapper:active {
  cursor: grabbing;
}

/* ---------- SLIDES ---------- */
.hero_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero_slide img {
  pointer-events: none;
  user-select: none;
}

/* --- Style 1: Zoom Fade --- */
.hero-style_1 .hero_slide {
  transform: scale(1.06);
}
.hero-style_1 .hero_slide.hero_active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* --- Style 2: Slide Horizontal --- */
.hero-style_2 .hero_slide {
  transform: translateX(60%);
  opacity: 0;
  visibility: hidden;
}
.hero-style_2 .hero_slide.hero_active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.hero-style_2 .hero_slide.hero_prev {
  transform: translateX(-60%);
  opacity: 0;
}

/* --- Style 3: Soft Fade --- */
.hero-style_3 .hero_slide {
  transform: none;
}
.hero-style_3 .hero_slide.hero_active {
  opacity: 1;
  visibility: visible;
}

/* ---------- BACKGROUND IMAGE + OVERLAY ---------- */
.hero_bg_image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* subtle scale animation on active slide */
  transition: transform 8s ease;
}
.hero_slide.hero_active .hero_bg_image {
  transform: scale(1.04);
}
/* Overlay via pseudo-element — color & opacity controlled by Elementor */
.hero_bg_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0.55;
}

/* ---------- CONTAINER — THE LAYOUT FIX ---------- */
.hero_container {
  position: relative; /* stays above bg */
  z-index: 10;
  width: 100%; /* fill the slide width */
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal columns — prevents title overflow */
  align-items: center;
  gap: 48px;
  padding: 0 5%;
  box-sizing: border-box;
}

/* When there is NO side image, content takes full width */
.hero_container:not(:has(.hero_side_image_box)) {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

/* ---------- CONTENT AREA ---------- */
.hero_content {
  color: #fff;
  /* Slide-in animation for content */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s 0.2s ease,
    transform 0.7s 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero_slide.hero_active .hero_content {
  opacity: 1;
  transform: translateY(0);
}

.hero_container .small-title {
  background-color: #2c2427;
  border: solid 1px #575051;
  border-radius: 77px;
  padding: 5px 22px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
  font-size: clamp(0.5rem, 1.5vw, 3rem) !important;
}

.hero_title {
  line-height: 50px;
  margin: 0 0 20px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  word-break: break-word; /* prevents overflow on narrow screens */
  font-family: var(--font-primary);

  /* clamp(MIN, PREFERRED, MAX) */
  font-size: clamp(2.5rem, 3vw, 10rem) !important;
}

.hero_description {
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 36px 0;
  color: rgba(255, 255, 255, 0.82);
  /* clamp(MIN, PREFERRED, MAX) */
  font-size: clamp(0.5rem, 1.5vw, 3rem) !important;
}

/* ---------- CENTER ALIGNMENT MODE ---------- */
.hero-align-center .hero_container {
  text-align: center;
}
.hero-align-center .hero_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-align-center .hero_description {
  max-width: 640px;
}

/* ---------- BUTTONS ---------- */
.hero_actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
}
.hero_btn:hover {
  transform: translateY(-2px);
}
.hero_btn:active {
  transform: translateY(0);
}

/* Primary */
.hero_btn_primary {
  background-color: #0d1d47;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  /* Min: 13px, Preferred: 1.2vw, Max: 18px */
font-size: clamp(13px, 1.2vw, 18px) !important;

}
.hero_btn_primary:hover {
  background-color: #e64a19;
  /* box-shadow: 0 6px 24px rgba(230, 74, 25, 0.4); */
}

/* Outline */
.hero_btn_outline {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero_btn_outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
}

/* SVG arrow inside button */
.hero_btn svg {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.hero_btn:hover svg {
  transform: translate(2px, -2px);
}

/* ---------- SIDE IMAGE ---------- */
.hero_side_image_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* Slide-in from right */
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.75s 0.35s ease,
    transform 0.75s 0.35s ease;
}
.hero_slide.hero_active .hero_side_image_box {
  opacity: 1;
  transform: translateX(0);
}

.hero_side_image {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ---------- NAVIGATION ARROWS ---------- */
.hero_nav_controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 20;
  pointer-events: none;
}

.hero_nav_btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  pointer-events: auto;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  outline: none;
  box-sizing: border-box;
}
.hero_nav_btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}
.hero_nav_btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

/* ---------- DOTS ---------- */
.hero_dots_container {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hero_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s,
    border-radius 0.3s,
    transform 0.3s;
  border: none;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
.hero_dot.active {
  background: #ffffff;
  width: 24px; /* pill shape for active dot */
  border-radius: 4px;
  transform: none;
}
.hero_dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
}

/* ---------- PROGRESS BAR ---------- */
.hero_progress_bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 20;
  overflow: hidden;
}
.hero_progress_inner {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.7);
  transition: width linear;
}
.hero_progress_inner.running {
  width: 100%;
}
/* ---------- RESPONSIVE — SMALL MOBILE (max 480px) ---------- */
@media (max-width: 480px) {
  .hero_dots_container {
    bottom: 18px;
  }
  .hero_nav_controls {
    top: auto;
    bottom: 52px;
    transform: none;
    padding: 0 16px;
  }
  .hero_side_image_box {
    display: none;
  }
  .hero_slide.hero_active .hero_container {
    padding: 0px !important;
  }
  .hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ---------- RESPONSIVE — MOBILE (max 768px) ---------- */
@media (max-width: 768px) {
  .hero_slider_wrapper {
    height: 50svh !important; /* safe-area aware */
    min-height: 560px;
  }
  .hero_slide.hero_active .hero_container {
    grid-template-columns: 1fr;
    padding: 200px 20px 0px 20px;
    gap: 24px;
    align-content: center;
  }
  .hero_title {
    font-size: clamp(
      28px,
      7vw,
      44px
    ) !important; /* fluid type overrides Elementor */
    margin-bottom: 14px;
    text-align: center !important;
  }
  .hero_description {
    font-size: clamp(14px, 3.5vw, 17px) !important;
    margin-bottom: 28px;
    text-align: center !important;
  }
  .hero_actions {
    /* flex-direction: column; */
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
  .hero_btn {
    justify-content: center;
    padding: 13px 24px;
    max-width: 180px;
    width: 100%;
  }
  /* Hide side image on mobile when option is enabled */
  .hero-hide-side-mobile .hero_side_image_box {
    display: none;
  }
  .hero_nav_btn {
    width: 40px;
    height: 40px;
  }
  .hero_nav_controls {
    padding: 0 12px;
  }
  .hero_content {
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }
}

/* ---------- RESPONSIVE — TABLET (max 1024px) ---------- */
@media (max-width: 1024px) {
  .hero_container {
    /* grid-template-columns: 1fr; */
    gap: 32px;
    padding: 35px 20px 0px 20px;
    text-align: center;
  }
  .hero_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero_description {
    max-width: 100%;
    text-align: left;
  }
  .hero_actions {
    justify-content: center;
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .hero_side_image_box {
    justify-content: center;
  }
  .hero_side_image {
    max-width: 380px;
  }
  .hero_container .small-title {
    background-color: #2c2427;
    border: solid 1px #575051;
    border-radius: 77px;
    padding: 11px 22px;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 33px;
  }
  .hero_title {
    line-height: 50px;
    margin: 0 0 20px 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    word-break: break-word;
    font-family: var(--font-primary);
    font-size: calc(1.5rem + 1.5vw) !important;
    text-align: left;
  }
}

/* SERVICE PAGE */
.tech {
  position: relative;
  width: 100vw;
  max-width: 36cm;
  margin: 0 auto;
  overflow: hidden;
  height: 15cm; /* Increased height to fit two rows */
  background: #000;
  display: flex;
  flex-direction: column; /* Stack sliders vertically */
  justify-content: center; /* Center them vertically */
  gap: 30px; /* Space between the two sliders */
}

/* Background image styling */
.bg-image {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

/* Shared Slider Styles */
.slider-right,
.slider-left,
.slider-right-2 {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Slider Right Animation (Standard) */
.slider-right {
  animation: scrollRight 20s linear infinite;
}
/* Slider Left Animation (Reverse) */
.slider-left {
  animation: scrollLeft 20s linear infinite;
}
.slider-right-2 {
  animation: scrollRight 20s linear infinite;
}
.tech h1 {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center; /* Centers the text */
  margin: 0 0 10px 0; /* Adds small space below title */
  color: white;
}

/* Box Styling */
.box_t {
  flex: 0 0 auto;
  width: 150px;
  height: 50px;
  background: white;
  border: 1px solid #444;
  border-radius: 8px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: black;
  user-select: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.box_t:hover {
  transform: scale(1.05);
  border-color: #777;
  z-index: 10; /* Bring to front on hover */
}

.box_t img {
  width: 30px; /* Adjusted for better fit */
  height: auto;
  margin-left: 10px; /* Space from left edge */
  object-fit: contain;
}

.box_t h5 {
  margin: 0 0 0 10px; /* Space between image and text */
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 600;
}

/* Keyframes for Right-to-Left */
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Keyframes for Left-to-Right */
@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  } /* Start shifted left */
  100% {
    transform: translateX(0);
  } /* End at original position */
}

/* SERVICES SECTION  */

.custom-card-box {
  background-color: #f0f0f0;
  height: 100%; /*Fixed height as requested */
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  z-index: 1;
}
.custom-card-box h3 {
  margin: 20px 0 10px 0;
  text-align: left;
  font-size: 24px;
}
.custom-card-box p {
  color: black;
  text-align: inherit;
  /* padding-bottom: 8px; */
  font-size: 1rem;
  word-spacing: 5px;
  line-break: auto;
}
.service-tag {
  display: inline-block;
  color: #000;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #f1f1f1;
  margin: 20px 0px 20px 0px;
  font-weight: 600;
}

/* Hover Effects */
/* .custom-card-box:hover {
  background-image: linear-gradient(
    to top,
    #1e3c72 0%,
    #1e3c72 1%,
    #2a5298 100%
  ); */
/* box-shadow: 0 0 20px rgba(0, 0, 139, 0.9);
    transform: translateY(-5px); */
/* } */

.custom-card-box:before {
  content: "";
  background-color: transparent !important;
  background-image: linear-gradient(
    170deg,
    #0033c0 0%,
    #1e3c72 100%
  ) !important;
  position: absolute;
  left: 0px;
  bottom: 0px;
  text-align: left;
  width: 100%;
  height: 0%;
  opacity: 1;
  transition: 0.6s;
  transform: rotate(0deg) scale(1);
  z-index: -1; /* Isse background content ke peeche rahega */
  border-radius: 10px;
}
.custom-card-box:hover:before {
  height: 100% !important;
  transform: rotate(0deg) scale(1);
}
.custom-card-box:after {
  content: "";
  text-align: left;
  transition: 0.3s;
  transform: rotate(0deg) scale(1);
}
.custom-card-box:hover:after {
  transform: rotate(0deg) scale(1);
}

.custom-card-box:hover h3 {
  color: white;
}
.custom-card-box:hover p {
  color: #d3d3d3;
}
/* Animation States */
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.custom-card-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Button CSS --- */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.4s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background-color: midnightblue;
  height: 60px;
  display: flex;
  align-items: center;
  /* margin-bottom: 40px; */
}

.track {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

.track p {
  display: inline-block;
  font-size: 30px;
  margin-top: 10px;
  margin-right: 50px;
  color: white;
  font-weight: bold;
  vertical-align: middle;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .container .service-tag {
    display: flex;
    color: #000;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    justify-content: center;
  }
  .container .services-main-heading {
    text-align: center !important;
  }
}
@media (max-width: 720px) {
  .service-tag {
    display: flex;
    width: fit-content;
    color: #000;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    justify-content: center;
    margin: 20px auto;
  }

  .container .services-main-heading {
    text-align: center !important;
  }
}
@media (max-width: 1024px) {
  .service-tag {
    display: flex;
    width: fit-content;
    color: #000;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    justify-content: center;
    margin: 20px auto;
  }
  .container .services-main-heading {
    text-align: center !important;
  }
}

/* AWARDS  */
.slider {
  background: #f0f0f0;
  overflow: hidden;
  padding: 50px;
}

.slide-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.box_A {
  width: auto;
  background: white;
  aspect-ratio: 1/1;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 8px;
  flex-direction: column;
  gap: 15px;
}
.box_A p {
  font-size: 16px; /* Reduced size from the default 28px */
  text-align: center; /* Aligned center */
  margin: 0; /* Removes default paragraph margins */
  padding: 0 10px;
  line-height: 1.3;
  color: #000;
  font-weight: 600;
}
.award-slider-container h2 {
  color: midnightblue;
  text-align: left; /* Centers the text horizontally */
  width: 100%; /* Ensures it takes full width of container */
  margin: 0 0 30px 0; /* Adds space below the heading */
  padding: 0;
}

/* right to left animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ABOUT SECTION */
.about-section {
  padding: 0px 40px 0px 40px;
  background-color: #f8f9fa;
  box-shadow: #6c757d;
}

/* Heading */
.about-section h2 {
  font-size: 2.3rem;
  color: #212529;
}

/* Paragraph */
.about-section p {
  font-size: 15px;
  line-height: 1.7;
}

/* Button */
.btn-outline-primary {
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Stats Card */
.stat-card {
  background: lightblue;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  display: flex;
}

.stat-card h5 {
  font-size: 20px;
  color: #0d6efd;
}

.stat-card small {
  color: #6c757d;
}
/* Image box (FIXED ISSUE) */
.img-box {
  background: url("bg.jpg") center/cover no-repeat;
  min-height: 400px;
  height: 100%;
  border-radius: 20px;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .about-section {
    padding: 40px 15px;
  }
  .about-section h2 {
    font-size: 1.75rem; /* Smaller heading for mobile */
  }

  .img-box {
    min-height: 300px; /* Shorter height for mobile view */
    border-radius: 15px; /* Slightly smaller radius for mobile */
  }

  .stat-card {
    padding: 10px; /* Smaller padding inside cards for mobile */
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
  }

  /* Ensures stats row displays correctly on tablets */
  .about-section .row-cols-md-3 .col {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .about-section {
    padding: 60px 40px;
  }

  /* Forces the two columns to sit side-by-side */
  .about-section .row > .col {
    flex: 0 0 auto;
    width: 50%; /* 50% for left content, 50% for right image */
  }

  .img-box {
    min-height: 100%; /* Ensures image matches content height */
  }
}
*/
/* ====================================
home-ambient-success-story-widget-css
===================================== */
/**
 * Success Stories Slider — Stylesheet
 * File: assets/css/success-stories.css
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
.ss-section {
  /* --ss-radius-card: 16px; */
  /* --ss-radius-logo: 10px; */
  /* --ss-padding-section: 60px 20px; */
  /* --ss-shadow: 0 12px 48px rgba(0, 0, 0, 0.12); */
  --ss-font-title: inherit;
  --ss-font-body: inherit;
  /* --ss-stat-gap: 32px; */
  /* --ss-left-width: 50%; */
  /* --ss-right-width: 50%; */
  /* --ss-slide-height: 380px; */
}

/* ============================================================
   SECTION WRAPPER
============================================================ */
.ss-section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: hidden;
  /* Smooth background color change */
  transition: background-color 0.6s ease;
}

/* Cursor for Drag Feature */
.ss-track {
  cursor: grab;
}
.ss-track:active {
  cursor: grabbing;
}

.ss-container {
  /* max-width: 1140px; */
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   SECTION HEADING
============================================================ */
.ss-section-title {
  text-align: center;
  font-family: var(--ss-font-title);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #000;
  margin: 0 0 36px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

/* ============================================================
   SLIDER WRAPPER
============================================================ */
.ss-slider-wrapper {
  position: relative;
  width: 100%;
}

/* ============================================================
   TRACK — fixed height + relative container for absolute slides
   This is what prevents the "slide to bottom" glitch.
   All slides sit on top of each other inside this box.
============================================================ */
.ss-track {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* ============================================================
   SLIDES — ALL absolutely stacked inside track
   No slide affects layout flow — fixes the bottom-jump bug.
============================================================ */
.ss-slide {
  position: absolute;
  inset: 0; /* top:0 left:0 right:0 bottom:0 */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-sizing: border-box;

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  will-change: opacity, transform;
  z-index: 1;
}

/* Active visible slide */
.ss-slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) !important;
  z-index: 2;
}

/* Exiting slide going left */
.ss-slide--exit-left {
  opacity: 0 !important;
  transform: translateX(-60px) !important;
  pointer-events: none;
  z-index: 2;
}

/* Exiting slide going right */
.ss-slide--exit-right {
  opacity: 0 !important;
  transform: translateX(60px) !important;
  pointer-events: none;
  z-index: 2;
}

/* Entering slide from left (before animation) */
.ss-slide--enter-from-left {
  transform: translateX(-60px);
  opacity: 0;
}

/* Entering slide from right (before animation) */
.ss-slide--enter-from-right {
  transform: translateX(60px);
  opacity: 0;
}

/* ============================================================
   LEFT CONTENT PANEL
============================================================ */
.ss-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 36px 40px 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
}

/* ============================================================
   LOGO ROW
============================================================ */
.ss-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ss-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ss-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ss-logo-fallback span {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--ss-font-title);
}

.ss-company-name {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  font-family: var(--ss-font-title);
}

/* ============================================================
   DESCRIPTION
============================================================ */
.ss-description {
  font-size: clamp(18px, 1.2vw, 25.5px);
  line-height: 1.7;
  color: #000;
  margin: 0;
  font-family: var(--ss-font-body);
}

/* ============================================================
   STATS ROW
============================================================ */
.ss-stats {
  display: flex;
  align-items: flex-start;
  /* flex-wrap: wrap; */
  gap: 0;
}

.ss-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 32px;
}

.ss-stat-value {
  font-size: 12.5px;
  font-weight: 400;
  color: #7a8499;
  font-family: var(--ss-font-body);
  line-height: 1.4;
}

.ss-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a2233;
  font-family: var(--ss-font-body);
  line-height: 1.3;
}

/* ============================================================
   APP STORE BADGES
============================================================ */
.ss-stores {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ss-available-label {
  font-size: 12px;
  font-weight: 500;
  color: #7a8499;
  font-family: var(--ss-font-body);
}

.ss-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ss-badge-link {
  display: inline-block;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.ss-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.ss-badge-img {
  height: 34px;
  width: auto;
  display: block;
  border-radius: 5px;
}

.ss-badge-fallback {
  display: block;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
}

/* ============================================================
   CTA BUTTON
   Matches screenshot exactly:
   - Pill shape
   - Border + text = brand color (teal)
   - White background
   - Right side: filled circle with white arrow icon
============================================================ */
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 9px 9px 9px 20px;
  border-radius: 50px;
  border: 2px solid; /* color set by inline style */
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  letter-spacing: 0.2px;
  font-family: var(--ss-font-body);
  line-height: 1;
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.ss-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

/* Text label inside button */
.ss-btn-label {
  white-space: nowrap;
}

/* Filled circle icon — sits flush on the right inside the pill */
.ss-btn-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  /* bg color set by inline style from PHP */
}

.ss-btn:hover .ss-btn-icon-wrap {
  transform: translateX(3px);
}

/* SVG arrow inside the circle */
.ss-btn-arrow {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   RIGHT IMAGE PANEL
============================================================ */
.ss-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px !important;
  border-radius: 20px;
}

.ss-right-img {
  width: 100%;
  height: 100% !important;
  display: block;
  position: absolute;
  inset: 0;
  object-position: center;
  border-radius: 35px !important;
  padding: 20px;
}
.ss-right-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ss-right-placeholder span {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--ss-font-title);
}

/* ============================================================
   NAVIGATION BUTTONS
============================================================ */
.ss-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.ss-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  padding: 0;
  line-height: 0;
}

.ss-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.ss-nav-btn:active {
  transform: scale(0.95);
}

/* ============================================================
   DOTS
============================================================ */
.ss-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.25s ease,
    width 0.25s ease,
    border-radius 0.25s ease;
}

.ss-dot--active {
  background-color: #ffffff;
  width: 22px;
  border-radius: 4px;
}
.ss-track {
  height: auto;
  min-height: 480px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤900px)
============================================================ */
@media (max-width: 900px) {
  .ss-section {
    --ss-padding-section: 48px 16px;
    --ss-left-width: 55%;
    --ss-right-width: 45%;
    --ss-stat-gap: 20px;
    --ss-slide-height: 360px;
  }

  .ss-left {
    padding: 30px 22px 30px 30px;
    gap: 13px;
  }
  .ss-track {
    height: auto;
    min-height: 480px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤680px)
   Track becomes auto-height, slides stack vertically
============================================================ */
@media (max-width: 680px) {
  .ss-section {
    --ss-padding-section: 36px 12px;
    --ss-left-width: 100%;
    --ss-right-width: 100%;
  }

  /* On mobile, release fixed height so content breathes */
  .ss-track {
    height: auto;
    min-height: 620px;
  }

  .ss-slide {
    position: relative; /* back to flow on mobile */
    inset: unset;
    flex-direction: column;
    height: auto;
    min-height: 480px;
    transform: none !important; /* prevent off-screen positioning */
  }

  /* JS will show/hide via display instead of position on mobile */
  .ss-slide:not(.ss-slide--active) {
    display: none;
  }

  .ss-slide--active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    min-height: 680px;
  }

  .ss-left {
    max-width: 100%;
    padding: 26px 18px;
    gap: 12px;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .ss-right {
    max-width: 100%;
    height: 200px;
    flex: 1 0 50%;
    position: relative;
  }

  .ss-right-img {
    position: absolute;
    height: 100%;
  }

  .ss-section-title {
    font-size: 19px;
    margin-bottom: 22px;
  }
  .ss-btn {
    margin: 0px auto;
  }
  .ss-stat + .ss-stat {
    padding: 0px 12px 0px 33px;
    border-left: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤420px)
============================================================ */
@media (max-width: 420px) {
  .ss-section {
    --ss-padding-section: 28px 10px;
    --ss-stat-gap: 14px;
  }
  .ambient-tabs-section {
    padding: 0px !important;
    background-color: #f4f4f4;
  }

  .ss-left {
    max-width: 100%;
    padding: 26px 18px;
    gap: 12px;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .ss-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* .ss-stats {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
   
} */
  .ss-stat + .ss-stat {
    padding: 0px 10px;
    border-left: 1.5px solid #e4e8f0;
  }
  .ss-available-label {
    font-size: 12px;
    font-weight: 500;
    color: #7a8499;
    font-family: var(--ss-font-body);
    text-align: center;
  }
  .ss-btn {
    margin: 0px auto;
  }
}

/* ============================================================
   ELEMENTOR EDITOR HELPER — show slide flat, no animation
============================================================ */
.elementor-editor-active .ss-track {
  height: auto;
  overflow: visible;
}

.elementor-editor-active .ss-slide {
  position: relative !important;
  inset: unset !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  transition: none !important;
  height: auto;
  min-height: 340px;
}

.elementor-editor-active .ss-slide:not(:first-child) {
  display: none;
}
/* 
TESTIMONIAL CSS */

/* ==========================================
   SLIDER CONTAINER
/* ========================================== */
/* 🔥 BLUE MODERN TESTIMONIAL - COMPACT VERSION */
.blue-testimonial-section {
  position: relative;
  /* min-height: 70vh; */
  background: linear-gradient(135deg, #0c4a6e 0%, #1e3a8a 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0; /* Reduced from 80px */
}

.blue-testi-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blue-testi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-testi-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(12, 74, 110, 0.85); */
  z-index: 2;
  opacity: 50%;
}

.blue-testi-container {
  /* max-width: 1200px;  */
  margin: 0 auto;
  padding: 0 25px; /* Reduced from 30px */
  position: relative;
  z-index: 10;
  width: 100%;
}

/* COMPACT HEADER */
.blue-testi-header {
  text-align: center;
  margin-bottom: 60px; /* Reduced from 100px */
}

.blue-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.2);
  color: var(--primary-blue, #0ea5e9);
  padding: 6px 16px; /* Smaller padding */
  border-radius: 25px;
  font-size: 0.8rem; /* Smaller font */
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(10px);
}

.blue-main-title {
  font-size: clamp(2rem, 4vw, 3.2rem); /* Much smaller - was 5.5rem */
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #e0f2fe 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 16px; /* Reduced */
  letter-spacing: -0.02em;
}

.blue-subtitle {
  font-size: 1.1rem; /* Reduced from 1.3rem */
  color: rgba(236, 246, 255, 0.9);
  max-width: 500px; /* Reduced */
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.5; /* Tighter line height */
}

/* COMPACT SLIDER */
.blue-testi-slider {
  position: relative;
  overflow: visible;
}

.swiper-slide {
  height: 300px; /* Reduced from 420px */
  opacity: 0.6;
  transform: scale(0.85) translateZ(0);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1) translateZ(15px);
}

/* COMPACT CARDS */
.blue-card {
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border-radius: 20px; /* Smaller radius */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 25px; /* Reduced padding */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* Smaller shadow */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blue-card:hover {
  transform: translateY(-8px) scale(1.01); /* Smaller hover effect */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.blue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px; /* Thinner */
  /* background: var(--primary-blue, #0ea5e9); */
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 15px var(--primary-blue);
}

.blue-card-top {
  position: absolute;
  top: 18px; /* Adjusted */
  right: 18px;
}

.blue-rating {
  display: flex;
  gap: 1px;
}

.star {
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
  font-size: 0.95rem; /* Smaller stars */
}

.blue-card-body {
  padding-top: 35px; /* Adjusted */
  padding-bottom: 20px;
  height: auto; /* Reduced height */
  display: flex;
  align-items: center;
}

.blue-review-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem; /* Reduced from 1.2rem */
  line-height: 1.5; /* Tighter */
  font-weight: 400;
  font-style: italic;
}

.blue-card-bottom {
  display: flex;
  align-items: center;
  gap: 15px; /* Reduced gap */
}

.blue-avatar {
  width: 50px; /* Smaller avatar */
  height: 50px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.blue-author {
  flex: 1;
}

.blue-author-name {
  color: white;
  font-weight: 700;
  font-size: 1rem; /* Smaller */
  margin-bottom: 2px;
}

.blue-author-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem; /* Smaller */
  font-weight: 500;
}

/* COMPACT NAVIGATION */
.blue-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 20;
  transform: translateY(-50%);
}

.blue-nav-btn {
  width: 44px; /* Smaller */
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  flex-shrink: 0;
}

.blue-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.blue-nav-btn svg {
  width: 16px; /* Smaller SVG */
  height: 16px;
  stroke: currentColor;
}

/* COMPACT PROGRESS BAR */
.blue-progress {
  height: 3px; /* Thinner */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5px;
  margin-top: 40px; /* Reduced */
  overflow: hidden;
}

.blue-progress-fill {
  height: 100%;
  /* background: linear-gradient(90deg, var(--primary-blue, #0ea5e9), #3b82f6); */
  border-radius: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px var(--primary-blue);
}

/* ==========================================
   RESPONSIVE - EVEN MORE COMPACT
/* ========================================== */
@media (max-width: 1200px) {
  .blue-testi-container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .swiper-slide {
    height: 280px;
  }

  .blue-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .blue-testimonial-section {
    /* min-height: 75vh; */
    padding: 40px 0;
  }

  .blue-testi-header {
    margin-bottom: 50px;
  }

  .blue-main-title {
    font-size: 2.4rem;
  }

  .swiper-slide {
    height: 260px;
  }

  .blue-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .blue-review-text {
    font-size: 0.92rem;
    height: 130px;
  }

  .blue-nav {
    padding: 0 12px;
  }

  .blue-progress {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .blue-testi-container {
    padding: 0 15px;
  }

  .blue-main-title {
    font-size: 2rem;
  }

  .swiper-slide {
    height: 240px;
  }

  .blue-card {
    padding: 20px 16px;
  }

  .blue-avatar {
    width: 45px;
    height: 45px;
  }

  .blue-author-name {
    font-size: 0.95rem;
  }

  .blue-review-text {
    font-size: 0.9rem;
  }

  .blue-nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================
   ANIMATIONS - FASTER & SUBTLER
/* ========================================== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Smaller movement */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blue-testi-container {
  animation: slideInUp 0.6s ease-out; /* Faster */
}

.blue-card {
  animation: slideInUp 0.4s ease-out both; /* Faster */
  animation-fill-mode: both;
}

.blue-card:nth-child(1) {
  animation-delay: 0.05s;
}
.blue-card:nth-child(2) {
  animation-delay: 0.1s;
}
.blue-card:nth-child(3) {
  animation-delay: 0.15s;
}

/* Rest of the CSS remains same for accessibility, etc. */
.blue-testi-slider:hover .swiper-autoplay-stop {
  opacity: 1;
}

.blue-testi-slider:not(.swiper-initialized) {
  opacity: 0.7;
}

.blue-nav-btn:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*===========================
 hire developer 
 ===========================*/

.hiredev-sec-wrapper {
  padding: 60px 0;
  background: #f9f9f9;
}

/* CONTAINER */
.hiredev-sec-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* FLEX ROW */
.hiredev-sec-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.hiredev-sec-content {
  flex: 2;
  min-width: 300px;
}

.hiredev-sec-title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
}

.hiredev-sec-title span {
  color: #2f6fed;
}

.hiredev-sec-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.hiredev-sec-highlight {
  color: #ff6a00;
  font-weight: 600;
}

/* RIGHT IMAGE */
.hiredev-sec-image-box {
  flex: 1;
  min-width: 300px;
  text-align: right;
  border-radius: 45px;
}

.hiredev-sec-image {
  width: 100%;
  max-width: 480px;
  border-radius: 45px !important;
  object-fit: cover;
  height: auto;
  min-height: 450px;
}
@media (min-width: 452) {
  .hiredev-sec-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 660px) and (max-width: 1024px) {
  .hiredev-sec-image-box {
    min-width: 300px;
    text-align: right;
    border-radius: 45px;
    flex: unset !important;
  }

  .hiredev-sec-container {
    padding: 20px;
  }
}

/* ===== NAVBAR ===== */
/* ========================================
   AMBIENT NAVBAR - COMPLETE STYLES
   ======================================== */

/* BASE NAVBAR */
.navbar {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  height: 72px;
  position: sticky;
  z-index: 1030;
}
.navbar-brand img {
  height: 48px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* HOVER & ACTIVE STATES */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show,
.nav-item.dropdown.hover-show .nav-link {
  color: #002275 !important;
  background: #fff5f0 !important;
}

/* ARROW ICON */
.dropdown-toggle::after {
  display: none !important;
}
.arrow-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ARROW ROTATION */
.nav-link.show .arrow-icon,
.nav-item.dropdown.hover-show .nav-link .arrow-icon {
  transform: rotate(180deg);
}

/* ========================================
   MOBILE - LEFT SLIDE PERFECT
   ======================================== */
@media (max-width: 991.98px) {
  /* Logo switching */
  .navbar-brand.a-1 {
    display: block !important;
  }
  .navbar-brand.a-2 {
    display: none !important;
  }

  /* Navbar collapse */
  .navbar-collapse {
    background: linear-gradient(160deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 0 0 16px 16px;
    padding: 20px;
    margin-top: 8px;
  }

  /* Dropdown menu - LEFT SLIDE */
  .navbar-nav .dropdown-menu {
    display: none;
    position: static !important;
    width: 100%;
    margin: 8px 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e9e9e9;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    overflow: hidden;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
    padding: 20px !important;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Nested menus */
  .dropdown-menu .dropdown-menu {
    margin: 12px 0 0 20px !important;
    background: #f8f9fa;
  }

  /* CTA button mobile */
  .btn-cta {
    margin-top: 1rem;
    justify-content: center;
    width: fit-content;
  }
}

/* ========================================
   DESKTOP - MEGA MENU FULL WIDTH FIXED
   ======================================== */
@media (min-width: 992px) {
  /* Logo switching */
  .navbar-brand.a-1 {
    display: none !important;
  }
  .navbar-brand.a-2 {
    display: block !important;
  }

  /* MEGA MENU - FULL WIDTH PERFECT */
  .dropdown-menu.mega-menu {
    position: absolute !important;
    left: 0% !important;
    top: 100% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    /* transform: translateX(-50%) !important; */
    margin: 0 !important;
    padding: 40px 0 !important;
    border: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    background: #ffffff !important;
    z-index: 1029 !important;
    animation: megaFadeIn 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: none !important;
  }
  .nav-item.dropdown.hover-show .dropdown-menu.mega-menu,
  .nav-item.dropdown.show .dropdown-menu.mega-menu {
    display: block !important;
  }

  @keyframes megaFadeIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateX(calc(-50vw + 50%))
        translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateX(calc(-50vw + 50%)) translateY(0);
    }
  }

  /* Mega menu inner container */
  .mega-menu .container {
    max-width: 1200px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
    display: flex !important;
    gap: 40px !important;
  }

  /* Desktop show states */
  .nav-item.dropdown.hover-show .dropdown-menu {
    display: block !important;
  }
  .nav-item.mega-parent {
    position: static !important;
  }

  /* Navbar collapse desktop */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: space-between !important;
  }

  /* Hide CTA on smaller desktop */
  @media (min-width: 992px) and (max-width: 1180px) {
    .btn-cta {
      display: none !important;
    }
  }
}

/* ========================================
   COMPONENTS
   ======================================== */
.ai-badge {
  border: 1.5px solid #e0e0f0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  transition: 0.2s;
}
.ai-badge:hover {
  border-color: #002275;
  color: #002275;
  background: #fff5f0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #002275;
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.btn-cta {
  background: linear-gradient(135deg, #002275, #1b50d6);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 34, 117, 0.45);
  color: #fff;
}

/* MEGA MENU ITEMS */
.mega-sidebar {
  background: linear-gradient(160deg, #fff5f0 0%, #ffeee6 100%);
  border-right: 1px solid #ffe0d0;
  padding: 32px 24px;
  border-radius: 16px 0 0 16px;
  flex: 0 0 280px;
  min-height: 400px;
}
.mega-content {
  padding: 32px 24px;
  flex: 1;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
  font-size: 13px;
  font-weight: 500;
}
.mega-item:hover {
  background: rgba(0, 34, 117, 0.08);
  color: #002275;
}

.mega-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 34, 117, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-icon svg {
  width: 18px;
  height: 18px;
  stroke: #002275;
  stroke-width: 2;
  fill: none;
}

/* SIMPLE DROPDOWN */
.dropdown-menu.simple-menu {
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 12px;
  min-width: 240px;
  animation: simpleFadeIn 0.2s ease-out;
  margin-top: 8px !important;
}
@keyframes simpleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-size: 14px;
  border-radius: 10px;
  padding: 12px 16px;
  color: #333;
  font-weight: 500;
}
.dropdown-item:hover {
  background: #fff5f0;
  color: #002275;
}

/* MOBILE MEGA FIX */
@media (max-width: 991px) {
  .mega-sidebar {
    border-radius: 16px;
    border-right: none;
    border-bottom: 1px solid #ffe0d0;
    margin-bottom: 1.5rem;
    flex: none;
    min-height: auto;
  }
  .mega-menu {
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    transform: none !important;
    padding: 0 !important;
  }
  .mega-content {
    padding: 16px 12px;
    max-height: 60vh;
    overflow-y: auto;
  }
  .mega-menu .container {
    padding: 0 !important;
    max-width: 100% !important;
    gap: 0 !important;
  }
}

/* UTILITIES */
.navbar-nav .nav-link,
.dropdown-item,
.mega-item {
  scroll-behavior: smooth;
}

.nav-item .dropdown ul,
.nav-item .dropdown li {
  list-style: none !important;
}
.nav-item .dropdown li::marker {
  content: none;
}

/* WordPress Menu Editor */
.menu-item-mega-menu-parent > .item-edit {
  border-left: 3px solid #002275;
}
.menu-item-ai-badge-nav > .item-edit {
  border-left: 3px solid #1a1a2e;
}
.menu-item-cta-button-nav > .item-edit {
  border-left: 3px solid #ff6b35;
}

/* Z-Index Fix */
.navbar {
  z-index: 1030 !important;
}
.dropdown-menu.mega-menu {
  z-index: 1029 !important;
}

/* =================================== */
/* WHY CHOOSE US SECTION */
/* =================================== */

/* Core Styling (Keep this) */
.why-section {
  background-color: #ffffff; /* Agar section ka background white hai */
}
.why-section span {
  color: #07216c;
}
/* Image Styling */
.why-section .img {
  object-fit: cover;
  border-radius: 15px; /* Thoda rounded look ke liye */
}

.why-section .img.large {
  min-height: 450px;
  width: 100%;
}

.why-section .img.small {
  z-index: 2;
  border: 8px solid #fff; /* Image overlap effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Subheading - Your custom color and design */
.why-sction-subheading {
  display: inline-block;
  background-color: #c1dbf3;
  padding: 8px 20px;
  border-radius: 50px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Content Styling */
.content-text h2 {
  color: #000000;
  font-weight: 700;
  margin-top: 15px;
}

.content-text p {
  color: #444;
  font-weight: 500;
  line-height: 1.7;
}

/* Specific Mobile Fixes (Only what Bootstrap doesn't do) */
@media (max-width: 991px) {
  .content-text {
    text-align: center; /* Mobile aur Tablet par text center rahega */
  }
  .why-sction-subheading {
    margin-bottom: 15px;
  }
  /* Mobile par small image chhupane ke liye bootstrap class 'd-none d-lg-block' PHP mein add ki hai */
}

/* Desktop Only - Image sizing */
@media (min-width: 1024px) {
  .why-section .img.large {
    max-width: 450px;
  }
}

/* =================================
new about section css
================================= */
.about_us {
  background: #f0f0f0;
}
.about-inner {
  padding: 10px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 35px;
  margin-bottom: 35px;
}
.about-info-container {
  max-width: 100%;
  padding: 20px 0 20px 40px;
}

.about-info-container .sec-sub-title {
  font-size: 21px;
  line-height: 23px;
  font-weight: 600;
}
.img-box-wrapper {
  height: 100%;
}

.about-info-container h2.sec-title {
  font-size: 32px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
}

.about_us .about-disc {
  font-size: 15px;
}

.about_us .about-disc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #333;
}

a.btn.emizen-btn {
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
  padding: 16px 20px;
  text-transform: capitalize;
  transition: all 0.4s;
  border: 1px solid midnightblue;
  color: midnightblue;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 10px !important;
}
a.btn.emizen-btn::after {
  content: "\2192";
  display: inline-block; /* Add this line */
  transition: transform 0.4s ease; /* Specifying 'transform' is cleaner */
  font-weight: 800;
  font-size: 30px;
  align-items: center;
  justify-content: center;
}

a.btn.emizen-btn:hover::after {
  /* transform: translateX(10px); 100px is a very large jump for an arrow! */
  transform: rotate3d(2, 2, 2, -1turn);
}

.our-sucess {
  z-index: 1;
  padding-top: 20px;
  padding-right: 30px;
}

.our-sucess .row {
  margin: 0 -10px;
  gap: 0 6px;
  flex-wrap: nowrap;
}
.our-sucess .row > [class*="col"] {
  padding: 0 !important;
}
.emiz-pr-counter {
  max-width: 370px;
  width: 100%;
  height: 100%;
}
.skill-dsc {
  padding: 10px;
  border-radius: 10px;
  height: 100%;
  background: #f9f9f9;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}
.skill-dsc h2 {
  color: midnightblue;
  font-size: 28px;
  font-weight: 600;
  transition: all 0.3s;
  line-height: normal;
  padding: 0;
  text-align: center;
}
.skill-dsc h4 {
  font-size: 14px;
  padding-top: 0;
}
.skill-dsc h4 {
  color: #000;
  padding: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

@media (max-width: 420px) {
  .skill-dsc {
    padding: 10px;
    border-radius: 10px;
    height: 100%;
    background: #f9f9f9;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }

  .our-sucess .row {
    margin: 0 -10px;
    gap: 0 6px;
    flex-wrap: wrap;
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .img-box-wrapper {
    height: 100%;
    padding: 30px;
  }

  .skill-dsc {
    padding: 10px;
    border-radius: 10px;
    height: 100%;
    background: #f9f9f9;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }

  .our-sucess .row {
    margin: 0 -10px;
    gap: 0 6px;
    flex-wrap: wrap;
    gap: 35px;
  }
}

/* =================================== */
/* Industries  SECTION   css*/
/* =================================== */

/* CONTENT LAYOUT */

.ambient-tabs-section .container .text-center .badge {
  background: #07216c;
}
.tab-content-item .content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tab-image {
  height: auto !important;
  border-radius: 25px;
  /* max-height: 10vh; */
}

.tab-image img {
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  max-height: 190px;
}

@media (min-width: 1700px) {
  /* .tab-content-item .content-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  } */

  .tab-image {
    flex: 0 0 auto;
  }

  .tab-image img {
    height: auto;
    width: auto;
    max-height: 240px;
    /* max-width: 300px; */
  }

  .tab-text {
    flex: 1;
  }
}

/* 3x3 BUTTONS GRID - PERFECT RESPONSIVE */
.buttons-grid {
  min-height: 300px;
}

.btn-wrapper {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent !important;
  background: #fff;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(255,165,0,0.1), rgba(255,140,0,0.05)); */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  /* border-color: #292b96 !important; */
  /* box-shadow: 0 12px 30px rgba(0,124,186,0.2) !important; */
}

.btn-wrapper:hover::before {
  opacity: 1;
}

.btn-wrapper.active {
  /* border-color: #003181 !important; */
  /* box-shadow: 0 8px 25px rgba(255,149,0,0.3) !important; */
}

.btn-wrapper.active::before {
  opacity: 1;
}

.tab-box {
  position: relative;
  z-index: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-box i,
.tab-box svg {
  font-size: 20px !important;
  width: 28px !important;
  height: 28px !important;
}

/* MOBILE FIX - Icon border perfect */
@media (max-width: 991px) {
  .btn-wrapper {
    padding: 1rem 0.5rem !important;
  }

  .tab-box {
    min-height: 36px !important;
  }

  .tab-box i,
  .tab-box svg {
    font-size: 18px !important;
    width: 24px !important;
    height: 24px !important;
  }

  .tab-label {
    font-size: 11px !important;
    padding-top: 0.25rem !important;
  }
}

/* Ensure 3x3 grid always */
@media (min-width: 992px) {
  .buttons-grid .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .buttons-grid .col-4 {
    padding: 0 !important;
    width: 100%;
  }
}

/* ================================
Fotter css
================================ */

:root {
  --footer-bg-primary: linear-gradient(135deg, #07216c, #041642);
  --footer-gold: #f4cc24;
  --footer-gold-dark: #f6cd26;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
}

.footer-wrapper {
  background: var(--footer-bg-primary);
  font-family: var(
    --font-primary,
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif
  );
  color: var(--text-primary);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f4cc24, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Brand Section */
.footer-brand {
  position: relative;
}

.footer-logo img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(244, 204, 36, 0.3));
  max-height: 60px;
  width: auto;
}

.footer-logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Contact Info */
.time-widget i {
  color: var(--footer-gold);
  font-size: 1.4rem;
  width: 32px;
}

.contact-info h6 {
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Social Links */
.social-links ul {
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(244, 204, 36, 0.2);
  border-color: var(--footer-gold);
  box-shadow: 0 10px 30px rgba(244, 204, 36, 0.3);
}

.facebook:hover {
  color: #1877f2;
}
.instagram:hover {
  color: #e4405f;
}
.linkedin:hover {
  color: #0077b5;
}
.twitter:hover {
  color: #1da1f2;
}

/* Menu Styles */
.menu-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 12px;
}

.menu-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-gold), transparent);
  border-radius: 2px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 1. Target the 'a' inside the 'li' of '.menu-list' */
.menu-list li a {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 2. Before (Dot) styling on the 'a' tag */
.menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--footer-gold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

/* 3. Hover effects */
.menu-list li a:hover {
  color: var(--footer-gold) !important;
  padding-left: 20px; /* Space for the dot */
}

.menu-list li a:hover::before {
  opacity: 1;
  left: 8px; /* Dot position on hover */
}

.menu-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--footer-gold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.menu-link:hover {
  color: var(--footer-gold) !important;
  padding-left: 20px;
}

.menu-link:hover::before {
  opacity: 1;
  left: 8px;
}

/* Copyright Section */
.copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 40px;
  position: relative;
}

.copyright-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f4cc24, transparent);
}

.copyright-text {
  font-size: 0.9rem;
  margin: 0;
}

#currentYear {
  color: var(--footer-gold);
  font-weight: 600;
}

.legal-links {
  gap: 24px;
  flex-wrap: wrap;
}

.legal-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.legal-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-gold);
  transition: width 0.3s ease;
}

.legal-link:hover {
  color: var(--footer-gold) !important;
}

.legal-link:hover::after {
  width: 100%;
}

/* Admin Panel Styles */
.admin-toggle {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(244, 204, 36, 0.4);
  z-index: 10001;
}

.admin-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(244, 204, 36, 0.6);
}

.admin-panel {
  z-index: 10000;
  display: none;
}

.admin-panel.show {
  display: block;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.admin-panel .card {
  min-width: 350px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.admin-panel .card-header {
  border-bottom: 1px solid rgba(244, 204, 36, 0.2);
}

.admin-panel .form-label {
  color: #333;
  font-size: 0.85rem;
}

.admin-panel .form-control {
  border-radius: 10px;
  border: 2px solid rgba(244, 204, 36, 0.2);
  padding: 8px 12px;
}

.admin-panel .form-control:focus {
  border-color: var(--footer-gold);
  box-shadow: 0 0 0 0.2rem rgba(244, 204, 36, 0.25);
}

#saveFooter {
  background: linear-gradient(135deg, var(--footer-gold), #f6cd26);
  border: none;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

#saveFooter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 204, 36, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .footer-wrapper {
    padding: 40px 0 30px;
  }

  .social-links ul {
    gap: 12px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .legal-links {
    gap: 20px;
    justify-content: center !important;
  }

  .menu-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .footer-wrapper {
    padding: 30px 0 25px;
  }

  .menu-title {
    font-size: 1.1rem;
  }

  .copyright-section {
    text-align: center;
  }

  .legal-links {
    justify-content: center !important;
    gap: 16px;
  }

  .admin-panel .card {
    min-width: 300px;
    max-width: 90vw;
  }

  .admin-toggle {
    width: 50px;
    height: 50px;
    margin: 1rem;
  }
}

@media (max-width: 575.98px) {
  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 1rem;
  }

  .footer-logo img {
    max-height: 50px;
  }

  .menu-link {
    font-size: 0.9rem;
  }

  .legal-links {
    gap: 12px;
  }

  .legal-link {
    font-size: 0.85rem;
  }
}

/* Custom Scrollbar for Admin Panel */
.admin-panel .card-body::-webkit-scrollbar {
  width: 6px;
}

.admin-panel .card-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.admin-panel .card-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--footer-gold), #f6cd26);
  border-radius: 10px;
}

.admin-panel .card-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f6cd26, var(--footer-gold));
}

/* Tooltip Styling */
.social-link[title]:hover:after {
  content: attr(title);
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  animation: tooltipFade 0.3s ease;
}

@keyframes tooltipFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Loading Animation for Save */
.saving {
  position: relative;
}

.saving::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-top: var(--footer-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Print Styles */
@media print {
  .footer-wrapper,
  .admin-panel,
  .admin-toggle {
    display: none !important;
  }
}

/* ===========================
Faq-1
=========================== */

.accordion li {
  list-style: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  background: #f4f4f4;
  padding: 10px 20px;
}
.accordion li a {
  display: flex;
  padding: 15px 0;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  justify-content: space-between;
}
/* Optional: Arrow Icon */
.accordion li a::after {
  content: "+";
  float: right;
  font-size: 20px;
  background: rgb(20, 20, 20);
  color: #fff;
  padding: 0px 9px;
  border-radius: 10px;
  max-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion li.active a::after {
  content: "-";
  background: #0025f6;
  color: #fff;
  padding: 0px 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Sirf <a> ke andar wala icon dikhao, baaki sab hide karo */
.accordion::after,
.accordion::before {
  display: none !important;
  content: none !important;
}

.accordion li p {
  padding-bottom: 15px;
  margin: 0;
  color: #000;
  background: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 300;
}

.accordion .active a {
  color: #0025f6 !important;
}
.right-side-box {
}
.right-side-box .img img {
  border-radius: 20px;
  min-height: 40vh;
}
.titlespan {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-primary);
  background: #f4f4f4;
}
.title h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  /* margin-bottom: 20px; */
}

@media (max-width: 420px) {
  .accordion li a {
    display: flex;
    padding: 15px 0;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    gap: 65px;
  }
  .accordion li a::after {
    content: "+";
    float: right;
    font-size: 20px;
    background: rgb(20, 20, 20);
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    max-height: 45px;
  }
  .accordion li.active a::after {
    content: "-";
    background: #0025f6;
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* =================================
contact section widget css
================================= */

/* Container Fix: Taaki dono side-by-side rahein */
.ambient-contact-container {
  display: flex;
  flex-direction: row; /* Force side-by-side */
  flex-wrap: nowrap; /* Wrap hone se rokein desktop par */
  gap: 40px; /* Dono blocks ke beech ka gap */
  align-items: flex-start;
}

/* Left Form Width */
.contact-form {
  flex: 0 0 60%; /* Form ko 60% width dein */
  max-width: 60%;
}

/* Right Info Width */
.contact-info {
  flex: 0 0 40%; /* Info box ko 40% width dein */
  max-width: 80%;
}

/* CF7 Specific: CF7 ka default div structure design na bigade */
.contact-form .wpcf7 {
  width: 100%;
}

/* Responsive: Mobile par niche bhejne ke liye */
@media (max-width: 991px) {
  .ambient-contact-container {
    flex-direction: column; /* Tablet/Mobile par ek ke niche ek */
    flex-wrap: wrap;
  }
  .contact-form,
  .contact-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Row Fix: Taaki inputs 50-50 dikhein */
.contact-form .row {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px;
  margin-bottom: 0;
}

.contact-form .row .wpcf7-form-control-wrap {
  flex: 1;
}

.contact-form .wpcf7 form p {
  margin-bottom: 0; /* CF7 ke extra p tags ki margin hatane ke liye */
}

/* Row Handling for CF7 */
.contact-form .row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
}

/* Span wrapper ko full width dena zaroori hai taaki row gap sahi kaam kare */
.contact-form .row .wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

/* Input Styles - Targetting CF7 Classes */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100% !important; /* Force width within the span */
  padding: 12px;
  border: none;
  box-sizing: border-box;
  outline: none;
  background-color: #f9f9f9; /* Agar aapka purana bg color hai toh yahan badle */
  margin-bottom: 15px;
}

/* Row ke andar ki margin hatayein kyunki row gap handle kar raha hai */
/* .contact-form .row input,
.contact-form .row select {
    margin-bottom: 0 !important;
} */

/* Textarea Specific */
.contact-form textarea {
  height: 120px;
  resize: vertical;
  display: block;
}

/* File Input Styling */
.contact-form input[type="file"] {
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
}

.contact-form .wpcf7-list-item {
  margin: 0;
}
.contact-form .badge{
  margin-bottom: 10px;
}

/* Submit Button Logic */
.my-custom-btn-1 {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  background-color: #000; /* Aapka brand color yahan dalein */
  color: #fff;
}

/* Responsive Button Fix as per your request */
@media (min-width: 576px) and (max-width: 767px) {
  .my-custom-btn-1 {
    width: 50% !important;
    margin: 0 auto;
    display: block;
  }
}

/* Mobile Fix: Jab screen choti ho toh 50% rows ko stack karein */
@media (max-width: 600px) {
  .contact-form .row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form .row input {
    margin-bottom: 15px !important;
  }
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text p {
  margin: 0;
  font-size: 14px;
}
.info-text strong {
  display: block;
  margin-bottom: 2px;
}

/* Social */
.social .icons {
  display: flex;
  gap: 10px;
}
.social a {
  text-decoration: none;
}
.social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

.address {
  display: flex;
}
/* Responsive */
@media (max-width: 768px) {
  .ambient-contact-container {
    flex-direction: column;
  }
  .contact-form .row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form .row input {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* ===========================
intelligence-section css
=========================== */
/* CSS pulled from your provided structure */
/* Optimized & Reduced CSS */
.digital-hero {
  background-color: #000;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
.digital-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 25, 0.85);
  z-index: 0;
}

/* Ensure content stays above overlay */
.digital-hero .container {
  position: relative;
  z-index: 1;
}

/* UI Elements */
.tag.badge {
  color: #111 !important;
  background-color: aliceblue !important;
}

.digital-hero .digital-content span,
.digital-hero .digital-content a {
  background: #07216c;
}

.btn-design.color {
  background: aliceblue;
  color: #000;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.btn-design.color:hover {
  background: #f8fff0;
  transform: translateY(-2px);
}

/* Feature Grid Design */
.feature-card {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-5px);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.feature-title i,
.feature-title svg {
  width: 24px;
  color: #fff; /* Aap icon ka color change kar sakte hain */
}

.feature-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
}

/* Extra: Desktop par padding fix */
@media (min-width: 1200px) {
  .digital-hero {
    padding: 40px 0;
  }
}

/* =================================== */
/* Process  SECTION   css*/
/* =================================== */
.displayflex_box {
  gap: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: flex-end;
  font-family: var(--font-primary);
}

.padding_botm40 {
  padding-bottom: 40px;
}

.our_service_left,
.our_service_right {
  width: 50%;
}

body.dark-mode .bor_line,
body.dark-mode .baahead {
  color: #f85508;
  background-color: #feeee6;
  border-color: #feeee6;
}
h3.hed-samecs {
  font-size: 35px;
  line-height: 50px;
  color: #000;
  font-weight: 700;
  padding-bottom: 22px;
}

.our_service_right {
  width: 50%;
}
.bor_line {
  display: inline-block;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #f1f1f1;
  margin: 20px 0px 20px 0px;
}

p.summary_prg {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .serve_industries_item.enactive .serve_industries_item_cy {
    display: flex !important;
    transition-delay: 0.1s;
    opacity: 1;
    pointer-events: auto;
    gap: 20px;
  }
  .serve_industries_item_cy img {
    width: auto !important;
    max-width: 60% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 15px;
    margin: 0px 0px 15px 0px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .displayflex_box,
  .displayflex_box_center {
    display: block;
  }
  .our_service_left,
  .our_service_right {
    width: 100%;
  }

  .bor_line {
    padding: 5px 18px;
    font-size: 14px;
    margin: 0px auto 15px;
    display: block;
    max-width: 200px;
    text-align: center;
  }

  h2.hed-samecs,
  h3.hed-samecs {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
  }

  p.summary_prg {
    font-size: 16px;
    padding: 12px 0 15px 0;
    text-align: center;
  }
}

.serve_industries {
  display: flex;
  width: 100%;
  height: 490px; /* Default, controlled by PHP */
}

.serve_industries_item {
  cursor: pointer;
  overflow: hidden;
  background: #24252d;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.8s ease-in-out;
  width: 90px; /* Default collapsed */
  flex-shrink: 0;
}

.serve_industries_item_title {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serve_industries_item_title span {
  border-radius: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
}

.servtitle {
  text-align: start;
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  white-space: nowrap;
  font-weight: 500;
}

.serve_industries_item_cy {
  display: block;
  flex: 1;
  overflow-y: auto;
  width: 0; /* Start at 0 width */
  opacity: 0; /* Start invisible */
  overflow: hidden; /* Hide overflowing content */
  white-space: normal; /* Allow text to wrap normally inside */
  transition:
    width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease; /* Animate width and opacity */
  pointer-events: none; /* Prevent clicking when hidden */
}

.serve_industries_item.enactive .serve_industries_item_cy {
  display: block;
  transition-delay: 0.1s;
  opacity: 1;
  pointer-events: auto;
}

.serve_industries_item.enactive {
  flex-shrink: 1; /* Allow expansion */
}
.serve_industries_item.enactive .serve_industries_item_title .servtitle {
  color: #0025f6;
}
.serve_industries_item.enactive .serve_industries_item_title span {
  color: #0025f6 !important;
  font-weight: 600;
}
.serve_indutem {
  display: flex;
  height: 100%;
}

.clear {
  clear: both;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .serve_industries {
    flex-direction: column;
    height: auto !important; /* Override fixed height on mobile */
    gap: 15px !important;
  }
  .serve_industries_item {
    width: 100% !important;
  }
  .serve_industries_item.enactive {
    width: 100% !important;
  }
  .serve_indutem {
    flex-direction: column;
  }
  .serve_industries_item_title {
    flex-direction: row;
    width: 100%;
    margin-bottom: 15px;
    align-items: center;
    gap: 15px;
  }
  .servtitle {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin: 0px !important;
  }

  .serve_industries_item .serve_indutem {
    height: 40px !important;
  }

  .serve_industries_item.enactive .serve_indutem {
    height: 100% !important;
  }

  .serve_industries_item.enactive .serve_industries_item_cy {
    padding: 0 !important;
    flex-direction: row;
    width: 100%;
    margin-bottom: 15px;
    align-items: center;
    gap: 15px;
    transition-delay: 0.1s;
    opacity: 1;
    pointer-events: auto;
  }

  .serve_industries_item_cy img {
    /* max-width: 100% !important; */
    height: 250px !important ;
    object-fit: fill;
    border-radius: 15px;
    margin: 0px 0px 15px 0px;
    width: 100% !important;
  }
}

/* ============================= */
/* 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%;
}
.header-content ul {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 auto auto 0;
  flex-wrap: wrap;
  width: 100%;
}
.header-content ul li a::after {
  content: "/";
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  display: block;
}
.header-content ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  position: relative;
  padding-inline-end: 18px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
/* ===================================
contact-card-css
====================================== */
/* Cards */
.premium-card {
  background: #f4f4f4;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #ffcc53);
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff, #fff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.5rem;
  /* box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); */
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
}

.section-subtitle-contact {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* =======================================
about-main-widget-css
==========================================*/

/* Section Padding and Background */
.hero-empowerment-area {
  background-color: #f4f4f4; /* Light grey background */
  overflow: hidden;
}

/* Typography Polish */
.section-subtitle {
  color: #007bff;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border: 0.5px solid #c7cbcf;
  width: fit-content;
  border-radius: 30px;
}

.section-title {
  color: #1a1a1a;
  line-height: 1.2;
}

/* Right Content Floating Effects */
.experience-box {
  z-index: 2;
  /* min-width: 160px; */
  background: #ffffff;
  border-radius: 10px;
  padding: 41px 71px;
}

@media (max-width: 1700px) {
  .experience-box {
    padding: 30px 51px;
  }
}

@media (max-width: 585px) {
  .experience-box {
    position: relative !important;
    width: 100%;
    margin: 0px !important;
    padding: 20px 20px;
  }

  .hero-empowerment-right-content .position-relative .about-main-img {
    display: none;
  }
}
@media (min-width: 1300px) and (max-width: 1399.98px) {
  .experience-box {
    padding: 15px 51px;
  }
}
@media (min-width: 992px) and (max-width: 1299.98px) {
  .experience-box {
    padding: 0px 8px;
  }
}

.bottom-content > div {
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.bottom-content > div:hover {
  transform: translateY(-5px);
}

/* Overlapping Team Images */
.imgs img {
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
 how-we-do-widget-css
===============================*/

/* Card Styling */
.hwd-card {
  background: #ffffff;
  color: #333;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.hwd-card:hover {
  transform: translateY(-5px);
  background-color: #f8f9fa;
}

.hwd-card h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.hwd-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* Icon Box */
.icon-box {
  background: #f0f4ff;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 25px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .ms-lg-5,
  .ps-lg-5,
  .offset-lg-2 {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .hwd-card {
    min-width: 200px;
    padding: 11px;
    gap: 20px;
  }
  .how-we-do-area .d-flex {
    justify-content: center;
  }
}

@media (max-width: 1700px) {
  .hwd-card {
    min-width: 191px;
    padding: 11px;
    gap: 20px;
  }
}
.circle-shape {
  position: absolute;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 50%;
  margin-top: -10px;
}
.circle-shape:before {
  content: "";
  border-radius: 50%;
  background: #002275;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*==================================
 widget-about-award css
 ==================================*/
.ab-award-content {
  position: unset;
}
/* .thm-btn--aso_yellow {
    background: var(--color-yellow);
    color: var(--color-heading-two);
} */

.sec-title--two .sub-title {
  font-weight: 500;
  font-size: 14px;
  background: #fff;
  padding: 2px 10px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  color: var(--color-heading-two);
  box-shadow:
    0 2px 4px 0 rgba(44, 64, 94, 0.08),
    0 1px 1px 0 rgba(44, 64, 94, 0.04),
    0 0 0 1px rgba(44, 64, 94, 0.06);
}
.sec-title--two .sub-title img {
  margin-right: 6px;
  width: 20px;
}
.sec-title--two .title {
  font-weight: 800;
  font-size: 48px;
  line-height: 58px;
  color: var(--color-heading-two);
  display: inline-block;
}
.ab-award-content .sec-title--two .content {
  max-width: 465px;
  font-size: 16px;
  line-height: 26px;
  margin-top: 20px;
}
.thm-btn--aso {
  font-weight: 700;
  padding: 27px 40px;
  overflow: hidden;
  color: #ffff;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #002275;
}
.thm-btn {
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-style: none;
  align-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: inherit;
  color: #fff;
  background: #002275;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.thm-btn--aso::before {
  position: absolute;
  content: "";
  z-index: -1;
  height: 200%;
  width: 200%;
  left: 50%;
  bottom: -200%;
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--color-yellow);
}
.ap-award-wrap {
  max-height: 775px;
  overflow: hidden;
  position: relative;
  justify-content: center;
}
.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ap-award-wrap::after,
.ap-award-wrap::before {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 120px;
  background: #f6f6f8;
  filter: blur(17.7000007629px);
}
.ap-award-wrap:after {
  top: auto;
  bottom: -36px;
}
.ap-award-inner:not(:last-child) {
  margin-right: 30px;
}
.ap-award-item {
  width: 160px;
  height: 180px;
  background: #fff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 8px 18px 0 rgba(221, 221, 231, 0.95);
}
.ap-award-inner:not(:last-child) {
  margin-right: 30px;
}
.marquee-2 {
  -webkit-animation: marquee2 30s linear infinite;
  animation: marquee2 30s linear infinite;
}
.marquee-first {
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
}
/* Pehle marquee ke liye (Left to Right ya Right to Left) */
@keyframes marquee {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Dusre marquee ke liye (Agar reverse chalana ho) */
@keyframes marquee2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/*==================================
 widget-journey-goal-css
 ==================================*/
/* Custom Styles */
.goal-content-box {
  background-color: #fcf1eb; /* Image wala soft background */
}

/* .goal-card {
  background-color: #8b2d24; 
  min-height: 250px;
  transition: transform 0.3s ease;
} */

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

.goal-icon-box i,
.goal-icon-box svg {
  font-size: 22px;
}

.stat-number {
  color: #8b2d24;
}

/* Rounded Corners Fix for older Bootstrap */
.rounded-5 {
  border-radius: 2.5rem !important;
}

/* Object fit for image */
.object-fit-cover {
  object-fit: cover;
}
.goal-card {
  background: #8b2d24;
  border-radius: 24px;
  padding: 40px 30px;
  /* text-align: center; */
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1000a3, #001aff, #0041cc);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ==========================
 Roadmap Section Styles 
============================ */
/* 🌊 COMPLETE CSS ONLY WATERFALL SMOOTH SLIDER */
.roadmap-section {
  position: relative;
  min-height: 500px;
  padding: 80px 0;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 24, 65, 0.95) 0%,
    rgba(30, 58, 138, 0.95) 100%
  );
  z-index: 1;
}

.roadmap-top {
  z-index: 2;
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.top-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  width: 60px;
  height: 60px;
}

.subtitle {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 20px 0;
}

/* 🌈 CSS ONLY INFINITE SLIDER */
.roadmap-slider {
  position: relative;
  z-index: 3;
  height: 450px;
  overflow: hidden;
  border-radius: 25px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🎯 SMOOTH INFINITE ANIMATION */
.slider-track {
  display: flex;
  height: 100%;
  animation: scrollLeft 35s linear infinite;
  width: 200%; /* Double for seamless loop */
}

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

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 📱 Touch pause */
.slider-track:active {
  animation-play-state: paused;
}

/* 🎨 SLIDES */
.roadmap-slide {
  flex: 0 0 33.333%; /* 3 slides desktop */
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.roadmap-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2.5rem 2rem;
  height: 100%;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b6b);
}

.roadmap-item:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.line-left,
.line-right {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700);
  display: inline-block;
  vertical-align: middle;
}

.line-right {
  background: linear-gradient(90deg, #ffd700, transparent);
}

.year {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #0f55dc !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.title {
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 20px 0 10px;
  line-height: 1.3;
}

.content {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

/* 🔄 RESPONSIVE */
@media (max-width: 1200px) {
  .roadmap-slide {
    flex: 0 0 50%;
  } /* 2 slides */
}

@media (max-width: 768px) {
  .roadmap-slide {
    flex: 0 0 100%;
  } /* 1 slide */
  .roadmap-slider {
    height: 420px;
    padding: 20px 15px;
    margin: 0 10px;
  }
  .roadmap-item {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .roadmap-slider {
    height: 380px;
    margin: 0 5px;
  }
}

/* ✨ SMOOTH GPU */
.roadmap-slider,
.slider-track,
.roadmap-slide,
.roadmap-item {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* 🎭 FLOATING SHAPES */
.roadmap-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.08;
  animation: float 7s ease-in-out infinite;
}

.shape-1 {
  top: 15%;
  right: 15%;
  max-width: 180px;
}
.shape-2 {
  bottom: 25%;
  left: 15%;
  max-width: 140px;
  animation-delay: -2s;
}
.shape-3 {
  top: 60%;
  right: 60%;
  max-width: 100px;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

/* ================================
blog-page-css
=================================== */

/* 🔥 COMPLETE READY-TO-USE CSS - PERFECT STICKY SIDEBAR */

.post-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.post-thumb {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.post-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card:hover .post-thumb::before {
  opacity: 1;
}

.post-category {
  font-size: 0.85rem;
  font-weight: 600;
}

.post-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-grow: 1;
}

.post-excerpt {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.post-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.post-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: auto;
}

.post-meta a {
  color: #6c757d;
  text-decoration: none;
}

.post-meta a:hover {
  color: #0d6efd;
}

.sidebar-widget {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-widget .recent-item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9e9e9;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0d6efd;
  color: #212529;
}

.search-form .form-control {
  border-radius: 25px 0 0 25px;
  border: 2px solid #dee2e6;
  padding: 0.75rem 1rem;
}

.search-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 0.75rem 1.5rem;
}

.cat-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.cat-item:last-child {
  border-bottom: none;
}

.cat-item a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
}

.cat-item a:hover {
  color: #0d6efd !important;
}

.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.tag-cloud-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  background: #f8f9fa;
  color: #495057 !important;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.85rem !important;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-cloud-link:hover {
  background: #0d6efd;
  color: white !important;
  transform: translateY(-2px);
  border-color: #0d6efd;
}

.banner-img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 🔥 PERFECT STICKY SIDEBAR SYSTEM */
.ambient-blog-listing {
  min-height: 100vh;
}

.ambient-blog-listing .row {
  align-items: stretch !important;
  min-height: 100vh;
}

.ambient-blog-listing .col-lg-8 {
  display: flex !important;
  flex-direction: column !important;
}

.ambient-blog-listing .col-lg-4 {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
}

/* 🎯 MAGIC STICKY WRAPPER */
.sticky-sidebar-wrapper {
  position: sticky !important;
  top: 150px !important;
  height: fit-content !important;
  max-height: calc(100vh - 40px) !important;
  overflow-y: auto !important;
  flex: 1 !important;
  z-index: 10;
  padding-bottom: 1rem;
}

/* Smooth Custom Scrollbar */
.sticky-sidebar-wrapper::-webkit-scrollbar {
  width: 4px;
}

.sticky-sidebar-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.sticky-sidebar-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.sticky-sidebar-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Last widget no margin */
.sidebar-widget:last-child {
  margin-bottom: 0 !important;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 3rem !important;
  flex-shrink: 0;
}

.pagination-wrapper ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
  justify-content: center;
  margin: 0;
}

.pagination-wrapper ul.page-numbers li span.page-numbers.current {
  background-color: #0d6efd !important;
  color: #fff !important;
  border-color: #0d6efd;
  border-radius: 6px;
}

.pagination-wrapper ul.page-numbers li a.page-numbers,
.pagination-wrapper ul.page-numbers li span.page-numbers {
  padding: 10px 16px;
  border: 1px solid #dee2e6;
  color: #0d6efd;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 44px;
  text-align: center;
  font-weight: 500;
}

.pagination-wrapper ul.page-numbers li a.page-numbers:hover {
  background-color: #0d6efd !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991.98px) {
  .sticky-sidebar-wrapper {
    position: static !important;
    top: 0 !important;
    max-height: none !important;
    height: auto !important;
  }

  .ambient-blog-listing .row {
    align-items: flex-start !important;
  }

  .post-thumb {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .post-thumb {
    height: 180px;
  }

  .sidebar-widget {
    margin-bottom: 1rem;
  }
}

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

  .post-excerpt {
    display: none;
  }
}

/* Loading animation */
.post-thumb.bg-loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  ) !important;
  background-size: 200% 100% !important;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =================================
widget-mobile-dev-slider-css
================================ */

/* Tab Button Styling */
.case-study-wrapper .nav-pills .nav-link {
  color: #444;
  background: transparent;
  border: 1px solid #ddd !important;
  font-size: 14px;
  transition: 0.3s;
}

.case-study-wrapper .nav-pills .nav-link.active {
  background-color: #007bff !important;
  color: white !important;
  border-color: #007bff !important;
}

/* Background light blue box */
.tab-pane .row {
  background-color: #fff !important; /* Light Alice Blue */
  min-height: 450px;
}

/* Mobile Image Animation (Simple Slider Effect) */
.mobile-slider img {
  transition: transform 0.5s ease-in-out;
}

.tab-pane.active .mobile-slider img {
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =================================
widget-lets-talk-css
================================ */
.contact-grid-section {
  background-color: #f4f4f4; /* Light grey background jaisa image mein hai */
}

.contact-grid-section .contact-card {
  background-color: #f4f4f4; /* Light grey background jaisa image mein hai */
  border-radius: 12px;
  border: none;
  transition: transform 0.3s ease;
}

.contact-grid-section .contact-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.05); */
}

.contact-grid-section .header-area h1 {
  letter-spacing: -1px;
}

.contact-grid-section .btn-primary {
  background-color: #2446f2 !important; /* Coast design jaisa Blue */
  border: none;
  border-radius: 4px;
  font-size: 14px;
}
.contact-grid-section .card-icon {
  display: flex;
  justify-content: space-between;
}

.contact-grid-section .card-icon img {
  filter: grayscale(1); /* Icons ko black and white look dene ke liye */
  opacity: 0.8;
}
.section-subtitle-heading {
  font-family: var(--font-primary);
  font-weight: 500;
  color: #000;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .contact-grid-section .contact-card {
    padding: 2rem !important;
  }
}
.contact-card {
  transition: all 0.3s ease;
  border: 1px solid #f8f9fa;
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #0d6efd;
}
@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem !important;
  }
  .contact-grid-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 768) and (max-width: 1200px) {
  .contact-grid-section .card-icon {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
  }
}

/* =================================
widget-faq-css
================================ */

.ambient-faq-wrapper {
  max-width: 100%;
}

.faq-header {
  margin-bottom: 20px;
}
.faq-header h2 {
  margin: 0 0 10px 0;
}
.faq-header p {
  margin: 0 0 15px 0;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  position: relative;
}

.accordion:after {
  content: "\002B";
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

/* .active:after {
  content: "\2212";
} */

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
  margin: 15px 0; /* Default margin for text */
}

/* =================================
widget-html-render-css
================================ */

.ambient-half-section .half_section {
  position: relative;
  overflow: hidden;
}

.ambient-half-section .half_section_inner {
  position: relative;
}

.ambient-half-section .half_row {
  display: flex;
  margin: 0 auto;
  gap: 0rem;
}

.ambient-half-section .half_col {
  flex: 0 0 50%;
  position: relative;
  height: 600px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Toggle Logic - ONLY Desktop */
@media (min-width: 992px) {
  .ambient-half-section .half_col {
    opacity: 1;
  }

  .ambient-half-section .half_col.active {
    opacity: 1;
  }
}

/* IMAGE HALF */
.ambient-half-section .image_half {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}

/* MOBILE - HAR CASE MEIN VISIBLE */
@media only screen and (max-width: 991px) {
  .ambient-half-section .half_row {
    flex-direction: column;
    gap: 25px;
  }

  .ambient-half-section .half_col {
    width: 100% !important;
    flex: none !important;
    height: 350px !important;
  }

  .ambient-half-section .image_half {
    height: 350px !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-direction: column;

    gap: 25px;
  }
}

/* CONTENT HALF */
.ambient-half-section .content_half {
  width: 100%;
  height: 100%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.ambient-half-section .content_left {
  margin-right: 2px;
}

.ambient-half-section .content_right {
  margin-left: 2px;
}

.ambient-half-section .hd-1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #ffffff !important;
}

.ambient-half-section .hd-1 a {
  text-decoration: none;
  color: #ffffff !important;
}

.ambient-half-section .service-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
  color: #ffffff !important;
}

.ambient-half-section .welcome-one__solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.ambient-half-section .welcome-one__solutions-single {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
}

.ambient-half-section .welcome-one__solutions-single-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.ambient-half-section .welcome-one__solutions-single-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ambient-half-section .d-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ambient-half-section .welcome-one__solutions-icon .icon-tick {
  width: 22px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33333 9L9.33333 15L19.3333 3' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ambient-half-section .link-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #ffffff !important;
}

.ambient-half-section .link-heading a {
  text-decoration: none;
  color: #ffffff !important;
}

/* MOBILE RESPONSIVE - IMAGE VISIBLE */
@media (max-width: 991px) {
  .ambient-half-section .half_row {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .ambient-half-section .half_col {
    flex: 0 0 100% !important;
    height: 400px !important;
    opacity: 1 !important; /* MOBILE ME DONO VISIBLE */
  }

  .ambient-half-section .content_half {
    padding: 40px 30px;
    height: auto;
  }

  .ambient-half-section .half_section_inner {
    padding: 40px 20px;
  }

  /* Mobile mein services single column */
  .ambient-half-section .welcome-one__solutions-single {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .ambient-half-section .half_col {
    height: 350px !important;
  }

  .ambient-half-section .content_half {
    padding: 30px 20px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .ambient-half-section .half_col {
    height: 300px !important;
  }

  .ambient-half-section .content_half {
    padding: 25px 15px;
    height: auto;
  }

  .ambient-half-section .hd-1 {
    font-size: 24px;
  }

  .ambient-half-section .welcome-one__solutions {
    gap: 12px;
  }

  .ambient-half-section .half_section_inner {
    padding: 30px 15px;
  }
}

/* Animations */
.ambient-half-section .welcome-one__solutions-single-box {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.ambient-half-section .welcome-one__solutions-single:nth-child(1) {
  animation-delay: 0.1s;
}
.ambient-half-section .welcome-one__solutions-single:nth-child(2) {
  animation-delay: 0.2s;
}
.ambient-half-section .welcome-one__solutions-single:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* =================================
counter-widget-css
================================= */

.am-counter-container {
  padding: 20px 20px;
}
.am-counter-grid {
  display: grid;
  gap: 30px;
  align-items: stretch;
}
.am-counter-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.am-counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1000a3, #001aff, #0041cc);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.am-counter-card:hover {
  transform: translateY(-15px) scale(1.02);
  /* box-shadow: 0 25px 60px rgba(0,0,0,0.15); */
}
.am-counter-icon-box {
  margin-bottom: 25px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    rgba(20, 0, 204, 0.1),
    rgba(38, 0, 255, 0.1)
  );
  border-radius: 16px;
  display: inline-flex;
  transition: all 0.3s ease;
  border: 2px solid rgba(14, 3, 165, 0.2);
  width: 4rem;
  height: 4rem;
}
.am-counter-card:hover .am-counter-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(0, 20, 204, 0.2),
    rgba(47, 0, 255, 0.2)
  );
  border-color: rgba(31, 0, 204, 0.4);
}

/* SVG ICONS के लिए जरूरी CSS */
.am-counter-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 40px !important;
  line-height: 1 !important;
  transition: all 0.3s ease !important;
  padding: 10px;
}

/* SVG Specific */
.am-counter-icon svg {
  width: 50px !important;
  height: 50px !important;
  fill: currentColor !important;
  stroke: none !important;
  flex-shrink: 0 !important;
}

/* Font Icons के लिए */
.am-counter-icon i {
  width: 70px !important;
  height: 70px !important;
  line-height: 70px !important;
  font-size: 40px !important;
}

/* Hover Effect */
.am-counter-card:hover .am-counter-icon {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .am-counter-icon,
  .am-counter-icon svg,
  .am-counter-icon i {
    width: 60px !important;
    height: 60px !important;
    font-size: 35px !important;
  }
}
.am-counter-number {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.am-counter-num {
  font-weight: 800;
  line-height: 1;
  display: block;
  font-size: 2rem;
  color: #000;
}
.am-counter-suffix {
  font-size: 28px;
  font-weight: 600;
  opacity: 0.8;
}
.am-counter-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.am-counter-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
  color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
  .am-counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
  }
  .am-counter-num {
    font-size: 42px !important;
  }
}
@media (max-width: 768px) {
  .am-counter-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .am-counter-card {
    padding: 35px 25px;
  }
  .am-counter-num {
    font-size: 36px !important;
  }
  .am-counter-title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .am-counter-card {
    padding: 30px 20px;
  }
  .am-counter-num {
    font-size: 32px !important;
  }
}

/* ================================
 widget-service-page-our-service.php
 ================================ */

/* Container styling to match the image background */
.ambient-service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px 60px 20px;
  background: linear-gradient(135deg, #001e4d, #001e4d); /* Blue gradient */
  font-family: var(--font-primary);
  min-height: 500px;
  position: relative;
}

.service-tabs-header {
  text-align: left;
  padding: 20px 20px 0px 20px;
  margin: 0 auto;
}

.service-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.service-subtitle {
  font-size: 1.3rem;
  color: #f1f1f1;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
}

/* Side navigation (Buttons) */
.service-nav-side-1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 250px;
}
.service-nav-side-2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 250px;
}

/* Button design (Pill shape) */
.service-tab-btn {
  background: rgba(255, 255, 255, 0.15); /* Glassy white effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Button Hover and Active state */
.service-tab-btn:hover,
.service-tab-btn.active {
  background: #fff;
  color: #192f5d;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Middle Content Box */
.service-content-main {
  background: #ffffff;
  width: auto;
  max-width: 70vw;
  min-height: 400px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide all panes except the active one */
.service-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-pane.active {
  display: flex !important;
  gap: 50px;
}
/* .service-pane-image{
     flex-shrink: 0 0 50%;
} */

/* Styling inside the box */
.service-pane img {
  width: 1500px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.service-pane-text {
  text-align: left;
}
.service-pane h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.service-pane p {
  font-size: 15px;
  line-height: 1.6;
  color: #010101;
  font-weight: 400;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .service-pane.active {
    display: flex;
    gap: 50px;
    flex-direction: column;
  }
  .service-pane img {
    width: auto !important;
    margin-bottom: 20px;
    border-radius: 20px;
  }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .ambient-service-container {
    flex-direction: column;
  }
  .service-nav-side-1,
  .service-content-main {
    width: fit-content;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
 .service-nav-side-2 {
    width: fit-content;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .service-tabs-header {
    text-align: center;

    padding: 0 15px 40px 15px;
  }

  .service-main-title {
    font-size: 2.5rem;
  }

  .service-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .service-main-title {
    font-size: 2rem;
  }

  .service-subtitle {
    font-size: 1.1rem;
  }
}

/* 🔥 FAQ-1- COMPLETE CSS - EXACT OLD DESIGN */

/* 🔥 FAQ-1 INITIAL HIDE - NO FLASH */
.faq-1-answer {
  max-height: 0 !important;
  height: 0 !important;
  padding: 0 10px !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.faq-1-item.faq-1-active .faq-1-answer {
  max-height: 300px !important;
  height: auto !important;
  padding: 20px 10px !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.faq-1-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* HEADING - SAME */
.faq-1-titlespan {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-primary);
  background: #f4f4f4;
}

.faq-1-title h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}

/* ACCORDION - EXACT SAME */
.faq-1-accordion li.faq-1-item {
  list-style: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  background: #f4f4f4;
  padding: 10px 20px;
}

.faq-1-accordion .faq-1-trigger {
  display: flex;
  padding: 15px 0;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  justify-content: space-between;
}

.faq-1-trigger::after {
  content: "+";
  font-size: 20px;
  background: rgb(20, 20, 20);
  color: #fff;
  padding: 0px 9px;
  border-radius: 10px;
  max-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-1-item.faq-1-active .faq-1-trigger::after {
  content: "-";
  background: #0025f6;
  color: #fff;
  padding: 0px 12px;
  border-radius: 10px;
}

.faq-1-accordion .faq-1-answer {
  padding-bottom: 15px;
  margin: 0;
  color: #010101;
  background: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-1-item.faq-1-active .faq-1-answer {
  max-height: 300px;
  padding: 20px 10px;
}

.faq-1-item.faq-1-active .faq-1-trigger {
  color: #0025f6 !important;
}

/* HIDE EXTRAS */
.faq-1-accordion::after,
.faq-1-accordion::before {
  display: none !important;
}

/* MOBILE - EXACT SAME */
@media (max-width: 420px) {
  .faq-1-trigger {
    gap: 65px;
  }
  .faq-1-trigger::after {
    content: "+";
    font-size: 20px;
    background: rgb(20, 20, 20);
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    max-height: 45px;
  }
  .faq-1-item.faq-1-active .faq-1-trigger::after {
    content: "-";
    background: #0025f6;
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-1-section {
    padding: 60px 0;
  }
  .faq-1-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .faq-1-item {
    margin-bottom: 16px;
  }
  .faq-1-trigger {
    font-size: 1rem;
  }
}

/*======================================
widget-service-why-us-css
======================================*/

.ambient_service_completed {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.ambient_service_completed .hed-same-css {
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.ambient_service_completed .feature-icon {
  font-size: 24px;
  width: 28px;
  height: 28px;
  color: #07216c;
  font-weight: bold;
  flex-shrink: 0;
}

.ambient_service_completed .feature-item {
  margin-bottom: 1.25rem;
}

.ambient_service_completed .feature-item strong {
  color: #1e293b;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.ambient_service_completed .feature-item span {
  color: #64748b;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.ambient_service_completed .cta-text {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  background: rgba(7, 33, 108, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  border-left: 4px solid #07216c;
}

/* Stats Cards */
.ambient_service_completed .comp_box_list {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  border: 2px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ambient_service_completed .comp_box_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #07216c, #998a05, #f59e0b, #445eef);
  background-size: 300% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ambient_service_completed .comp_box_list:hover {
  border-color: #07216c;
  box-shadow: 0 20px 50px rgba(7, 33, 108, 0.12);
  transform: translateY(-8px);
}

.ambient_service_completed .comp_box_list:hover::before {
  opacity: 1;
}

.ambient_service_completed .stat-icon {
  font-size: 20px !important;
  font-weight: bold !important;
  transition: transform 0.3s ease;
}

.ambient_service_completed .comp_box_list:hover .stat-icon {
  transform: scale(1.1);
}

.ambient_service_completed .cout {
  background: linear-gradient(135deg, #07216c 0%, #051552 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #07216c !important;
  font-weight: 800;
  font-feature-settings: "pnum";
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
}

.ambient_service_completed .comp_box_list p {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ambient_service_completed .row {
    flex-direction: row-reverse !important;
  }
}

@media (max-width: 768px) {
  .ambient_service_completed {
    padding: 3rem 1rem;
  }

  .ambient_service_completed .hed-same-css {
    font-size: 2.25rem !important;
    text-align: center;
  }

  .ambient_service_completed .comp_box_list {
    padding: 1.5rem 1rem;
  }

  .ambient_service_completed .feature-item {
    text-align: center;
    justify-content: center;
  }

  .ambient_service_completed .cta-text {
    text-align: center;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ambient_service_completed .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ambient_service_completed .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Animation Classes */
.ambient_service_completed .feature-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards;
  gap: 10px;
}
.ambient_service_completed .feature-item svg {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards;
  width: 25px;
  height: 25px;
}

.ambient_service_completed .feature-item:nth-child(2) {
  animation-delay: 0.1s;
}
.ambient_service_completed .feature-item:nth-child(3) {
  animation-delay: 0.2s;
}
.ambient_service_completed .feature-item:nth-child(4) {
  animation-delay: 0.3s;
}
.ambient_service_completed .feature-item:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ambient_service_completed .comp_box_list {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.ambient_service_completed .comp_box_list:nth-child(2) {
  animation-delay: 0.1s;
}
.ambient_service_completed .comp_box_list:nth-child(3) {
  animation-delay: 0.2s;
}
.ambient_service_completed .comp_box_list:nth-child(4) {
  animation-delay: 0.3s;
}

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

/*======================================
widget-service-main-section-css
======================================*/

.ambient-service-main {
  background: linear-gradient(#eff5f5, #e9dd9c, #878dc4);
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 80px 0 120px 0;
}

/* .ambient-service-main::before {
    background-image: url(https://nextbigtechnology.com/wp-content/uploads/2024/07/shape-051.webp);
    background-repeat: no-repeat;
    height: 175px;
    position: absolute;
    left: 50px;
    width: 175px;
    content: "";
    bottom: 40px;
    animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.ambient-service-main::after {
    background-image: url(https://nextbigtechnology.com/wp-content/uploads/2024/07/shape-131.webp);
    background-repeat: no-repeat;
    height: 175px;
    position: absolute;
    right: 6%;
    width: 175px;
    content: "";
    top: 6%;
      animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
} */

.ambient-service-main-content {
  display: flex;
  width: 100%;
  gap: 50px;
  align-items: center;
}

.ambient-service-main-head {
  flex: 1;
}

.ambient-service-main-head h6 {
  color: #07216c;
  padding: 0 0 0 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 26px;
  border-left: solid 6px #07216c;
  line-height: 25px;
  margin: 0;
}

.ambient-service-main-head h1 {
  color: #292d35;
  font-size: 60px;
  font-weight: 900;
  line-height: 70px;
  padding: 20px 0 10px 0;
  margin: 0;
}

.ambient-service-main-head p {
  color: #292d35;
  font-size: 20px;
  padding: 20px 0 15px 0;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.ambient-service-main-buttons {
  margin-top: 10px;
}

/* .ambient-service-main-buttons a {
    color: #fff;
    border-radius: 60px;
    background: #07216c;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    max-width: 210px;
    height: 45px;
    line-height: 45px;
    transition: none;
    padding: 0 30px;
    margin: 0 0 10px 0;
    text-decoration: none;
} */

.ambient-service-main-images {
  flex: 1;
}

.ambient-service-main-img-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1px;
}

.ambient-service-main-img {
  padding: 0 0 45px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ambient-service-main-img-one img {
  animation: float_up_down 5s infinite linear;
}

.ambient-service-main-img-three img {
  animation: float_up_down 3s infinite linear;
}

@keyframes float_up_down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 922px) {
  .ambient-service-main-content {
    flex-direction: column;
    gap: 30px;
  }

  .ambient-service-main-head {
    text-align: center;
  }

  .ambient-service-main-head h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .ambient-service-main-img {
    padding: 0 0 30px 0;
  }
}

/* ========================================
   Ambient Insights Grid Widget Styles
   No Elementor prefix - Clean selectors
======================================== */

/* Main Wrapper */
.insights-grid-wrapper {
  width: 100%;
}

/* Title Section */
.blog-title-wrapper {
  width: 100%;
  height: auto;
  padding-top: 20px;
  text-align: center;
}

.blog-title {
  margin: 20px 0 0 0;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.blog-subtitle {
  width: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
  background: #f4f4f4;
  margin: 0 auto 10px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
}

/* Grid Container */
.insights-grid-container {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.insight-item {
  padding: 24px;
  border-radius: 15px;
  border: 1px solid #e6e6e6;
  background: #f0f0f0;
}
/* Image */
.insight-thumb {
  width: 100%;
  /* height: 160px; */
  object-fit: cover;
  border-radius: 20px !important;
  margin-bottom: 15px;
}

/* Content */
.insight-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.insight-date {
  margin: 10px 0 6px;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  opacity: 0.8;
}

.insight-title {
  /* Default Style */
  color: #000000; 
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.3;
  margin-bottom: 12px;

  /* Smooth Transition: Isse color smoothly change hoga */
  transition: color 0.4s ease-in-out;

  /* Text clipping (agar title 2 line se bada ho) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover State */
.insight-title:hover {
  color: #001aff !important; /* Smooth Blue Color */
  cursor: pointer;
}

/* Anchor tag ki default underline hatane ke liye */
a {
  text-decoration: none;
}

.insight-desc {
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Creative Button */
.creative-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-style: solid;
  border-width: 2px;
  padding: 12px 24px;
  border-radius: 16px;
  margin-top: auto;
  gap: 10px;
  width: fit-content;
  color: #000;
}

.creative-btn.icon-pos-right {
  flex-direction: row;
}

.creative-btn.icon-pos-left {
  flex-direction: row-reverse;
}

.creative-btn__icon-box {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
}

.creative-btn__svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease-in-out;
}

.creative-btn:hover .creative-btn__svg {
  transform: rotate(45deg);
}

.creative-btn:hover {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .insights-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .insights-grid-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-title-wrapper {
    text-align: center;
  }

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

@media (max-width: 480px) {
  .blog-card {
    padding: 20px;
  }

  .creative-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Container Fluid Support */
.container .insights-grid-wrapper {
  padding: 0 15px;
}

/* ========================================
  widget-tech-css
======================================== */

.tech-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
}

.bg-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.tech-main-title {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  margin: 0 0 20px 0;
  font-family: "Lucida Sans", sans-serif;
}

.slider-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.slider-row {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Box Styling */
.box_t {
  flex: 0 0 auto;
  background: white;
  border: 1px solid #444;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: black;
  user-select: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.box_t:hover {
  transform: scale(1.05);
  z-index: 10;
}

.box_t img {
  width: 30px;
  height: auto;
  margin-left: 10px;
  object-fit: contain;
}

.box_t h5 {
  margin: 0 0 0 10px;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 600;
}

/* Direction Logic */
/* Right to Left */
.direction-left {
  animation-name: scrollRight;
}
/* Left to Right */
.direction-right {
  animation-name: scrollLeft;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



/* ========================================
   AMBIENT CORE SERVICES WIDGET - COMPLETE
======================================== */

/* Main Section */
.ambient-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(248, 249, 255) 0%, rgb(232, 236, 255) 100%);
}

.ambient-services-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.ambient-text-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* LEFT IMAGES SECTION - PERFECT RESPONSIVE */
.ambient-left-images {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* height: 500px; */
}

.top-images-row {
    display: flex;
    gap: 1rem;
    /* flex: 1; */
    height: 65%;
}

.image-wrapper-1 {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.image-wrapper-2 {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.bottom-image-wrapper {
    /* height: 30%; */
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.service-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Shine Hover Effect */
.image-wrapper::before,
.bottom-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.4) 50%, 
        transparent 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.7s ease;
    border-radius: 24px;
}

.image-wrapper:hover::before,
.bottom-image-wrapper:hover::before {
    left: 125%;
}

/* Image Hover Effects */
.image-wrapper:hover .service-img,
.bottom-image-wrapper:hover .service-img {
    transform: scale(1.05) translateY(-3px);
}

.image-wrapper .service-img,
.bottom-image-wrapper .service-img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.image-wrapper:hover .service-img,
.bottom-image-wrapper:hover .service-img {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* RIGHT CONTENT */
.ambient-right-content {
    flex: 1;
}

.ambient-head-title {
    color: #000;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    font-family: var(--font-primary);
}

.ambient-services-list {
    margin-bottom: 2rem;
}

.ambient-services-list p {
    color: #545454;
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ambient-services-list strong {
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 1.1em;
}

.ambient-description {
    color: #545454;
    /* font-size: 16px; */
    font-size: clamp(16px, calc(1vw - 0.5px), 22px);

    font-weight: 300;
    line-height: 1.7;
}
.ambient-services-list p,
    .ambient-description {
      color:#000;
    }

/* ===========================================
   RESPONSIVE BREAKPOINTS - PERFECT MOBILE
============================================= */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .ambient-text-content {
        gap: 3rem;
    }
    
    .ambient-left-images {
        flex: 0 0 50%;
        height: -webkit-fill-available;
    }
    .image-wrapper-2 {
    display: none;
}
}

/* Tablet Portrait (768px and below) */
@media (max-width: 992px) {
    .ambient-text-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ambient-left-images {
        flex: none;
        height: auto;
        width: 100%;
        margin: 0 auto;
    }
    
    .top-images-row {
        height: 250px;
    }
    
    .bottom-image-wrapper {
        height: 200px;
    }
    
    .ambient-head-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }
       .image-wrapper-2 {
    display: block;
}
}

/* Mobile Landscape (600px and below) */
@media (max-width: 768px) {
    .ambient-services-section {
        padding: 3rem 1rem;
    }
    
    .ambient-left-images {
        gap: 1rem;
    }
    
    .top-images-row {
        height: 200px;
    }
    
    .bottom-image-wrapper {
        height: 180px;
    }
    
    .ambient-services-list p,
    .ambient-description {
        text-align: center;
        font-size: 15px;
    }
    
    .ambient-right-content {
        text-align: center;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .ambient-services-section {
        padding: 2rem 1rem;
    }
    
    .ambient-left-images {
        gap: 0.75rem;
    }
    
    .top-images-row {
        height: 160px;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .image-wrapper-1 {
        border-radius: 20px;
    }
    .image-wrapper-2 {
        border-radius: 20px;
    }
    
    .bottom-image-wrapper {
        height: 160px;
        border-radius: 20px;
    }
    
    .ambient-head-title {
        font-size: 28px;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .top-images-row,
    .bottom-image-wrapper {
        height: 140px;
    }
    
    .ambient-services-list p,
    .ambient-description {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .image-wrapper::before,
    .bottom-image-wrapper::before {
        display: none !important;
    }
    
    .service-img {
        transform: none !important;
        box-shadow: none !important;
    }
}



/* ========================================
   Ambient Testimonials - PERFECT DESIGN
======================================= */

.ambient-testimonials-section {
    position: relative;
    background: linear-gradient(135deg, rgb(248, 249, 255) 0%, rgb(232, 236, 255) 100%);;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 40px 0;
}

.industres_title {
    text-align: center;
    padding-bottom: 60px;
}

.ambient-testimonial-title {
    color: #000;
    padding-bottom: 15px;
    font-size: 54px;
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 66px;
    margin: 0;
}

.ambient-testimonial-subtitle {
    color: #545454;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

/* Main Content */
.ambient-main-slider-wrapper {
    position: relative;
}

.client_testimils_text_outer {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.client_testimils_text_item {
    padding: 30px 25px;
    background-image: url(http://192.168.1.149:18020/wp-content/uploads/2026/04/testomonial-bg.png);
    background-repeat: no-repeat;
    background-position: 96% 25px;
    background-size: 45px;
    display: flex;
    align-items: flex-start;
    min-height: 280px;
}

.client_testimils_text_video {
    position: relative;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    margin-right: 5%;
}

.client_testimils_text_video img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.ambient-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(249, 84, 8, 0.95);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(249, 84, 8, 0.4);
    transition: all 0.3s ease;
}

.ambient-video-play:hover {
    background: #f95408;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 84, 8, 0.5);
}

.client_testimils_text {
    display: inline-block;
    width: 67%;
    vertical-align: top;
}

.client_testimils_text h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.client_testimils_text h6 {
    color: #f95408;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 18px 0;
}

.client_testimils_text p {
    color: #545454;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

/* Thumbnails */
.testimonials_slider_thumb_outer {
    width: 100%;
    padding-left: 20px;
}

.testimonials_slider_thumb {
    text-align: right;
    max-width: 100%;
}

.client_testimls_thumb {
    display: inline-block;
    width: 25%;
    margin-bottom: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client_testimls_thumb.active,
.client_testimls_thumb:hover {
    opacity: 1;
}

.testimls_thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}

.client_testimls_thumb.active .testimls_thumb img {
    border-color: #f8550882 !important;
    box-shadow: 0 0 0 4px rgba(249, 84, 8, 0.3);
}

.testimls_thumb img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 100% !important;
    object-fit: cover;
    border: solid 6px #fff !important;
    display: block;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1199px) {
    .testimonials_slider_thumb_outer {
        padding-left: 15px;
    }
    
    .client_testimls_thumb {
        width: 33.33%;
    }
}

@media (max-width: 991px) {
    .ambient-testimonial-title {
        font-size: 42px;
        line-height: 52px;
    }
    
    .testimonials_slider_thumb_outer {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .testimonials_slider_thumb {
        text-align: center;
    }
    
    .client_testimls_thumb {
        width: 25%;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .ambient-testimonials-section {
        padding: 60px 0;
    }
    
    .ambient-testimonial-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .client_testimils_text_item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .client_testimils_text_video {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .client_testimils_text_video img {
        max-width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .client_testimils_text {
        width: 100%;
        text-align: center;
    }
    
    .client_testimls_thumb {
        width: 33.33%;
    }
}

@media (max-width: 575px) {
    .ambient-testimonial-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .client_testimls_thumb {
        width: 50%;
    }
    
    .testimls_thumb {
        width: 65px;
        height: 65px;
    }
}

/* Slick fixes */
.ambient-testimonials-section .slick-track {
    display: flex !important;
    align-items: stretch;
}

.ambient-testimonials-section .slick-slide {
    height: auto !important;
    display: flex;
}

.ambient-testimonials-section .slick-slide > div {
    height: 100%;
    width: 100%;
}