@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jomolhari&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jomolhari&family=Outfit:wght@100..900&family=Prociono&family=Radio+Canada:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #fff;
  --color-bg: #f0f0f0;
  --color-accent: #000000;
  --color-orange: #FD7807;
   --color-white-light: #F6F6F6;

 
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Base Colors */
  /* Theme Usage */

  
  
    --heading-h1: 72px;
    --heading-h2: 48px;
    --heading-h3: 32px;
    --heading-h4: 24px;
    
	--text-size-1: 20px;
	--text-size-2: 18px;
	--text-size-3: 16px;
	--text-size-4: 14px;

}


/* Global */
body {
  margin: 0;
  padding: 0;
  background: var( --color-primary);
  color: var(--color-accent);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-family: var(--font-heading);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
p{
  margin: 0px;
}

/* =========================
   Global css
========================= */
.container {
    max-width: 1440px;
}

/* =========================
   Header
========================= */


.header {
    padding: 15px 0px;
    position: relative;
    z-index: 9999;
}

.header-button a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var( --color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 230px;
    padding: 10px;
    border-radius: 50px;
}


.header-button a h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.header-button a p {
        margin: 0px;
        position: relative;
        padding-left: 14px;
}

.header-button a p:before {
    content: "";
    height: 8px;
    width: 8px;
    background: #00C14D;
    position: absolute;
    left: 4px;
    border-radius: 50px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.menu-button {
    background: var(--color-orange);
    color: var( --color-primary);
    padding: 10px 30px;
    border-radius: 50px;
    gap: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    max-width: 100%;
}

.lines {
  width: 24px;
height: 12px;

  position: relative;
}

.lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var( --color-primary);
  transition: all 0.4s ease;
}
.lines span:nth-child(2) {
  position: absolute;
  right: 0;
  left: auto;
  width: 70%;
  height: 2px;
  background: var( --color-primary);
  transition: all 0.4s ease;
}
.menu-button.active .lines span:nth-child(2) {
  width:100%;
}
.lines span:nth-child(1) {
  top: 0;
}

.lines span:nth-child(2) {
  bottom: 0;
}

/* 🔥 Active (Cross) */
.menu-button.active .lines span:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}

.menu-button.active .lines span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 5px;
}

/****/

/* Drawer wrapper */
.drawer-menu {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* Overlay */
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Drawer panel */
.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  /*width: 360px;
  max-width: 90%;*/
  height: 100%;
  background: #201e1e;
  /*transform: translateX(100%);*/
  /*transition: transform 0.45s cubic-bezier(.4,0,.2,1);*/
  padding: 40px;
  height: 0vh;
  width: 100%;
  overflow: hidden;
  /*display: none;*/
  opacity: 0;
  transition: all 1s linear;
  display: flex;
  align-items: center;
}
.drawer-content:before {
  content: '';
  position: absolute;
  top:0px;
  left: 0px;
  width:50%;
  height:100%;
  background: #000000;
  transition: all .2s linear;
}
.drawer-content:after {
  content: '';
  position: absolute;
  top:0px;
  right: 0px;
  width:50%;
  height:100%;
  background: #000000;
  transition: all .2s linear;
}
.drawer-content.active:before {
  left: -100%;
  transition: all 2s linear;
}
.drawer-content.active:after {
  right: -100%;
  transition: all 2s linear;
}
.drawer-content .menu-links {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  flex: 0 0 50%;
  text-align: center;
  height: auto;
}
.drawer-content .menu-links .menu-link {
  margin-top: .25em;
  margin-bottom: .25em;
  transition: all 80ms ease-in;
  display: block;
}
.drawer-content .menu-links .menu-link a {
  font-size: 40px;
  text-decoration: none;
  transition: all 80ms ease-in;
  color:#ffffff;
}
/* Active state */
.drawer-menu.active {
  pointer-events: auto;
}

.drawer-menu.active .drawer-overlay {
  opacity: 1;
}

.drawer-menu.active .drawer-content {
  /*display: block;*/
  opacity: 1;
  height: 100vh;
  width: 100%;
  transition: all 1s linear;
}

/* Menu items */
.drawer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-content li {
  margin-bottom: 20px;
}

.drawer-content a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

#bookcall.active, #menuBtn.active, #sitelogo.active {
  z-index: 9999;
  position: relative;
}

.page-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 78px;
  text-align: center;
  color:#000000;
}
.breadcrumbs {
  margin-bottom:50px;
}
.breadcrumbs .link {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  color:#000000;
}
.breadcrumbs .link a {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  color:#000000;
}
/******************hero******/



.hero {
    min-height: 100vh;
    margin-top: -100px;
    display: flex;
    align-items: end;
    position: relative;
}

.hero h1 {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  margin-left: -6px;
}
.hero h4 {
  font-family: "Jomolhari", serif;
}
.hero:after {
    content: "";
    background-image: url('/wp-content/uploads/2026/01/home-banner-bg.png');
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
    bottom:0px;
}

.hero .lists span {
    background: var(--color-white-light);
    padding: 6px 15px;
    border: 1px solid #e7e3e3;
    border-radius: 50px;
}


.marquee {
  overflow: hidden;
  width: 50%;
}



.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
}


/* .marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 26s linear infinite;
    --marquee-width: 0px;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  
}


.marquee-track:hover {
  animation-play-state: paused;
} */



/* animation uses CSS variable */
/* @keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-width)));
  }
} */



.hero-content {
    padding-top: 50px;
    position: relative;
}


.hero-content h4 {
    font-size: 72px;
}

.hero-content h4 {
    font-size: 90px;
}

.hero-content h1 {
    font-size: 200px;
    text-transform: uppercase;
}


.hero-content a {
    background: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
 transition: fill 0.3s ease;
    position: absolute;
    right: 0px;
    bottom: 40px;
    border: 1px solid #000;
}

.hero-content a svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}

.hero-content a:hover svg path {
  fill: #000; /* yahan #00 jo chaho daal do */
}



.hero-content a:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

/******************Logo Slider******/
.logo-slider {
  background:rgba(217, 217, 217, 0.54);
  padding-top:50px;
  padding-bottom:50px;
}
.logo-slider .content p:nth-child(1) {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color:#000000;
}
.logo-slider .content p:nth-child(1) strong {
  font-weight: 600;
}
.logo-slider .content p:nth-child(2) {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 28.8px;
  color:#000000;
}
.logo-slider .logo-swiper .swiper-slide img {
  max-width: 100%;
}

/*------------ Empowering ideas ---------------*/
.empowering-ideas {
  background-image:url('/wp-content/uploads/2026/01/emp.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top:40px;
  padding-bottom:40px;
}
.empr-ideas-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
  text-align: center;
  margin-bottom:60px;

}
.empr-ideas-title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: Italic;
}
.empowering-ideas .idea-box {
  box-shadow: 0px 4px 8px 0px #0000001C;
  /*box-shadow: 0px 4px 4px 0px #FFFFFF33 inset;*/
  backdrop-filter: blur(17.5px);
  padding:40px;
  min-height:390px;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom:20px;
}
.empowering-ideas .idea-box .idea-icon {
  margin-bottom:20px;
}
.empowering-ideas .idea-box .idea-title {
  margin-bottom:20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 28.6px;
  letter-spacing: -0.72px;
}
.empowering-ideas .idea-box  .idea-content {
  width:89.5%;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.8px;
}
.pt-50{
  padding-top:50px;
}
.pt-100{
  padding-top:100px;
}
.pb-50 {
  padding-bottom:50px;
}
.pb-100 {
  padding-bottom:100px;
}
/* projects section */
.projects-section-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
}
.projects .project {
  height:575px;
  border-radius: 16px;
  margin-bottom:20px;
  position: relative;
}
.projects .project img {
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 16px;
}



/* h4 initial state (hidden, bottom) */
.project h4 {
    position: absolute;
    left: 0;
    bottom: -20px; /* niche chhupa hua */
    width: 100%;
    margin: 0;
    padding:0px 20px ;
 
    color: #000;
    text-align: left;
    transition: all 0.4s ease;
    opacity: 0;
}

.project h4 a {
    color: #000;
    text-decoration: none;
}

/* hover par upar aa jaye */
.project:hover h4 {
    bottom: 40px;
    opacity: 1;
}



/* services */
.services-section-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
}
.services-section-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 58px;
  letter-spacing: -2%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-align: right;
}
.services {
  overflow: hidden;
}
.services .service {
  padding:50px 30px;
  border-radius: 28px;
  margin-bottom:20px;
}
.services .service .service-icon {
  height:108px;
  width:108px;
  margin-bottom:60px;
}
.services .service .service-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.services .service  .service-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 28px;
  letter-spacing: -2%;
  color:#ffffff;
}
.services .service  .service-description {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -2%;
  color:#ffffff;
  max-width: 80%;
}
.services .row .service-row:first-child .service{
  background: #5691D5;
}
.services .row .service-row:nth-child(3n + 4) .service{
  background: #5691D5;
}
.services .row .service-row:nth-child(2) .service{
  background: #8956D5;
}
.services .row .service-row:nth-child(3n + 2) .service{
  background: #8956D5;
}
.services .row .service-row:nth-child(3) .service{
  background: #D57156;
}
.services .row .service-row:nth-child(3n + 3) .service{
  background: #D57156;
}

.services .div-full .row .service-row:first-child .service{
  background: #5691D5;
}
.services .div-full .row .service-row:nth-child(3n + 4) .service{
  background: #5691D5;
}
.services .div-full .row .service-row:nth-child(2) .service{
  background: #8956D5;
}
.services .div-full .row .service-row:nth-child(3n + 2) .service{
  background: #8956D5;
}
.services .div-full .row .service-row:nth-child(3) .service{
  background: #D57156;
}
.services .div-full .row .service-row:nth-child(3n + 3) .service{
  background: #D57156;
}

/* Trusted By */
.trusted-by .top-right-image img {
  width: 56px;
  border-radius: 100%;
  margin-left:-30px;
}
.trusted-by .top-right-image img:nth-child(1) {
  margin-left:0px;
}
.trusted-by .top-right-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0px;
  margin-left:20px;
}
.trusted-by .top-right-title span {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: -0.72px;
}
.trusted-by .top-right-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  margin-top:20px;
}
.trusted-by-top-left-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  margin-top:20px;
}
.trusted-by-top-left-title span {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 67.2px;
  letter-spacing: -1.74px;
}
.trusted-by-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
  text-align: center;
  margin-bottom:60px;

}
.trusted-by-title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: Italic;
}
.trusted-by .trusted-by-icon {
  width:60px;
  height:60px;
  border-radius: 100%;
  overflow: hidden;
   z-index: 1;
}
.trusted-by .trusted-by-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.trusted-by-box {
  background: #FFFFFF87;
  box-shadow: 0px 4px 8px 0px #0000001C;
  backdrop-filter: blur(17px);
  padding:30px 30px 85px 30px;
  border: 1px solid #FFFFFF69;
  border-radius: 16px;
  overflow: hidden;
  height:100%;
  position: relative;
}
.trusted-by-box-outer {
  margin-bottom:20px;
}
.trusted-by-box-wrapper {
  position: relative;
}
.trusted-by-box-wrapper:before {
  content: '';
  position: absolute;
  max-width: 415px;
  width: 100%;
  max-height: 418px;
  height: 100%;
  right: 0px;
  bottom: 0px;
}
.trusted-by-box-wrapper .trusted-by-box-outer:nth-child(1) .trusted-by-box {
  transform: rotate(-10.88deg);
  transform-origin: top;
}
.trusted-by-box-wrapper .trusted-by-box-outer:nth-child(2) .trusted-by-box {
  transform: rotate(4.72deg);
  transform-origin: center;
}
.trusted-by-box-wrapper .trusted-by-box-outer:nth-child(3) .trusted-by-box {
  transform: rotate(12.28deg);
  transform-origin: center;
}
.trusted-by-box-wrapper .trusted-by-box-outer:nth-child(4) .trusted-by-box {
  transform: rotate(-6.08deg);
  transform-origin: bottom;
}
.trusted-by-box .trusted-by-rating {
  z-index: 1;
}
.trusted-by-box .trusted-by-rating img {
  width: 95px;
  margin-top:20px;
}
.trusted-by-box.video {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.trusted-by-box.video:before {
  content: '';
  position: absolute;
  top: 0px;
  left:0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 0;
}
.trusted-by-box .trusted-by-content {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  color:#000000;
  margin-top:40px;
  margin-bottom:40px;
}
.trusted-by-box.video .trusted-by-content{
  color:#ffffff;
  z-index: 1;
  text-align: center;
}
.trusted-by-box .trusted-by-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26.4px;
  letter-spacing: 0%;
  color:#000000;
  margin-bottom:0px;
  text-align: left;
  position: absolute;
  bottom: 60px;
  left: 30px;
}
.trusted-by-box.video .trusted-by-title {
  color:#ffffff;
  z-index: 1;
}
.trusted-by-box .trusted-by-position {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  color: #2C2C2C;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.trusted-by-box.video .trusted-by-position {
  color:#ffffff;
  z-index: 1;
}
/* latest thoughts */
.latest-thoughts-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
  text-align: left;
  margin-bottom:60px;
  position: relative;
  max-width: 445px;
  margin-left:auto;
  margin-right:auto;
}
.latest-thoughts-title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: Italic;
}
.latest-thoughts-title .secondpart {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translate(5px, -20%);
}
.latest-thoughts-title .lastpart {
  position: absolute;
  top: 62%;
  right: 18%;
  transform: translate(-5px, -15%);
}
.latest-thought-box {
  box-shadow: 0px 4px 4px 0px #0000001C;
  /*box-shadow: 0px 4px 8px 1px #FFFFFF33 inset;*/
  backdrop-filter: blur(17.5px);
  border: 1px solid #FFFFFF69;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  padding:20px 30px 40px 30px;
  justify-content: space-between !important;
  height: 560px;
  position: relative;
  margin-bottom:20px;
}
.latest-thought-box .latest-thought-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 30.8px;
  letter-spacing: -0.56px;
  color:#000000;
  max-width: 300px;
  z-index: 1;
}
.latest-thought-box .latest-thought-image img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 375px;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 2) .latest-thought-box .latest-thought-title {
  padding:10px 20px 0px 20px;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 2) .latest-thought-box .latest-thought-image {
  position: relative;
  z-index: 0;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 2) .latest-thought-box .latest-thought-image:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    background: url(https://air.squareaero.in/wp-content/uploads/2025/12/Gradient.png);
    height: 100px;
    background-position: bottom left;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 2) .latest-thought-box img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 375px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 2) .latest-thought-box {
  padding: 20px 10px 10px 10px;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n) .latest-thought-box {
  justify-content: end !important;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n) .latest-thought-box .latest-thought-title {
  color:#ffffff;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n) .latest-thought-box .latest-thought-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left:0px;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n) .latest-thought-box .latest-thought-image img  {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.latest-thoughts-box-wrapper .latest-thought-box-outer:nth-child(3n + 1) .latest-thought-box {

}

/* Contact section */
.bottom-contact {
  /*background-image: url('/wp-content/uploads/2026/01/emp.png');
  background-position: -40px -36px;
  background-repeat: no-repeat;*/
  position: relative;
}
.bottom-contact:before {
  content: '';
  position: absolute;
  background-image: url(/wp-content/uploads/2026/01/emp.png);
  max-width: 900px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translate(-50%, 0px);
}
.bottom-contact .contact-title {
  font-family: "Jomolhari", serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 95.04px;
  letter-spacing: 0%;
}
.bottom-contact .contact-box .icon, .contact .contact-box {
  justify-content: space-between;
}
.bottom-contact .contact-box .icon, .contact .contact-box .icon img {
  wdith:20px;
  height:20px;
  margin-right:10px;
}
.bottom-contact .contact-box .content a {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0%;
  color:#000000;
}
.bottom-contact .contact-form {
  padding-left:60px;
}
.bottom-contact .contact-form > div {
  margin-bottom: 30px;
}
.bottom-contact .contact-form input {
  box-shadow: none;
  outline: none;
  border: 0px;
  border-bottom: 1px solid #00000026;
  padding: 2px 10px 10px 0px;
  width: 100%;

  color:#2c2c2c;
  background: transparent;
}
.bottom-contact .contact-form textarea  {
  box-shadow: none;
  outline: none;
  border: 0px;
  border-bottom: 1px solid #00000026;
  padding: 2px 10px 10px 0px;
  width: 100%;
  /*margin-bottom: 30px;*/
  height:110px;
  color:#2c2c2c;
  background: transparent;
}
.bottom-contact .contact-form input::placeholder {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.86px;
  letter-spacing: 0%;
  color:#2c2c2c;
}
.bottom-contact .contact-form textarea::placeholder {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.86px;
  letter-spacing: 0%;
  color:#2c2c2c;
}
.bottom-contact .contact-form .contact-submit {
  background-color: #000000;
  padding:15px 25px;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: center;
  color:#ffffff;
  border-radius: 65px;
  width:100%;
  max-width: 175px;
  margin-bottom: 0px;
  position: relative;
  z-index: 6666;
}
.border-right {
  border-right: 1px solid #0000001A;
}
.border-bottom {
  border-bottom: 1px solid #0000001A;
}
.menu-out-side-left .swap-side {
  margin-left:-60px;
}
.menu-out-side-left .swap-side-2 {
  margin-left:-90px;
}
.footer-main .footer-intro {
  width: 70%;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top:20px;
}
.footer-main .footer-menu-title{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom:10px;
}
.footer-main .footer-menu ul {
  list-style: none;
  padding-left:0px;
}
.footer-main .footer-menu ul li a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom:12px;
  display: inline-block;
}
.footer-main .menu-left-bottom a {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-right:15px;
}
.footer-main .footer-icon-box .icon {
  margin-right:20px;
}
.footer-main .footer-icon-box.icon-box-email .icon {
  margin-top: 8px;
}
.footer-main .footer-icon-box.icon-box-address .icon {
  margin-top: 4px;
}
.footer-main .footer-icon-box .phone {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
.footer-main .footer-icon-box .email {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer-main .footer-icon-box .address {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.social-links {
  margin-top:30px;
}
.social-links a {
  margin-right:10px;
}


img.footer-logo {
    width: 220px;
    margin-bottom: 10px;
    margin-top: 35px;
}



/* latest blogs */
.page-template-page-blogs {
  background: #f0f0f0;
}
.latest-blogs {
  position: relative;
  margin-top: -100px;
  padding-top: 200px;
}
.latest-blogs:after {
content: '';
  background: url(/wp-content/uploads/2026/01/bg-blogs.png);
  height: 253px;
  width: 90%;
  position: absolute;
  z-index: -1;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-size: auto;
  top: 0px;
  left: 50px;
}
.latest-blogs-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 58px;
  letter-spacing: -1.74px;
  text-align: left;
  margin-bottom:60px;
  position: relative;
  max-width: 445px;
  margin-left:auto;
  margin-right:auto;
}
.latest-blogs-title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: Italic;
}
.latest-blogs-title .secondpart {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translate(5px, -20%);
}
.latest-blogs-title .lastpart {
  position: absolute;
  top: 62%;
  right: 18%;
  transform: translate(-5px, -15%);
}
.latest-blog-box {
  box-shadow: inset 0 4px 8px 0 #fff3, 0 4px 4px 0 #0000001c;
  backdrop-filter: blur(17.5px);
  border: 1.5px solid #ffffff69;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 30px 40px 30px;
  justify-content: space-between !important;
  height: 605px;
  position: relative;
  margin-bottom: 20px;
}
.latest-blog-box .latest-blog-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 30.8px;
  letter-spacing: -0.56px;
  color:#000000;
  max-width: 300px;
  z-index: 1;
}
.latest-blog-box .latest-blog-image img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 375px;
}


.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-top .latest-blog-title {
  padding:10px 20px 0px 20px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-top .latest-blog-image {
  position: relative;
  z-index: 0;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-top .latest-blog-image:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
 /*background: url(https://air.squareaero.in/wp-content/uploads/2025/12/Gradient.png);*/
  height: 300px;
  /*background-position: top left;*/
  background-image: linear-gradient(0deg, #fff 23%, #fff0 77%);
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-top img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 450px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-top {
  padding: 10px 10px 40px 10px;
}


.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bottom .latest-blog-title {
  padding:10px 20px 0px 20px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bottom .latest-blog-image {
  position: relative;
  z-index: 0;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bottom .latest-blog-image:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    background: url(https://air.squareaero.in/wp-content/uploads/2025/12/Gradient.png);
    height: 100px;
    background-position: bottom left;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bottom img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 375px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bottom {
  padding: 20px 10px 10px 10px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bg {
  justify-content: end !important;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bg .latest-blog-title {
  color:#ffffff;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bg .latest-blog-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left:0px;
}
.latest-blogs-box-wrapper .latest-blog-box-outer .latest-blog-box.image-bg .latest-blog-image img  {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* ------- single blog ---------- */
.single-blog .image-wrap {
  z-index: 2;
  box-shadow: 0 4px 8px 0 #0000001C, inset 0 4px 4px 0 #fff3;
  border-radius: 16px;
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.single-blog .image-wrap img {
  border: 1.5px solid #ffffff;
  background-color: #ffffff;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  padding: 5px;
  position: static;
}
.blog-date {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom:30px;
}
.blog-title {
  color: #000000;
  letter-spacing: -1.74px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 58px;
  font-weight: 600;
  line-height: 105%;
  margin-bottom:40px;
}
.single-blog  p {
  color: #2c2c2c;
  margin-bottom: 0;
  font-weight: 500;
  margin-bottom: 20px;
}
.single-blog  h1 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 68px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
}
.single-blog  h2 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 62px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
}
.single-blog  h3 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 58px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
}
.single-blog  h4 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
}
.single-blog  h5 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
}
.single-blog  h6 { 
  color: #000000;
  letter-spacing: -.72px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  margin-top:30px;
  margin-bottom:30px;
} 
.blog-contant {
  padding-bottom:60px;
}
/* -------- services page ------- */
.services-box {
  /*background-image:url('/wp-content/uploads/2025/12/empr-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;*/
  padding-top:150px;
  padding-bottom:40px;
  position: relative;
  margin-top: -100px;
}
.services-box:before {
  content: "";
  background-image: url('/wp-content/uploads/2026/01/Inner-page-bg.png');
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  bottom:0px;
}
.services-box .container {
  max-width:1300px;
}
.services-box .service-box {
  box-shadow: 0px 4px 8px 0px #0000001C;
  /*box-shadow: 0px 4px 4px 0px #FFFFFF33 inset;*/
  backdrop-filter: blur(17.5px);
  padding:40px;
  min-height:390px;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom:20px;
}
.services-box .service-box .service-icon {
  margin-bottom:20px;
}
.services-box .service-box .service-title {
  margin-bottom:20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 28.6px;
  letter-spacing: -0.72px;
}
.services-box .service-box  .service-content {
  width:89.5%;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.8px;
}
.latest-thoughts-two .container {
  max-width:1300px;
}
.latest-thoughts-two{
  background-image: url('/wp-content/uploads/2026/01/other-bg-1-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.latest-thoughts-two-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 100px;
  color:#0F110F;
}
.latest-thoughts-two-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 35px;
  color:#696687;
  max-width: 80%;
  margin-bottom:50px;
}
.latest-thoughts-two-title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: Italic;
}
.latest-thoughts-two-title .secondpart {
  position: absolute;
  top: 35%;
  right: 0px;
  transform: translate(5px, -20%);
}
.latest-thoughts-two-title .lastpart {
  position: absolute;
  top: 62%;
  right: 18%;
  transform: translate(-5px, -15%);
}
.latest-thought-two-box {
  box-shadow: 0px 0px 4px 2px #0000001C;
  /*box-shadow: 0px 4px 8px 1px #FFFFFF33 inset;*/
  backdrop-filter: blur(17.5px);
  border: 1px solid #FFFFFF69;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  padding:20px 30px 40px 30px;
  justify-content: space-between !important;
  height: 560px;
  position: relative;
  margin-bottom:20px;
}
.latest-thought-two-box .latest-thought-two-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 30.8px;
  letter-spacing: -0.56px;
  color:#000000;
  max-width: 300px;
  z-index: 1;
}
.latest-thought-two-box .latest-thought-two-image img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 375px;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 2) .latest-thought-two-box .latest-thought-two-title {
  padding:10px 20px 0px 20px;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 2) .latest-thought-two-box .latest-thought-two-image {
  position: relative;
  z-index: 0;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 2) .latest-thought-two-box .latest-thought-two-image:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    background: url(https://air.squareaero.in/wp-content/uploads/2025/12/Gradient.png);
    height: 100px;
    background-position: bottom left;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 2) .latest-thought-two-box img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 375px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 2) .latest-thought-two-box {
  padding: 20px 10px 10px 10px;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n) .latest-thought-two-box {
  justify-content: end !important;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n) .latest-thought-two-box .latest-thought-two-title {
  color:#ffffff;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n) .latest-thought-two-box .latest-thought-two-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left:0px;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n) .latest-thought-two-box .latest-thought-two-image img  {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.latest-thoughts-two-box-wrapper .latest-thought-two-box-outer:nth-child(3n + 1) .latest-thought-two-box {

}
.page-id-72 .about-top {
  margin-top: 0px;
  padding-top: 100px;
}
.bottom-cta .cta-box {
  background: #000;
  border-radius: 35px;
  padding: 40px;
  color: #fff;
  margin-left: 0px;
  margin-right: 0px;
}
.bottom-cta .cta-box h4 {
  font-family: Inter;
  font-weight: 600;
  font-size: 44px;
  line-height: 52px;
  letter-spacing: -2%;
  max-width:600px;
  color:#ffffff;
}
.bottom-cta .cta-box .cta-button {
  border-radius: 100px;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 32px;
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color:#ffffff;
  background: linear-gradient(279.69deg, #FD7807 0%, #F9B41A 100%);
}
.bottom-cta .cta-box .cta-button img {
  margin-left:10px;
}
.newsletter-box {
  padding-bottom:20px;
}
.newsletter-box .news-title {
  font-family: "Prociono", serif;
  font-weight: 400;
  font-size: 71px;
  line-height: 100%;
  text-transform: capitalize;
  color:#000000;
  margin-bottom:20px;
}
.newsletter-box .sub-title-1 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color:#74787C;
}
.newsletter-box .sub-title-2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color:#000000;
}
.newsletter-box .newsletter {
  margin-top:50px;
}
.news-email {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  padding: 15.5px 10px;
  border: 1px solid #000000;
  max-width: 565px;
  width: 100%;
  outline: none;
  box-shadow: none;

}
.newsletter-box .news-submit {
  border-width: 1px 1px 3px 1px;
  border-style: solid;
  border-color: #000000;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  padding: 15px;
}

/* ---------- contac page ------- */
.bottom-contact-2 {
  padding-bottom:80px;
}
.bottom-contact-2 .container {
    z-index: 2;
    border-bottom: 1px none #0000001a;
    background-color: #ffffff91;
    box-shadow: 8.817px 8.817px 35.267px 0 #240c8717;
    border-radius: 16px;
    padding: 100px;
}
.contact-info-box {
  background-image:url('/wp-content/uploads/2026/01/emp.png');
  
    /*background-image:url('/wp-content/uploads/2025/12/empr-bg.svg');*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top:40px;
  padding-bottom:40px;
}
.contact-info-box .contact-box {
  box-shadow: 0px 4px 8px 0px #0000001C;
  /*box-shadow: 0px 4px 4px 0px #FFFFFF33 inset;*/
  backdrop-filter: blur(17.5px);
  padding:40px;
  min-height:290px;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom:20px;
}
.contact-info-box .contact-box .contact-icon {
  margin-bottom:20px;
}
.contact-info-box .contact-box .contact-title {
  margin-bottom:10px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28.8px;
  color:#2c2c2c;
}
.contact-info-box .contact-box  .contact-content {
  width:100%;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24.6px;
  color:#000000;
}
.contact-info-box  .contact-icon-wrap {
  background-color: #e6e6e6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 64px;
  height: 64px;
  padding: 20px;
  display: flex;
  justify-self: center;
}

/*---------- case studies page ----------*/
.case-studies {
  position: relative;
  margin-top: -100px;
  padding-top: 230px;
  padding-bottom:50px;
}


.case-studies:after {
    content: '';
    background: url('/wp-content/uploads/2026/01/home-banner-bg.png');
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
    left: 0px;
}


/*.case-studies:after {*/
/*content: '';*/
/*  background: url(/wp-content/uploads/2026/01/bg-blogs.png);*/
/*  height: 253px;*/
/*  width: 90%;*/
/*  position: absolute;*/
/*  z-index: -1;*/
/*  opacity: 0.3;*/
/*  background-repeat: no-repeat;*/
/*  background-size: auto;*/
/*  top: 0px;*/
/*  left: 50px;*/
/*}*/

.case-studies .cs-title {
font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 58px;
    line-height: 68px;
    letter-spacing: -1.74px;
    text-align: left;
   
}
.case-studies .cs-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 28.8px;
  color: #2c2c2c;
  max-width:80%;
}
.case-studies-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.cs-tag-line {
  background: #000000;
  padding-top:50px;
  padding-bottom:50px;
}
.cs-tag-line h4 {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 58px;
  text-align: center;
  color:#ffffff;
}
.cs-content-section .cs-cnt-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 58px;
  margin-top:30px;
  margin-bottom:30px;
  color:#000000;
}
.cs-content-section p {
  font-family:"Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  color:#000000;
  padding-top:10px;
  padding-bottom:10px;
}
.cs-content-section .read-more {
  font-family:  'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color:#ffffff;
  margin-top:20px;
  margin-bottom:20px;
  color:#000000;
  display: inline-block;
}
.cs-content-section img {
  width:100%;;
  display:block;
  object-fit: cover;
  border-radius: 20px;
  margin-top:20px;
  margim-bottom:20px;
} 
.mc-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 58px;
  text-align: center;
  color:#000000;
}
.mc-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 39px;
  text-align: center;
  color:#000000;
}
.mc-box-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  color:#000000;
}
.mc-box .bg-gradient {
  display:flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-bottom:20px;
}
.mc-box .bg-gradient span {
  background: linear-gradient(279.69deg, #FD7807 0%, #F9B41A 100%);
  height:170px;
  width:170px;
  flex: 0 0 170px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 28px;
  text-align: center;
  border-radius:43px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.os-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 58px;
  text-align: center;
  vertical-align: middle;
  margin-bottom:30px;
}
.solution-box {
box-shadow: 0px -1px 32px 0px #00000017;
padding: 30px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-end;
min-height: 280px;
border-radius: 33px;
background: #ffffff;
}
.solution-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 58px;
  color:#000000;
}
.solution-content {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 39px;
  color:#000000;
  max-width: 70%;
}
.mb-20 {
  margin-bottom:20px !important;
}
.cs-feedback {
  background: #000000;
  padding-top:100px;
  padding-bottom:100px;
}
.cs-feedback-content {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color:#ffffff;
  position: relative;
}
.cs-feedback .top-quote {
  position: absolute;
  top: -70px;
}
.cs-feedback .bottom-quote {
  margin-left: 40px;
  position: absolute;
  bottom: -70px;
}
.margin-top-60px {
  margin-top:70px;
  margin-left:30px;
}
.cs-feedback .cs-fdbk-client-name {
  font-family: "Radio Canada", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color:#ffffff;
  margin-top:30px;

}
.cs-feedback .cs-fdbk-client-designation {
  font-family: "Radio Canada", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color:#ffffff;
}
img.feedback-image {
  max-width: 230px;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
  object-fit: cover;
}
.cs-results .cs-rs-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 58px;
  text-align: center;
  color:#000000;
}
.cs-results .cs-rs-content {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 39px;
  text-align: center;
  color:#000000;
 }
 .cs-results .result-box-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 31px;
  line-height: 30px;
  color:#000000;
  margin-bottom:20px;
 }
.cs-results .result-box-content {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 30px;
  color:#000000;
 }
 .cs-results .result-box > img {
  margin-top: 20px;
 }
 .cs-results .result-box {
  box-shadow: 0px -1px 32px 0px #00000017;
  padding: 50px 30px 50px 30px;
  border-radius: 33px;
  min-height: 320px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.results-row {
  position: relative;
}
.results-row:after {
  left: 50%;
  content: '';
  width: 2px;
  background: #D9D9D9;
  height: 73%;
  position: absolute;
  top: 61px;
}
.result-box:before {
  content: '';
  height: 10px;
  width: 10px;
  position: absolute;
  background: #F89500;
  border-radius: 100%;
}
.result-box.right:before {
  top: 60px;
  left: -2.5rem;
  z-index: 1;
}
.result-box.left:before {
  top: 60px;
  right: -2.65rem;
  z-index: 1;
}
.join-us {
  background: url('/wp-content/uploads/2026/01/873b2b933ddf06bd1a0297801e3ff1c0339a77eb-scaled.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.join-us:before { 
  content: '';
  position: absolute;
  top: 0px;
  left:0px;
  width: 100%;
  height: 100%;
  background: #000000eb;
  z-index: 0;
}
.join-us .container {
  z-index: 1;
  position: relative
}
.ju-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color:#ffffff;
  margin-bottom:20px;
  max-width: 90%;
  margin-left:auto;
  margin-right:auto;
}
.ju-content {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  color:#ffffff;
  margin-bottom:40px;
  max-width: 90%;
  margin-left:auto;
  margin-right:auto;
}
.ju-form .newsletter {
  max-width: 400px;
  margin-left:auto;
  margin-right:auto;
}
.ju-form .newsletter .news-submit {
  border: 1px solid #ffffff;
  background: #fff;
  flex: 0 0 200px;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;

}
.ju-form .newsletter .news-email {
  border: 1px solid #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  flex: 0 0 200px;
  background: transparent;
  color: #fff;
}
.ju-form .newsletter .news-email::placeholder {
  color: #fff;
}

/*---------- about page ---------*/
.about-top {
  position: relative;
  margin-top:-100px;
  padding-top:150px;
  padding-bottom:100px;
}
.about-top:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width:100%;
  height: 100%;
  z-index: 0;
  background: url('/wp-content/uploads/2026/01/Inner-page-bg.png');
  background-repeat: no-repeat;
}
.about-top .container {
  z-index: 1;
  position: relative;
}
.about-top-sub-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color:#FF792E;
  margin-top:30px;
}
.about-top-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 62.4px;
  vertical-align: middle;
  color:#003566;
  margin-bottom:15px;
}
.about-top-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color:#656565;
}
.about-icon-box {
  background: #fff;
  border-radius: 9px;
  margin-top: 20px;
  box-shadow: 10px 8px 34px 16px #0A032E08;
  padding: 30px 20px;
}
.about-icon-content {
  margin-left: 20px;
}
.about-icon-box .icon-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color:#656565;
}
.about-icon-box .icon-title {
  font-family:  "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;;
  line-height: 30px;
  letter-spacing: 0%;
  color:#003566;
}
.handpicked {
  background: rgba(108, 87, 210, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-top-left-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-right:30px;
}
.handpicked-sub-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color:#FF792E;
  max-width:630px;
}
.handpicked-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 62.4px;
  text-align: center;
  color:#003566;
  max-width:630px;
}

.justify-items-center {
  justify-items:center !important;
}
.pickbox-wrapper:nth-child(3n + 1) .pick-box {
  background-color: #FF792E;
  border-radius: 34px;
  padding:30px 0px 0px 30px;
}
.pickbox-wrapper:nth-child(3n + 2) .pick-box {
  background-color: #6C57D2;
  border-radius: 34px;
  padding:30px 0px 0px 30px;
}
.pickbox-wrapper:nth-child(3n + 3) .pick-box {
  background-color: #49DCA2;
  border-radius: 34px;
  padding:30px 0px 0px 30px;
}
.pickbox-wrapper:nth-child(3n + 3) .pick-box .pick-box-content {
  flex: 0 0 40%;
}
.pickbox-wrapper:nth-child(3n + 3) .pick-box .pick-box-image {
  flex: 0 0 60%;
  text-align: left;
  justify-content: end;
  display: flex;
  padding-right:20px;
}
.pick-box {
  margin-bottom:20px;
  height: calc(100% - 20px);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.pickbox-wrapper:nth-child(3n + 3) .pick-box {
  flex-direction: row;
}
.pick-box .pick-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color:#000000;
  padding-right:30px;
}
.pick-box .pick-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color:#000000;
  padding-right:30px;
  max-width: 85%;
}
.pick-box  .read-more {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 30px;
  text-transform: capitalize;
  color:#000000;
  display: inline-block;
  margin-top:15px;
}
img.pick-image {
  border-radius: 21px;
  width: auto;
  margin-top:50px;
  max-width: 100%;
}
@media screen and (min-width:1805px) {
  /*.services .service  .service-description {
    max-width: 58%;
  }*/
}
@media screen and (max-width:1368px) and (min-width:992px) {
  .empowering-ideas .idea-box  .idea-content {
    width:100%;
  }
  .empowering-ideas .idea-box {
    padding:30px;
  }
  .projects .project {
    height:425px;
  }
  
  
  
  
  
  
  .latest-thoughts-title {
    max-width: 335px;
  }
  .empr-ideas-title, .services-section-title, .projects-section-title, .trusted-by-title, .latest-thoughts-title, .cs-title, .ju-title, .about-top-title, .handpicked-title {
    font-size:45px!important;
    line-height:45px!important;
    
  }
}
@media screen and (max-width:1025px) {
  .hero-content h1 {
    font-size: 150px;
  }
  .projects .project {
    height:425px;
  }
  .services .service  .service-description {
    max-width: 100%;
  }
  .services-section-link {
    font-size: 22px;
  }
   .latest-thoughts-title {
    max-width: 335px;
   }
  .empr-ideas-title, .services-section-title, .projects-section-title, .trusted-by-title, .latest-thoughts-title, .cs-title, .latest-thoughts-two-title, .news-title, .ju-title, .about-top-title, .handpicked-title {
    font-size:45px!important;
    line-height:45px!important;
  }
  .bottom-contact .contact-title {
    font-size: 55px;
    line-height: 75.04px;
  }
  .bottom-contact {
    background-position: center center;
  }
  .drawer-content .menu-links .menu-link a {
    font-size: 35px;
  }
  .page-title {
    font-size: 52px;
    line-height: 62px;
  }
  .breadcrumbs .link {
    font-size: 20px;
    line-height: 26px;
  }
  .breadcrumbs .link a {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width:990px) {
  .services .div-full{
    padding-right: calc(1.5rem * .5)!important;
    padding-left: calc(1.5rem * .5)!important;
  }
  .bottom-contact .contact-title {
    font-size: 50px;
    line-height: 65.04px;
  }
  .menu-out-side-left .swap-side {
    margin-left: -20px;
  }
  .footer-main .footer-intro {
    width:90%;
  }
  .blog-title {
    font-size: 50px;
  }
  .single-blog  h1 {
    font-size:60px;
  }
  .single-blog  h2 {
    font-size:58px;
  }
  .single-blog  h3 {
    font-size:54px;
  }
  .single-blog  h4 {
    font-size:44px;
  }
  .single-blog  h5 {
    font-size:26px;
  }
  .single-blog  h6 {
    font-size:20px;
  }
  .drawer-content .menu-links .menu-link a {
    font-size: 30px;
  }
  .latest-thoughts-two-description {
    max-width: 100%;
  }
  .page-title {
    font-size: 45px;
    line-height: 55px;
  }
  .breadcrumbs .link {
    font-size: 20px;
    line-height: 26px;
  }
  .breadcrumbs .link a {
    font-size: 20px;
    line-height: 26px;
  }
  .solution-content {
    max-width: 100%;
  }
  .case-studies .cs-description {
    max-width: 100%;
  }
  .cs-tag-line h4{
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .bottom-cta .cta-box h4 {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 48px;
  }
  .about-top-left-image {
    padding-right:0px;
  }
  .drawer-content .menu-links .menu-link a {
    font-size: 25px;
  }
.pt-sm-50{
  padding-top:50px;
}
.pb-sm-50 {
  padding-bottom:50px;
}
  .hero {
    min-height: 60vh;
    margin-top: -135px;
    padding-top: 110px;
  }
  .hero-content h4 {
    font-size: 30px;
  }
  .hero-content h1 {
    font-size: 60px;
  }

  .header-button a .content {
    display: none;
  }

  .header-button a {
      max-width: fit-content;
  }

  .header .col-md-6 {
    width: 100%;
		order: 1;
    padding-bottom: 5px;
  }
  	
  .header .col-md-3 {
    width: 50%;
    order: 2;
  }

  .hero-content a {
    position: unset;
    margin-top: 25px;
  }

  .marquee {
    overflow: hidden;
    width: 100%;
  }
  .logo-slider .logo-swiper {
    margin-top:20px;
  }
  .latest-thoughts-title {
    max-width: 295px;
    text-align: left !important;
  }
  .empr-ideas-title, .services-section-title, .projects-section-title, .trusted-by-title, .latest-thoughts-title, .cs-title, .os-title, .mc-title, .cs-cnt-title, .cs-title,.latest-thoughts-two-title,.news-title, .about-top-title, .handpicked-title {
    font-size:40px!important;
    line-height:40px!important;
  }
  .newsletter-box .sub-title-1, .newsletter-box .sub-title-2 {
    font-size:28px!important;
    line-height:28px!important;
  }
  .ju-content {
    font-size:22px;
    line-height: 32px;
  }
  .services-section-link {
    line-height:40px;
    font-size: 19px;
  }
  .projects .project {
    height:400px;
  }
  .bottom-contact .contact-title {
    font-size: 40px;
    line-height: 55.04px;
  }
  .menu-out-side-left .swap-side {
    margin-left: 0px;
  }
  .menu-out-side-left .swap-side-2 {
    margin-left: 0px;
  }
  .footer-main .footer-intro {
    width:95%;
  }
  .bottom-contact .contact-form {
    padding-left: 0px;
  }
  .pt-100 {
    padding-top:3rem;
  }
  .pb-100 {
    padding-bottom:3rem;
  }
  .pt-50 {
    padding-top:1.5rem;
  }
  .pb-50 {
    padding-bottom:1.5rem;
  }
  .blog-title {
    font-size: 40px;
  }
  .single-blog  h1 {
    font-size:40px;
  }
  .single-blog  h2 {
    font-size:35px;
  }
  .single-blog  h3 {
    font-size:30px;
  }
  .single-blog  h4 {
    font-size:25px;
  }
  .single-blog  h5 {
    font-size:20px;
  }
  .single-blog  h6 {
    font-size:18px;
  }
  .blog-contant {
    padding-bottom: 10px;
  }
  .hero h1 {
    margin-left: -3px;
  }
  .page-title {
    font-size: 35px;
    line-height: 45px;
  }
  .breadcrumbs .link {
    font-size: 20px;
    line-height: 26px;
  }
  .breadcrumbs .link a {
    font-size: 20px;
    line-height: 26px;
  }
  .mc-box {
    margin-bottom:40px;
  }
  .cs-description {
    margin-bottom:40px;
  }
  .cs-tag-line h4{
    font-size: 35px;
    line-height: 45px;
  }
  .results-row:after {
    display: none!important;
  }
  .result-box {
    margin-bottom:20px;
  }
  .result-box:before {
    display: none!important;
  }
  .cs-results .result-box {
    margin-left:0px!important;
    margin-right:0px!important;
  }
  .pickbox-wrapper:nth-child(3n + 3) .pick-box {
    display: block !important;
  }
  .pickbox-wrapper:nth-child(3n + 3) .pick-box .pick-box-content {
    flex: 0 0 100%;
  }
  .pickbox-wrapper:nth-child(3n + 3) .pick-box .pick-box-image {
    flex: 0 0 100%;
  }
  .menu-button {
    padding: 10px 20px;
  }
}

@media (max-width: 580px) {
  .hero-content h1 {
    font-size: 35px;
  }
  .latest-thoughts-title .lastpart {
    right: 21%;
  }
  .latest-thoughts-title {
    max-width: 255px;
    text-align: left !important;
  }
  .empr-ideas-title, .services-section-title, .projects-section-title, .trusted-by-title, .latest-thoughts-title, .cs-title, .os-title, .mc-title, .cs-cnt-title, 
  .cs-title,.latest-thoughts-two-title,.news-title, .ju-title, .about-top-title, .handpicked-title {
    font-size:35px!important;
    line-height:35px!important;
  }
    .cs-tag-line h4{
    font-size: 30px;
    line-height: 40px;
  }

  .ju-content {
    font-size:20px;
    line-height: 30px;
  }
  .newsletter-box .sub-title-1, .newsletter-box .sub-title-2 {
    font-size:25px!important;
    line-height:25px!important;
  }
  .bottom-cta .cta-box h4  {
    font-size:30px!important;
    line-height:30px!important;
    margin-bottom:30px;
  }
  .services-section-link {
    line-height:35px;
  }
  .projects .project {
    height:375px;
  }
  .trusted-by-box-wrapper .trusted-by-box-outer:nth-child(1) .trusted-by-box {
    transform: rotate(0deg);
    transform-origin: unset;
  }
  .trusted-by-box-wrapper .trusted-by-box-outer:nth-child(2) .trusted-by-box {
    transform: rotate(0deg);
    transform-origin: unset;
  }
  .trusted-by-box-wrapper .trusted-by-box-outer:nth-child(3) .trusted-by-box {
    transform: rotate(0deg);
    transform-origin: unset;
  }
  .trusted-by-box-wrapper .trusted-by-box-outer:nth-child(4) .trusted-by-box {
    transform: rotate(0deg);
    transform-origin: unset;
  }
  .pt-100 {
    padding-top:3rem;
  }
  .pb-100 {
    padding-bottom:3rem;
  }
  .pt-50 {
    padding-top:1.5rem;
  }
  .pb-50 {
    padding-bottom:1.5rem;
  }
  .footer-main .footer-icon-box {
    margin-bottom: 10px;
  }
  .pt-xs-0 {
    padding-top:0px;
  }
  .pb-xs-0 {
    padding-bottom:0px;
  }
  .pt-xs-100 {
    padding-top:100px;
  }
  .bottom-contact .contact-form {
    padding-left: 0px;
  }
  .hero h1 {
    margin-left: 0px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter .news-email {
    flex: 0 0 100%;
  }
  .newsletter .news-submit{
    flex: 0 0 100%;
    padding: 15px 10px 13px 10px;
    margin-top: 10px;
  }
  .ju-form .newsletter-form {
    flex-direction: column;
  }
  .ju-form .newsletter .news-email {
    flex: 0 0 100%;
  }
  .ju-form .newsletter .news-submit{
    flex: 0 0 100%;
    padding: 15px 10px 13px 10px;
    margin-top: 10px;
  }
  .menu-button {
    padding: 10px 10px;
    gap:10px;
  }
  .menu-button .text {
    /*display:none;*/
    font-size: 14px!important;
  }
}




/********Single case****/


.cs-feedback img.feedback-image {
    max-width: 230px;
    width: 230px;
    height: 230px;
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
}

.project h4{
    z-index: 6;
}



.projects .project h4 a {
    color: #fff;
    position: relative;
    z-index: 5;
}



.project {
    position: relative;
    overflow: hidden;
}

.project-link {
    position: relative;
    display: block;
}

.project img {
    width: 100%;
    height: auto;
    display: block;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover effect (desktop) */
.project:hover .project-overlay {
    opacity: 1;
}

/* Optional: title color change on hover */
.project:hover h4 a {
    color: #fff;
}




.single_case_study p {
    font-family: "Urbanist", sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 28.8px !important;
}




/****************Menu bg*********/


div#drawer-content {
    background: url(https://air.squareaero.in/wp-content/uploads/2026/01/home-banner-bg.png);
    background-size: cover;
}

.drawer-content .menu-links .menu-link a{
	
	color:#000 !important;
	position: relative;
	
}



.drawer-content .menu-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Hover animation */
.drawer-content  .menu-link a:hover::after {
    transform: scaleX(1);
}



.main_wrapper_home .latest-thought-box-outer:last-child a {
    color: #fff;
}



/**********Single Service****/

body{
    overflow-x: hidden;
}

.single_service_hero{
position: relative;
    margin-top: -100px;
    padding-top: 200px;
    padding-bottom: 100px;
}

.single_service_hero:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url(/wp-content/uploads/2026/01/Inner-page-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
}


.single_service_hero .container{
    position: relative;
    z-index: 1;
}

.single_service_hero h1{
    font-size: 50px;
    font-family: Urbanist;
}

.single_service_hero p{
    font-size: 20px;
    font-family: Urbanist;
}

.single_service_hero .btn-two {
    display: flex;
    gap: 20px;
}

.single_service_hero .btn1{

    background: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    transition: fill 0.3s ease;
      border: 1px solid #000;

}



.single_service_hero .btn1 svg{
    fill:#fff;
}


.single_service_hero .btn1:hover {
    background: transparent;
    color: #000;
}

.single_service_hero .btn1:hover svg{
    fill:#000;
}


.single_service_hero .btn2{

    background: transparent;
    color: #000;
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    transition: fill 0.3s ease;
      border: 1px solid #000;

}


.single_service_hero .btn2:hover {
    background: #000;
    color: #fff;
}

.single_service_hero .btn2:hover svg{
    fill:#fff;
}

/***********/

.single_service_wrapper {
    display: flex;
    height: 400px;
    overflow: hidden;
    gap: 5px;
}

/* default state */
.single_service_wrapper .box {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.6s ease;
}

/* dark overlay */
.single_service_wrapper .box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* content */
.single_service_wrapper .content {
    position: relative;
    z-index: 2;
}

.single_service_wrapper h4,
.single_service_wrapper p {
    color: #fff;
    font-family: Urbanist;
}

/* 🔥 HOVER EFFECT */
.single_service_wrapper:hover .box {
    flex: 0.8;
}

.single_service_wrapper .box:hover {
    flex: 1.8;
}


/*.single_service_wrapper {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.single_service_wrapper .box {*/
/*    height: 350px;*/
/*    width: 33.3%;*/
/*    padding: 40px;*/
/*    display: flex;*/
/*    align-items: end;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    position: relative;*/
/*}*/


/*.single_service_wrapper .box:after {*/
/*    content: "";*/
/*    background: #000;*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    left: 0pc;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    opacity: 0.5;*/
/*}*/


/*.single_service_wrapper .content {*/
/*    position: relative;*/
/*    z-index: 5;*/
/*}*/


/*.single_service_wrapper .content h4{*/
/*    color: #fff;*/
/*}*/

/*.single_service_wrapper .content p{*/
/*    color: #fff;*/
/*}*/



.single_service_faq {
    padding: 40px 0px;
}



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

.single_service_faq .faq-item {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  height: fit-content;
}

.single_service_faq .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.single_service_faq .faq-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single_service_faq .faq-number {
  background: #ff7a00;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.single_service_faq .faq-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.single_service_faq .faq-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.single_service_faq .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.single_service_faq .faq-content p {
  margin-top: 14px;

  color: #555;
  line-height: 1.6;
}

/* ACTIVE STATE */
.single_service_faq .faq-item.active .faq-content {
  max-height: 200px;
}

.single_service_faq .faq-item.active .faq-icon {
  transform: rotate(45deg);
}


.single_service_faq h4{
    font-family: Urbanist;
    font-size:32px;
}

.single_service_faq h3{
    
        font-family: Urbanist;
        font-size: 20px;
}

.single_service_faq p{
    
        font-family: Urbanist;
        font-size:17px;
}

/* MOBILE */
@media (max-width: 768px) {
  .single_service_faq .faq-grid {
    grid-template-columns: 1fr;
  }
}








/* SECTION */
.single_testimonial_section {
  background-color: #fbf5ea; /* light beige */
  padding: 90px 0;
}



/* TESTIMONIAL BOX */
.single_testimonial_section .testimonial_box {
  position: relative;
  max-width: 820px;
  text-align: center;
      margin: 0 auto;
}

/* HEADING */
.single_testimonial_section h3 {
  font-size: 40px;
  font-weight: 600;
  font-family: Urbanist;
  color: #111;
  margin-bottom: 18px;
}

/* CONTENT */
.single_testimonial_section p {
  font-size: 20px;
  font-family: Urbanist;
  line-height: 1.7;
  color: #333;
}

/* QUOTES */
.single_testimonial_section .quote {
  position: absolute;
  font-size: 70px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.single_testimonial_section .quote-left {
         top: 0px;
    left: -25px;
}

.single_testimonial_section .quote-right {
bottom: 20px;
    right: -55px;
}
.single_testimonial_section .testimonial_box img {
    width: 35px;
}

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

  .single_testimonial_section h3 {
    font-size: 18px;
  }

  .single_testimonial_section p {
    font-size: 14px;
  }

  .single_testimonial_section .quote-left {
    left: 10;
  }

  .single_testimonial_section .quote-right {
    right: 10;
  }
}


/* SECTION */
.service_single_content {
  padding: 80px 0;
}


/* GRID */
.service_single_content .content-grid {
  display: grid;
  grid-template-columns: 35% 60%;
  gap: 60px;
}

/* LEFT PANEL */
.service_single_content .content-left {
      flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    margin-left: 0px;
    margin-right: 5rem;
    padding-top:0rem;
    display: flex;
    position: sticky;
    top: 20px;


}


.service_single_content .content-left .logo-box {
    margin-bottom: 20px;
}

.service_single_content .logo-box img {
  max-width: 220px;
}

/* RIGHT CONTENT */
.service_single_content .content-right {
 
}

.service_single_content .content-block {
  margin-bottom: 80px;
}

.service_single_content h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: Urbanist;
}

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

.service_single_content hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 24px;
}

.service_single_content p {
font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
    font-family: 'Urbanist';
    font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service_single_content .content-grid {
    grid-template-columns: 1fr;
  }

  .service_single_content .content-left {
    position: relative;
    min-height: 260px;
    top: auto;
  }
}


.single_service_bottom_section {
  padding: 0;
  padding-bottom:50px;
}

.single_service_bottom_section .container {
  max-width: 100%;
  padding: 0;
}

.single_service_bottom_section .bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 420px;
}

/* COMMON CARD */
.single_service_bottom_section .bottom-card {
  padding: 50px 40px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* COLORS */
.bottom-card.orange { background: #ff7a00; }
.bottom-card.black { background: #000; }
.bottom-card.purple { background: #8b5edb; }

/* TOP LINE */
.bottom-card .card-line {
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* NUMBER */
.bottom-card .card-number {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* HEADING */
.bottom-card h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: auto;
}

/* BUTTON */
.bottom-card .card-btn {
  margin-top: 40px;
  align-self: flex-start;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.bottom-card .card-btn:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .single_service_bottom_section .bottom-grid {
    grid-template-columns: 1fr;
  }

  .bottom-card {
    min-height: 300px;
  }
  
  
}
/* RESPONSIVE */
@media (max-width: 767px) {

.single_service_wrapper {
    flex-direction: column;
}

.single_service_wrapper .box{
    width: 100%;
    padding: 15px;
}

.single_service_hero .btn-two {
    flex-direction: column;
}

.single_testimonial_section .testimonial_box img {
    width: 20px;
}



}


/***************Testimonials Page**********/



.testimonials_page {
  position: relative;
  margin-top:-100px;
  padding-top:150px;
  padding-bottom:100px;
}
.testimonials_page:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width:100%;
  height: 100%;
  z-index: 0;
  background: url('/wp-content/uploads/2026/01/Inner-page-bg.png');
  background-repeat: no-repeat;
}

.testimonials_page .container {
  z-index: 1;
  position: relative;
}


.testimonials_page .trusted-by-box.d-flex.flex-column.justify-content-center {
    transform: rotate(0deg) !important;
    height: 420px;
}


.testimonials_page .top-bar {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}


.testimonials_page .swiper-wrapper{
    padding-bottom: 50px;
}


.testimonials_page .trusted-by-box .trusted-by-content{
    margin: 25px 0px !important;
}


.testimonials_page .swiper-pagination-bullet{
   height: 12px;
   width: 12px;
}


.testimonials_page .swiper-pagination-bullet.swiper-pagination-bullet-active{
   height: 12px;
   width: 12px;
   background: #fd7807;
}

.testimonials_page .page-title {
    font-size: 42px;
    max-width: 70%;
    line-height: 48px;
    margin: 0 auto;
    
    padding-bottom: 30px;
    
}


/******The Things We Do ********/


.things-we-do {
    padding: 60px 0;
    position: relative;
}


.things-we-do .container {
    position: relative;
    z-index: 1;
}



section.things-we-do:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('/wp-content/uploads/2026/01/emp.png');
    background-repeat: no-repeat;
}


.things-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.things-desc {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28.8px;
}

.things-box {
    position: relative;
    padding: 40px;
     min-height: 470px;
    border: 1px solid #e1e1e1;
    background: #fff;
}


.things-box h4 {
    margin-bottom: 20px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 28.6px;
    letter-spacing: -0.72px;
}

.things-box p {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28.8px;
    margin-bottom: 20px;
}


.things-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
 font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 18px;
    
}

.things-number {
    position: absolute;
    bottom: 15px;
       left: 20px;
    font-size: 170px;
    color: #e1e1e1;

    line-height: 1;
    font-weight: 200;
}

.box-3 span.things-number {
    right: 20px !important;
    left: auto;
}


/* background colors like image */
.box-1 { background: #f6f4fc;; }
.box-2 { background:#ffffff; }
.box-3 { background:#fbeeed }


@media(max-width:768px){
    .things-title { font-size:32px; }
    
.things-box {
    position: relative;    padding: 20px 20px;
    min-height: 490px;
}



}





/***team Section**/




.meet-the-team {
  padding: 100px 0;
}


.container.team-grid-section {
    max-width: 100%;
    padding: 40px;
}




.team-tag {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    line-height: 28.8px;
        display: block;
    color: #fd7807;
    text-transform: uppercase;
    font-size: 16px;
}


.team-desc {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28.8px;
}



.team-card {
    background: #f6f6f6;
    height: fit-content;
    padding: 30px;
    max-width: 360px;
    border: 1px solid #dddddd;
}


.team-card h3 {
    margin-bottom: 10px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 30.6px;
    letter-spacing: -0.72px;
}


.team-card p {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28.8px;
    margin-bottom: 15px;
}



.team-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
}

.team-item {
  overflow: hidden;

}

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

/* 1st column – big */
.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* 2nd column – 2 small */
.item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.item-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 3rd column – small + card */
.item-4 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}


.team-item {
  position: relative;
  overflow: hidden;   /* important: image bahar nahi niklegi */

}

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

/* hover zoom */
.team-item:hover img {
  transform: scale(1.08);
}



/* CARD */
.team-card {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: #f6f6f6;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 4th column – big */
.item-5 {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

/* 5th column – small center */
.item-6 {
  grid-column: 5 / 6;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
}
.item-6 img {
  height: 50%;
}

/* Responsive */
@media (max-width: 991px) {
  .team-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .item-1,
  .item-5 {
    grid-column: span 2;
  }

  .item-6 {
    grid-column: span 2;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .team-masonry {
       display: flex;
    flex-direction: column;
  }

  .team-item,
  .team-card {
    grid-column: 1;
  }
}




/******.our-clients******/


.our-clients {
  padding: 40px 0;
}

.clients-title {
    text-align: center;
    font-size: 40px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: -1.74px;
    margin-bottom: 30px;

}

/* horizontal row */
.clients-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.clients-slider::-webkit-scrollbar {
  display: none;
}

.client-card {
  min-width: 180px;
  height: 120px;
  background: #fff;
 border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
    box-shadow: 0 10px 25px rgb(0 0 0 / 2%);
  transition: transform 0.3s ease;
  
      border: 1px solid #e1e1e1;
}

.client-card img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}


.clients-wrapper {
  overflow: hidden;
}

.clients-slider {
  display: flex;
  width: max-content;
  animation: scroll-ltr 40s linear infinite;
}

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


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





