@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap");
/*---------------------------- General Properties start -----------------------------------*/
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* text-transform: capitalize; */
  /* transition: all 0.2s linear; */
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.typed-text,
.hero-tagline,
.section-head h1,
.project-section-head h4,
.testimonial-section-head h2,
.testimonial-meta h3,
.team .team-grid .card .info h3,
.pt-5.pb-5 .item h6,
.project-card .face.face1 .content h3 {
  font-family: "Manrope", sans-serif;
}

html {
  font-size: 62.5%;

  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
/*---------------------------- General Properties end -----------------------------------*/

/*---------------------------- Loader start -----------------------------------*/
/* ===== Loader → fly into header ===== */
:root {
  --bz-bg: #0b1b22;          /* loader backdrop tint */
  --bz-header-fade: 320ms;
  --bz-fly: 600ms;           /* fly duration */
  --bz-loader-size: 120px;
  --white: #fff;
  --green: #4caf50;
  --blue: #2896f3;
  --yellow: #fbc107;
  --red: #f55153;
  --transition-duration: 0.25s;   /* loader logo size */
}
/* keep your header fixed; just fade it in after animation */
.header { opacity: 0; transition: opacity var(--bz-header-fade) ease; }
.header.bz-visible { opacity: 1; }

/* overlay */
.bz-loader{
  position:fixed; inset:0; display:grid; place-items:center;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 450px at 50% 120%, rgba(255,255,255,.05), transparent 60%),
    var(--bz-bg);
  z-index:9999;
}

/* subtle idle motion while waiting */
@keyframes bz-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes bz-float { 0%,100%{translate:0 0} 50%{translate:0 -6px} }

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .bz-loader-logo{ animation:none; }
  .header{ transition:none; }
}

/* .bz-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
} */

.bz-loader-logo {
  background-image: url("../images/benzaiten3_circle.png");
  height: 150px;
  width: 150px;
  background-size: cover;
  border-radius: 50%;
  z-index: 2;
  transform: scale(0.5);  /* start smaller */
  opacity: 0.7;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.bz-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.bz-loader-logo.zoom-in {
  transform: scale(1);
  opacity: 1;
}

 .orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 4px solid blueviolet;    
  border-radius: 50%;
  animation: spin 6s linear infinite;  
 }

  @keyframes spin {
  0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
  25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
  50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
  100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/*---------------------------- Loader end -------------------------------------*/


/*---------------------------- Header start -----------------------------------*/
 .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  position: fixed;
}

.header .logo img {
  width: 130%;
  /* height: 3rem; */
  height: 50px; 
  top: 0;
  left: 0;
}   

.header .logo {
  position: relative;
  top: 0; 
  left: 2rem;
  padding: 0.8rem 1.4rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(8, 25, 43, 0.88), rgba(8, 25, 43, 0.45));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* z-index: 101;   */
}
/* Initial State: For the transparent navbar background */
/*
 * The Ribbon Container
 * This will have the background, blur, and glow effect.
 */
/* .header .logo {
  position: relative;
  top: -10px; 
  padding: 3px 10px; 
  background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 8px;

  box-shadow:
    0 0 8px rgba(0, 191, 255, 0.7),
    0 0 15px rgba(0, 191, 255, 0.5);

  z-index: 101;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: all 0.3s ease-in-out;
} */

/*
 * The Logo Image
 * This must be fully opaque and sit on top of the glowing ribbon.
 */
/* .header .logo img {
  max-width: 120px; 
  height: auto;
  display: block;
  opacity: 1; 
  filter: none;
} */

/*
 * When the navbar is scrolled and the color changes.
 * The glow should change color to contrast with the dark background.
 */
/* .header.scrolled.logo {
  background-color: rgba(63, 37, 37, 0.2); 
  box-shadow: 
    0 0 8px rgba(255, 255, 255, 0.7), 
    0 0 15px rgba(255, 255, 255, 0.5);
} */


/* .header .logo img {
  width: 130%;
  height: 3rem;
  transform: translateY(-20px); 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
  border-radius: 5px; 
} */

.header .navbar ul {
  
  list-style-type: none;
  display: flex;
  align-items:center;
  justify-content: space-around;
}

.header .navbar ul li {
  margin: 0 1.5rem;
}

.header .navbar ul li a {
  font-size: 2rem;
  color: #fff;
}
/* New: Change the shadow background when the header has the .white-shadow-hover class */
.header.white-shadow-hover .tab_section a:hover:before,
.header.white-shadow-hover .tab_section a:focus:before,
.header.white-shadow-hover .tab_section a:active:before {
  /* This rule specifically overrides the background for the shadow */
  
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 80%);
}

.header .logo i {
  padding: 0.5rem;
}

.header .fa-bars {
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
  display: none;
}
.tab_section a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

/* Link color and transform on hover/focus/active */
.tab_section a:hover, .tab_section a:focus, .tab_section a:active {
  
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  color: #00bfff;
  text-decoration: none;
}

/* Base styles for the shadow pseudo-element (initially hidden) */
.tab_section a:before {
  
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  /* Default background is black */
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

/* Hover/focus/active state for the shadow pseudo-element */
.tab_section a:hover:before, .tab_section a:focus:before, .tab_section a:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
/* Responsive Navbar */
/* Enhanced Mobile Navbar (place after your normal media query!) */

/* Enhanced Mobile Navbar (place after your normal media query!) */
@media (max-width: 768px) {
  .header .navbar {
    position: absolute; /* changed from absolute for overlay look */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header .navbar.active {
    transform: translateX(0);
  }
  .header .navbar ul {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    width: 90vw; 
    max-width: 380px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
  }
  .header .navbar ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.88);
    position: relative;
    transition: background 0.2s;
  }
  .header .navbar ul li:not(:last-child):after {
    content: "";
    display: block;
    height: 1px;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    position: absolute;
    left: 10%;
    bottom: 0;
  }
  .header .navbar ul li a {
    display: block;
    padding: 2.2rem 0 2.2rem 0;
    font-size: 2.2rem;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
  }
  .header .navbar ul li a:hover, 
  .header .navbar ul li a:focus {
    color: #1976d2;
    background: rgba(25, 118, 210, 0.07);
  }
  /* Optional: Soft shadow to the menu on open */
  .header .navbar {
    box-shadow: 0 0 28px rgba(0,0,0,0.09), 0 4px 40px rgba(25,118,210,0.09);
  }
  /* Hamburger (X) icon z-index, always on top */
  .header .fa-bars {
    z-index: 1100;
    color: #1976d2;
    border-radius: 100px;
    box-shadow: 0 1px 7px rgba(25,118,210,0.08);
    padding: 0.6rem 0.8rem;
    font-size: 2.8rem;
    display: block;
    position: fixed;
    top: 2rem;
    right: 2.2rem;
    transition: color 0.2s, background 0.2s;
  }
  .header .fa-bars.fa-times {
    color: #e53935;
    /* background: #fff; */
  }
}

/*---------------------------- Header end --------------------------------------*/

/*---------------------------- Home start -----------------------------------*/
/*-----type writter effect start----*/
.type-container {
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  padding: 1.2rem 2.4rem;
  margin-bottom: 1rem;
}
.typed-text{
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.6rem, 3vw, 4.2rem);
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #8fd3ff;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}
/* Blink animation */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/*-----type writter effect end----*/

/*-------wave effect start-----------*/
.home .wave {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 11rem;
  width: 100%;
  background: url(../images/wave.png);
  background-size: 100rem 11rem;
  animation: waves 8s linear infinite;
  background-repeat: repeat-x;
}

.home .wave2 {
  animation-direction: reverse;
  animation-duration: 6s;
  opacity: 0.3;
}

.home .wave3 {
  animation-duration: 4s;
  opacity: 0.5;
}

@keyframes waves {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100rem;
  }
}
/*-------wave effect end-----------*/
.home {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
  z-index: 1;
}

/* Pseudo-element for background image with animation */
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image:
    linear-gradient(110deg, rgba(4, 20, 37, 0.92) 0%, rgba(4, 20, 37, 0.78) 28%, rgba(8, 33, 58, 0.45) 52%, rgba(8, 33, 58, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 18, 31, 0.5) 0%, rgba(6, 18, 31, 0.12) 38%, rgba(6, 18, 31, 0.72) 100%),
    url(../images/hero_image1.png);
  background-size: cover;
  background-position: center;
  animation: scale 25s forwards infinite;
  z-index: -1;
}

.home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(0, 191, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.08), transparent 18%);
  z-index: -1;
}

@keyframes scale {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.home h1 {
  color: #fff;
  font-size: 5.5rem;
  animation: moveBanner 1s 0.5s forwards;
}

.home h2 {
  color: #fff;
  font-size: clamp(3.8rem, 5vw, 5.8rem);
  max-width: 72rem;
  line-height: 1.28;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: moveBanner 1s 0.5s forwards;
}

@keyframes moveBanner {
  0% {
    transform: translateY(40rem) rotateY(-20deg);
  }
  100% {
    transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

/*---------------------------- Home end --------------------------------------*/
/*----------------------------About Us start ------------------------------------------------*/
.heading,
.clients .section-header h2,
.section-head h1,
.testimonials .section-header h2,
.section-head-1 h4 {
  margin: 2rem;
  padding-top: 6rem;
  display: inline-block;
  font-size: 3.5rem;
  color: #002e5f;
  position: relative;
  letter-spacing: 0.2rem;
}

.heading::before,
.heading::after,
.clients .section-header h2::before,
.clients .section-header h2::after,
.section-head h1::before,
.section-head h1::after,
.testimonials .section-header h2::before,
.testimonials .section-header h2::after,
.section-head-1 h4::before,
.section-head-1 h4::after {
  content: "";
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top: 0.4rem solid #002e5f;
  border-left: 0.4rem solid #002e5f;
}

.faq .heading::before,
.faq .heading::after {
  border-top: 0.4rem solid #00bfff;
  border-left: 0.4rem solid #00bfff;
}

.heading::before,
.clients .section-header h2::before,
.section-head h1::before,
.testimonials .section-header h2::before,
.section-head-1 h4::before {
  top: 5.8rem;
  left: -2rem;
}

.heading::after,
.clients .section-header h2::after,
.section-head h1::after,
.testimonials .section-header h2::after,
.section-head-1 h4::after {
  bottom: -0.5rem;
  right: -2rem;
  transform: rotate(180deg);
}

.row .btn {
  outline: none;
  border: none;
  border-radius: 5rem;
  background: white;
  border-style: groove;
  border-color: #002e5f;
  font-size: 1.5rem;
  cursor: pointer;
  height: 3.5rem;
  width: 15rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}

.communicate .btn {
  outline: none;
  border: none;
  border-radius: 5rem;
  background: white;
  border-style: groove;
  border-color: #002e5f;
  font-size: 1.5rem;
  cursor: pointer;
  height: 3.5rem;
  width: 15rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}

.row .btn:hover {
  letter-spacing: 0.1rem;
  opacity: 0.9;
  color: white;
  background: #002e5f;
}

.communicate .btn:hover {
  letter-spacing: 0.1rem;
  opacity: 0.9;
  color: white;
  background: #00bfff;
}

/* loader start */




.about {
  min-height: 55vh;
  width: 100vw;
  top: -3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 10rem;
}

.about .row {
  line-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4rem;
}

.about .row .content {
  text-align: center;
}

.about .row .content h3 {
  font-size: 3rem;
  color: black;
}

.about .row .content p {
  font-size: 2rem;
  color: #333;
  padding: 1rem 0;
}

.about-scroll-cue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin-top: 1.2rem;
  border-radius: 50%;
  text-decoration: none;
}

.about-scroll-cue::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.28), rgba(0, 191, 255, 0.05) 68%, transparent 72%);
  filter: blur(8px);
  animation: aboutArrowGlow 2s ease-in-out infinite;
}

.about-scroll-cue span {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border-right: 0.35rem solid #00bfff;
  border-bottom: 0.35rem solid #00bfff;
  transform: rotate(45deg);
  animation: aboutArrowSlide 1.8s ease-in-out infinite;
}

@keyframes aboutArrowSlide {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.75;
  }
  50% {
    transform: translateY(0.8rem) rotate(45deg);
    opacity: 1;
  }
}

@keyframes aboutArrowGlow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}
.pt-5 .container .row .section-head p {
  font-size: 2rem;
  color: #333;
  padding: 1rem 0;
}
.section-head {
  margin-bottom: 60px;
  text-align: center;
  margin-top: 0;
}
.section-head p {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.pt-5.pb-5 .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.pt-5.pb-5 .section-head h1 {
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.pt-5.pb-5 .section-head p {
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 0.8rem;
}
.item {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); /* gradient */
  text-align: center;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;   /* rounded corners */
  overflow: hidden;      /* ensures bg + shadow follow corners */
  margin-bottom: 30px;
  margin-top: -2rem;
  border: none;          /* remove the gray border */
  transition: all 0.5s ease;
}

.item:hover {
  transform: translateY(10px) scale(1.05); /* smooth float + zoom */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.item h6 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2f2f2f;
  transition: color 0.3s ease;
}

.item p {
  font-size: 15px;
  line-height: 26px;
  transition: color 0.3s ease;
}

.item:hover h6,
.item:hover p {
  color: #2b6777;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: yellow;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.item:hover .icon {
  transform: scale(1.2); /* zoom icon on hover */
}


.counters {
  background-image: url(../images/img2.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  padding: 40px 20px;
}

.counters .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  text-align: center;
}

.counters i {
  color: #fff;
  margin-bottom: 5px;
}

.counters .counter {
  font-size: 45px;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .counters .container {
    grid-template-columns: 1fr;
  }

  .counters .container > div:nth-of-type(1),
  .counters .container > div:nth-of-type(2) {
    border-bottom: 1px lightskyblue solid;
    padding-bottom: 20px;
  }
}
.section-head-1 {
  margin-bottom: 60px;
  background-size: 200%;
  background-position: left;
}
.section-head-1 p {
  color: #333;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.project-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.project-section-head h4 {
  margin-top: 0;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.project-section-head p {
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 0.8rem;
}
.item {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7 ease 0s;
}
.item:hover {
  background-image: linear-gradient(to bottom right, #66ffcc 0%, #ffccff 100%);
  background-position: right;
  transition: background-position 3s;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.7s ease 0s;
}
.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.item:hover h6,
.item:hover p {
  color: #2b6777;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  /* color: yellow; */
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}
.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.2);
  /* color: #52ab98; */
  color: #737373;
}
.item .feature_box_col_two {
  background: rgba(116, 165, 240, 0.2);
  /* color: #52ab98; */
  color: #737373;
}
.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  /* color: #52ab98; */
  color: #737373;
}
.item p {
  font-size: 15px;
  font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 26px;
}
.item h6 {
  margin-bottom: 20px;
  font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #2f2f2f;
}

.communicate {
  text-align: center;
  align-items: center;
  background-image: url(../images/img3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  min-height: 35vh;
  padding: 40px 20px;
}

.communicate h3 {
  margin-top: 3rem;
  font-size: 3rem;
}

.communicate p {
  font-size: 2rem;
}

.testimonials {
  position: relative;
  padding: 90px 0 70px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 191, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

.testimonial-section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-section-head h2 {
  margin-top: 0;
}

.testimonial-section-head p {
  font-size: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonials .testimonial-item {
  position: relative;
  margin: 1.5rem;
  padding: 0.8rem;
}

.testimonials .testimonial-text {
  position: relative;
  width: 100%;
  min-height: 34rem;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.6rem 2.4rem 2.2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 46, 95, 0.08);
  border-radius: 2.2rem;
  box-shadow: 0 20px 45px rgba(10, 33, 58, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials .testimonial-item:hover .testimonial-text {
  transform: translateY(-0.6rem);
  box-shadow: 0 26px 54px rgba(10, 33, 58, 0.14);
}

.testimonials .quote-mark {
  color: #4f84c4;
  font-size: 2.8rem;
  line-height: 1;
}

.testimonials .quote-start {
  margin-bottom: 1rem;
}

.testimonials .quote-end {
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
}

.testimonials .testimonial-text p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  line-height: 1.65;
  font-style: italic;
  color: #546579;
}

.testimonials .testimonial-person {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.testimonials .testimonial-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 33, 58, 0.16);
}

.testimonials .avatar-saffron {
  background: linear-gradient(135deg, #ff8a00, #ff5e62);
}

.testimonials .avatar-indigo {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.testimonials .avatar-teal {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.testimonials .avatar-rose {
  background: linear-gradient(135deg, #db2777, #fb7185);
}

.testimonials .avatar-sky {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.testimonials .testimonial-meta h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #10253c;
}

.testimonials .testimonial-meta h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: #7d8b98;
  text-transform: none;
  letter-spacing: 0.03em;
}

.testimonials .owl-stage {
  display: flex;
}

.testimonials .owl-item {
  display: flex;
}

.testimonials .owl-item.active.center .testimonial-text {
  transform: translateY(-0.8rem);
  box-shadow: 0 28px 56px rgba(10, 33, 58, 0.16);
}

.testimonials .owl-item.active.center .quote-mark {
  color: #00a3d9;
}

.testimonials .owl-dots {
  margin: 0;
  padding-top: 1rem;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: rgba(79, 132, 196, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.testimonials .owl-dot.active {
  transform: scale(1.18);
  background-color: #4f84c4;
}

@media (max-width: 575px) {
  .testimonials .testimonial-text {
    min-height: auto;
    max-width: 100%;
    padding: 2.3rem 2rem;
  }

  .testimonials .testimonial-text p {
    font-size: 1.65rem;
  }

  .testimonials .quote-mark {
    font-size: 2.4rem;
  }
}

.clients {
  position: relative;
  padding: 90px 0;
  text-align: center;
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.clients .section-header p {
  padding-bottom: 10px;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 2rem;
  color: #333;
  padding: 1rem 0;
}

.clients img {
  max-width: 100%;
  opacity: 1;
  transition: 0.3s;
  padding: 15px 0;
}

.clients img:hover {
  opacity: 0.5;
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

.clients .owl-dot.active {
  background-color: #4f84c4;
}

.team {
  min-width: 100vw;
  min-height: 95vh;
  text-align: center;
  background-color: #222;
}

.team .heading {
  color: #00bfff;
}

.team .heading::before,
.team .heading::after {
  border-color: #00bfff;
}
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.team .team-grid .card {
  min-height: 42rem;
  width: 25rem;
  background-color: #fff;
  text-align: center;
  margin: 5rem 5rem;
  position: relative;
  overflow: hidden;
  -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
  transition: all 0.6s ease-out;
}

.team .team-grid .card:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

.team .team-grid .card .image {
  margin: 1rem 0;
  padding-top: 4rem;
}

.team .team-grid .card .image img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  border: 0.5rem solid #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.team .team-grid .card .image .team-symbol {
  height: 13rem;
  width: 13rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5rem solid #fff;
  box-shadow: 0 1.2rem 2.6rem rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.team .team-grid .card .image .team-symbol::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.team .team-grid .card .image .team-symbol i {
  font-size: 4.2rem;
  color: #fff;
  z-index: 1;
}

.team .team-grid .card .image .symbol-architecture {
  background: linear-gradient(135deg, #0f6eff, #00b3ff);
}

.team .team-grid .card .image .symbol-cloud-data {
  background: linear-gradient(135deg, #5b63ff, #7f8dff);
}

.team .team-grid .card .image .symbol-ai {
  background: linear-gradient(135deg, #7b35d1, #b05cff);
}

.team .team-grid .card .image .symbol-security {
  background: linear-gradient(135deg, #0f766e, #18b39a);
}

.team .team-grid .card .image .symbol-mobile-ui {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.team .team-grid .card .image .symbol-marketing {
  background: linear-gradient(135deg, #e63973, #ff6b9b);
}

.team .team-grid .card .info h3 {
  font-size: 2rem;
  color: #333;
}

.team .team-grid .card .info span {
  font-size: 1.6rem;
  color: #00bfff;
  display: block;
  padding: 0 1.6rem;
}

.team .team-grid .card .info p {
  font-size: 1.35rem;
  line-height: 2.2rem;
  color: #5b6672;
  padding: 1.4rem 1.8rem 0;
  margin: 0;
}

.team .team-grid .card .info .icons a {
  margin-top: 4rem;
  padding-top: 0 1rem;
  font-size: 2rem;
  color: #333;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.team .team-grid .card .info .icons .fa-facebook-f:hover,
.footer .icons .fa-facebook-f:hover {
  color: #4267b2;
  text-decoration: none;
}

.team .team-grid .card .info .icons .fa-twitter:hover,
.footer .icons .fa-twitter:hover {
  color: #1da1f2;
  text-decoration: none;
}

.team .team-grid .card .info .icons .fa-instagram:hover,
.footer .icons .fa-instagram:hover {
  color: #c13584;
  text-decoration: none;
}

.team .team-grid .card .info .icons .fa-linkedin:hover,
.footer .icons .fa-linkedin:hover {
  color: #2867b2;
  text-decoration: none;
}

.team .team-grid .card::before,
.team .team-grid .card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 13.5rem;
  width: 13.5rem;
  z-index: -1;
}

.team .team-grid .card::before {
  background: #00bfff;
  top: -3rem;
  right: -4rem;
}

.team .team-grid .card::after {
  background: #ccc;
  bottom: -3rem;
  left: -4rem;
}
.card {
  opacity: 0;
  transform: translateY(50px);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Animated state */
.card.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* tablet: 2 columns */
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 per row */
    gap: 1rem; /* reduce gap so it fits */
    padding: 1rem;
  }

  .team .team-grid .card {
    width: 100% !important;   /* take full grid column */
    margin: 1rem auto !important; /* reduce margin so 2 fit */
    min-height: 40rem;
  }

  .team .team-grid .card .image img,
  .team .team-grid .card .image .team-symbol {
    height: 10rem;
    width: 10rem; /* slightly smaller image */
  }

  .team .team-grid .card .image .team-symbol i {
    font-size: 3.2rem;
  }

  .team .team-grid .card .info h3 {
    font-size: 1.6rem;
  }

  .team .team-grid .card .info span {
    font-size: 1.4rem;
  }

  .team .team-grid .card .info p {
    font-size: 1.2rem;
    line-height: 1.9rem;
    padding: 1.2rem 1.2rem 0;
  }
}




/* .team .row {
  display: inline-block;
  flex-direction: row;
  align-items: center;
  justify-content: center;
} */

/* @media (max-width: 768px) {
  .team-grid .card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important 
  }
} */
/* Base style for all three cards */
/* Base style for all three cards */
.web-app-dev, 
.mobile-app-dev, 
.digital-marketing,
.cloud-platforms,
.cybersecurity-services,
.ai-agentic-services {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 800px;
  cursor: pointer;
}

/* Hover effect with float + zoom */
.web-app-dev:hover, 
.mobile-app-dev:hover, 
.digital-marketing:hover,
.cloud-platforms:hover,
.cybersecurity-services:hover,
.ai-agentic-services:hover {
  transform: translateY(-20px) translateZ(30px) scale(1.05); /* zoom in */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Transition for icons */
.web-app-dev .icon, 
.mobile-app-dev .icon, 
.digital-marketing .icon,
.cloud-platforms .icon,
.cybersecurity-services .icon,
.ai-agentic-services .icon {
  transition: transform 0.5s ease;
}

/* Icon zoom on hover */
.web-app-dev:hover .icon, 
.mobile-app-dev:hover .icon, 
.digital-marketing:hover .icon,
.cloud-platforms:hover .icon,
.cybersecurity-services:hover .icon,
.ai-agentic-services:hover .icon {
  transform: scale(1.3);
}


/* Scale icon on hover */
.web-app-dev:hover .icon, 
.mobile-app-dev:hover .icon, 
.digital-marketing:hover .icon,
.cloud-platforms:hover .icon,
.cybersecurity-services:hover .icon,
.ai-agentic-services:hover .icon {
  transform: scale(1.2); /* optional fun effect */
}

.pt-5.pb-5 .row > [class*="col-"] {
  display: flex;
}

.pt-5.pb-5 .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 3.2rem 2.6rem;
  border-radius: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94)),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 55%, #eefcf7 100%);
  border: 1px solid rgba(0, 46, 95, 0.08);
  box-shadow: 0 14px 36px rgba(8, 33, 58, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.pt-5.pb-5 .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.12), transparent 45%, rgba(57, 255, 20, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.pt-5.pb-5 .item::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.18), transparent 68%);
  opacity: 0.7;
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: -1;
}

.pt-5.pb-5 .item:hover {
  transform: translateY(-1.2rem);
  border-color: rgba(0, 191, 255, 0.24);
  box-shadow: 0 24px 50px rgba(8, 33, 58, 0.16);
}

.pt-5.pb-5 .item:hover::before {
  opacity: 1;
}

.pt-5.pb-5 .item:hover::after {
  transform: scale(1.1);
  opacity: 1;
}

.pt-5.pb-5 .item h6 {
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0c2740;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.pt-5.pb-5 .item p {
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 2.55rem;
  color: #4a6074;
  margin-bottom: 0;
}

.pt-5.pb-5 .item .icon {
  width: 8.2rem;
  height: 8.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.2rem;
  border-radius: 2rem;
  line-height: 1;
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.pt-5.pb-5 .item .icon i {
  font-size: 3.4rem;
  transition: transform 0.45s ease, color 0.45s ease;
}

.pt-5.pb-5 .item:hover .icon {
  box-shadow: 0 16px 30px rgba(0, 46, 95, 0.14);
  transform: translateY(-0.4rem) scale(1.05);
}

.pt-5.pb-5 .item:hover .icon i {
  transform: scale(1.08);
}

.pt-5.pb-5 .item .feature_box_col_one {
  background: linear-gradient(135deg, rgba(15, 110, 255, 0.18), rgba(0, 191, 255, 0.12));
  color: #0f6eff;
}

.pt-5.pb-5 .item .feature_box_col_two {
  background: linear-gradient(135deg, rgba(0, 170, 102, 0.18), rgba(0, 210, 160, 0.12));
  color: #049b72;
}

.pt-5.pb-5 .item .feature_box_col_three {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.18), rgba(255, 191, 0, 0.12));
  color: #d97a00;
}

.pt-5.pb-5 .item .feature_box_col_four {
  background: linear-gradient(135deg, rgba(91, 99, 255, 0.18), rgba(123, 159, 255, 0.12));
  color: #4b57d9;
}

.pt-5.pb-5 .item .feature_box_col_five {
  background: linear-gradient(135deg, rgba(255, 59, 92, 0.18), rgba(255, 120, 120, 0.12));
  color: #d63a52;
}

.pt-5.pb-5 .item .feature_box_col_six {
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.18), rgba(168, 85, 247, 0.12));
  color: #7b35d1;
}

@media (max-width: 768px) {
  .pt-5.pb-5 .item {
    padding: 2.6rem 2rem;
  }

  .pt-5.pb-5 .item h6 {
    font-size: 1.9rem;
  }

  .pt-5.pb-5 .item p {
    font-size: 1.35rem;
    line-height: 2.3rem;
  }
}


.feature_box_col_four i {
  color: #4b57d9;
}

.feature_box_col_five i {
  color: #d63a52;
}

.feature_box_col_six i {
  color: #7b35d1;
}

/* Optional hover effect to make them pop */
.card:hover .icon i {
  transform: scale(1.3);
  transition: transform 0.3s ease, color 0.3s ease;
}


.project-card {
    position: relative;
    margin-left: 9px;
    margin-right: 9px;
    .face {
      position: relative;
      width: 100%;
      max-width: 300px;
      height: 200px;
      transition: 0.5s;
      border-radius: 12px;
      &.face1 {
        position: relative;
        background: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        transform: translateY(100px);
      }
    }
    &:hover .face.face1 {
      transform: translateY(0);
      background-image: linear-gradient(to left bottom, #8c00dc, #c600ba, #e80096, #f90074, #ff0057);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
    .face.face1 .content {
      opacity: 0.8;
      transition: 0.5s;
    }
    &:hover .face.face1 .content {
      opacity: 1;
    }
    .face {
      &.face1 .content {
        img {
          max-width: 60px;
        }
        h3 {
          margin: 10px 0 0;
          padding: 0;
          color: #fff;
          text-align: center;
          font-size: 1.5em;
        }
      }
      &.face2 {
        position: relative;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        transform: translateY(-100px);
      }
    }
    &:hover .face.face2 {
      transform: translateY(0);
      border-top-left-radius: 0;
      border-top-right-radius: 0;
    }
    .face.face2 {
      p {
        margin: 0;
        padding: 0;
      }
    }
  }

@media (max-width: 768px) {
  .project-section-head h4 {
    white-space: normal;
  }

  .project-section-head p {
    max-width: 100%;
    padding: 0.8rem 1rem 0;
  }
}


.contact {
  text-align: center;
  align-items: center;
}
  /* .contact .heading {
    margin-bottom: 3rem;
    margin-top: -2rem;
  } */
.contact .heading {
  margin-bottom: 5rem;
}

.contact-in {
  width: 80%;
  height: auto;
  margin: auto auto 5rem auto;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px #666;
}

.contact-map {
  width: 100%;
  height: auto;
  flex: 50%;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact-form {
  width: 100%;
  height: auto;
  flex: 50%;
  text-align: left;
}
 /* .contact-form-txt {
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
  } */
.contact-form-txt {
  margin-left: 2rem;
  width: 95%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
}

 /* .contact-form-email {
    margin-left: 2rem;
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
  } */
.contact-form-email {
  margin-left: 2rem;
  width: 95%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
}
.contact-form-txt::placeholder {
  color: #aaa;
  font-size: 1.5rem;
}
.contact-form-email::placeholder {
  color: #aaa;
  font-size: 1.5rem;
}
/* .contact-form-txtarea {
    margin-left: 2rem;
    width: 90%;
    height: 110px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
    font-family: "Poppins", sans-serif;
  } */
.contact-form-txtarea {
  margin-left: 2rem;
  width: 95%;
  height: 80px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 20px;
  padding: 15px;
  font-family: "Poppins", sans-serif;
}
.contact-form-txtarea::placeholder {
  color: #aaa;
  font-size: 1.5rem;
}

.contact-form-btn {
  margin-left: 2rem;
  outline: none;
  border: none;
  border-radius: 5rem;
  background: white;
  border-style: groove;
  border-color: #002e5f;
  font-size: 1.5rem;
  cursor: pointer;
  height: 3.5rem;
  width: 15rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}
.contact-form-btn:hover {
  letter-spacing: 0.1rem;
  opacity: 0.9;
  color: white;
  background: #002e5f;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.contact-form-phone::placeholder {
  color: #aaa;
  font-size: 1.5rem;
}

/* Container and input should use fully flexible width */
.iti {
  width: 95%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact-form-phone {
  margin-left: 0;
  width: 100%;
  height: 40px;
  color: #000;
  border: 1px solid #bcbcbc;
  border-radius: 50px;
  outline: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.5rem 1.5rem 1.5rem 9rem;
  box-sizing: border-box;
}

/* .contact-form-phone {
  width: 100% !important;
  height: 45px;
  border-radius: 50px;
  padding-left: 70px;   
  box-sizing: border-box;
  margin: 0 10px 20px 10px ;
  color: #000;
  border: 1px solid #127ed0;
} */


/* Flag container */
.iti__flag-container {
  position: absolute;
  top: 0;
  left: 1.4rem;
  height: 100%;
  display: flex;
  align-items: center;
}


/* Dropdown country list */
.iti__country-list {
  z-index: 9999 !important;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background-color: #fff;
  font-size: 14px;
}
 


/* Selected flag (flag + arrow) */

.iti__selected-flag {
  display: flex;
  align-items: center;
  gap: 4px;             /* space between flag and arrow */
  padding: 0 0 0 8px;
  background: transparent;
  border: none;
}
.iti__selected-dial-code {
  font-size: 1.35rem;
  color: #4b5a68;
}
/* Arrow */
.iti__arrow {
  position: relative !important;
  margin-left: 2px;
  border-top: 4px solid #555;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.country {
  font-size: 1rem;
  padding: 0.5rem;
}

.iti.input-error .contact-form-phone {
  border: 2px solid red !important;
}



/* Responsive tweaks */
/* @media (max-width: 768px) {
  .contact-in {
    flex-direction: column;
    width: 95%;
    padding: 15px;
  }

  .contact-map,
  .contact-form {
    flex: 100%;
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .contact-map iframe {
    height: 250px;
  }

  .contact-form-txt,
  .contact-form-email,
  .contact-form-phone,
  .contact-form-txtarea,
  .contact-form-btn {
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
    font-size: 1rem;
  }

  .iti {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .contact-form-btn {
    height: 45px;
  }
   .iti__flag-container {
    left: 10px; 
  }

  .contact-form-phone {
    padding-left: 60px;
  }
} */

@media (max-width: 768px) {
  .contact-in {
    flex-direction: column;
    width: 95%;
    padding: 15px;
  }

  .contact-map,
  .contact-form {
    flex: 100%;
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .contact-map iframe {
    height: 250px;
  }

  .contact-form-txt,
  .contact-form-email,
  .contact-form-phone,
  .contact-form-txtarea,
  .contact-form-btn {
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
    font-size: 1rem;
  }

  .contact-form-btn {
    height: 45px;
  }

  .iti__flag-container {
    left: 10px;  /* tighter on small screens */
  }

  .contact-form-phone {
    padding-left: 7rem; /* shrink input left-padding */
  }

  /* --- Toast adjustments for mobile --- */
  .toasts-container {
    top: 10px;          /* slightly down from top of contact section */
    right: 10px;        /* slightly in from the right */
    max-width: 90%;     /* prevent overflowing on small screens */
  }

  .toast {
    max-width: 100%;
    min-width: 0;
    font-size: 0.9rem;  /* slightly smaller text for mobile */
    padding: 1rem 1.2rem;
  }

  .t-message {
    line-height: 1.4rem;
  }
   .faq .row .accordion-container .accordion .accordion-header h3 {
  display: inline;
  color: #333;
  font-weight: 500;
  padding-left: 0.5rem;
  font-size: 1rem !important;
}
}


.footer {
  position: relative;
  padding: 0 0 30px 0;
  background: #333;
}

.footer .footer-top {
  background: #002e5f;
  padding: 60px 0 30px 0;
}

.footer .footer-top .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links,
.footer .footer-top .footer-contact {
  flex: 1 1 0;
}

.footer .footer-top .footer-contact {
  padding-left: 3rem;
}

.footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: #00bfff;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  background: #00bfff;
  color: #ffffff;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer .footer-top h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 50px;
  border-bottom: 2px solid #ffffff;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ffffff;
  font-size: 16px;
}

.footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #ffffff;
  padding: 7px 0;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  font-size: 14px;
  color: #ffffff;
}

.footer .footer-top .footer-links ul a:hover {
  color: #00bfff;
}

.footer .footer-top .footer-contact p {
  color: #ffffff;
  line-height: 26px;
}

.footer .footer-top .footer-newsletter input[type="email"] {
  padding: 6px 8px;
  width: 60%;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
  border: 0;
  width: 40%;
  padding: 6px 0;
  text-align: center;
  color: black;
  border: 1px solid #ffffff;
  background: #ffffff;
  transition: 0.3s;
  cursor: pointer;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
  color: #ffffff;
  background: #00bfff;
  border: 1px solid #00bfff;
  letter-spacing: 0.2rem;
}

.footer .footer-top .footer-newsletter p {
  color: #ffffff;
  font-size: 14px;
}

.footer .credit,
.footer .copyright {
  text-align: center;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .footer .credit {
    text-align: right;
  }

  .footer .copyright {
    text-align: left;
  }

}

@media (max-width: 991px) {
  .footer .footer-top .row {
    display: block;
  }

  .footer .footer-top .footer-contact {
    padding-left: 0;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  background-color: #00bfff;
  color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 1;
  font-size: 44px;
  right: 15px;
  bottom: 15px;
  transition: background 0.3s;
  z-index: 9;
}

.back-to-top i {
  color: #ffffff;
}

.back-to-top i:hover {
  color: black;
}

.faq {
  min-height: 70vh;
  width: 100vw;
  text-align: center;
  padding: 0 2rem;
  background: url(../images/Gemini_Generated_faq_dark.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.faq .row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.faq .row .accordion-container {
  width: 50%;
  text-align: left;
}

.faq .row .accordion {
  margin-left: 1rem;
  margin-right: 2rem;
}

.faq .row .accordion-container .accordion .accordion-header {
  background-color: #00bfff;
  margin: 1rem 0;
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-left: 1rem;
  margin-right: 2rem;
}

.faq .row .accordion-container .accordion .accordion-header span {
  display: inline-block;
  text-align: center;
  height: 4rem;
  width: 5rem;
  line-height: 4rem;
  font-size: 2rem;
  background: #333;
  color: #fff;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3 {
  display: inline;
  color: #333;
  font-weight: 400;
  padding-left: 0.5rem;
  font-size: 1.5rem;
}

.faq .row .accordion-container .accordion .accordion-body {
  padding: 1rem;
  color: #444;
  box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  background-color: #fff;
  font-size: 1.3rem;
  display: none;
  margin-left: 1rem;
  margin-right: 2rem;
}

@media (max-width: 1200px) {
  .faq {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .header .logo img {
    width: auto;
    max-width: 140px;
    height: 3.4rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .logo {
    left: 0;
    padding: 0.6rem 1rem;
    border-radius: 1.2rem;
  }

  .header .fa-bars {
    display: block;
    color: white;
    margin-right: 1rem;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.3);
  }

  .header .navbar ul {
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li {
    margin: 1rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.4rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .home h1 {
    color: #fff;
    font-size: 4rem;
  }

  .home h2 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }

  .type-container {
    width: min(92vw, 48rem);
    min-height: 7rem;
    padding: 1rem 1.6rem;
  }

  .typed-text {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero-tagline {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    padding: 0 1.6rem;
  }

  .about {
    min-height: 38vh;
    width: 100vw;
    margin-top: -3rem;
    margin-bottom: -2rem;
    top: -2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 6rem;
  }

  .about .row {
    line-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
  }

  .about .row .content {
    text-align: center;
  }

  .about .row .content h3 {
    font-size: 2rem;
    color: var(--color);
  }

  .about .row .content p {
    font-size: 1.3rem;
    color: #333;
    padding: 1rem 0;
  }

  .about-scroll-cue {
    width: 4.8rem;
    height: 4.8rem;
    margin-top: 0.8rem;
  }

  .clients {
    position: relative;
    padding: 90px 0;
    text-align: center;
    margin-top: -15rem;
    margin-bottom: -8rem;
  }

  .clients .section-header p {
    padding-bottom: 10px;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
  }

  .team {
    min-height: auto;
  }

  .team .row {
    flex-direction: column;
  }

  /* .contact-form-phone {
    margin-left: 2rem;
    width: 90%;
    height: 20px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
  } */
 
  .back-to-top {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  .faq {
    padding: 0;
    min-height: 60vh;
  }

  .faq .row {
    padding: 0 1.5rem;
    flex-flow: column;
  }

  .faq .row .accordion-container {
    width: 100%;
  }
}

.input-error {
  border: 2px solid red !important;
}
.error {
  color: red;
  font-size: 0.9em;
  display: block;
  margin-top: 4px;
}





.toasts-container {
  position: fixed;
  top: 0;
  right: 0;
  padding: 2.4rem;
  z-index: 999;
  pointer-events: none;

  .toast {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 50rem;
    min-width: 28rem;
    background-color: #121212;
    border-radius: 1.2rem;
    pointer-events: auto;
    padding: 2.4rem;
    margin-bottom: 2.4rem;
    opacity: 0;
    transform: translateX(100%);
    animation: toast-opening var(--transition-duration) ease-in-out forwards;
    overflow-x: hidden;

    &:not(.active) {
      animation-name: toast-closing;
      animation-duration: 0.35s;
    }

    .t-icon {
      margin-right: 2.4rem;

      svg {
        fill: var(--white);
        width: 2.4rem;
        height: 2.4rem;
      }
    }

    .t-message {
      margin-right: 2.4rem;
      color: var(--white);
      line-height: 2rem;
      font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    }

    .t-close {
      svg {
        fill: var(--white);
        opacity: 1;
        width: 1.8rem;
        height: 1.8rem;
        transition: opacity var(--transition-duration);
        cursor: pointer;

        @media (hover: hover) {
          opacity: 0.5;
        }
      }

      &:hover svg {
        opacity: 1;
      }
    }

    .t-progress-bar {
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      height: 6px;
      width: 100%;
      border-radius: 0 0 0 0.5rem;
      background-color: rgba(255, 255, 255, 0.5);
      animation: progress-bar-animation linear forwards var(--toast-duration, 3000ms);
      transform-origin: left;
    }

    &.success {
      background-color: var(--green);
    }
    &.system {
      background-color: var(--blue);
    }
    &.warning {
      background-color: var(--yellow);
    }
    &.error {
      background-color: var(--red);
    }
  }
}

@keyframes toast-opening {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes toast-closing {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  75% {
    max-height: 15rem;
    padding: 2.4rem;
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    max-height: 0;
    padding: 0;
    transform: translateX(100%);
  }
}

@keyframes progress-bar-animation {
  to {
    transform: scaleX(0);
  }
}

/* ---------------- Final responsive polish ---------------- */
html {
  font-size: clamp(56%, 0.54vw + 52%, 62.5%);
}

body {
  color: #213547;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

section,
.pt-5.pb-5,
.footer .footer-top {
  overflow-x: clip;
}

.home,
.about,
.faq,
.team,
.contact {
  width: 100%;
}

.home {
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-tagline,
.home h2,
.about .row .content p,
.section-head p,
.project-section-head p,
.testimonial-section-head p,
.faq .row .accordion-container .accordion .accordion-body p,
.footer .footer-top .footer-contact p,
.footer .footer-top .footer-links ul a {
  text-wrap: balance;
}

.about .row,
.faq .row,
.contact-in,
.footer .footer-top .row {
  width: 100%;
}

.counters .container > div,
.pt-5.pb-5 .item,
.project-card,
.testimonials .testimonial-text,
.team .team-grid .card,
.contact-in,
.faq .row .accordion-container .accordion {
  border-radius: 2rem;
}

.section-head,
.project-section-head,
.testimonial-section-head,
.clients .section-header {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.project-card {
  margin-left: auto;
  margin-right: auto;
}

.project-card .face {
  max-width: 100%;
}

.project-card .face.face1 {
  min-height: 22rem;
}

.project-card .face.face1 .content {
  width: 100%;
  padding: 2rem;
}

.project-card .face.face1 .content .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.6rem;
  height: 6.6rem;
  margin-bottom: 1.4rem;
  border-radius: 1.8rem;
}

.project-card .face.face1 .content .icon i {
  font-size: 2.8rem;
}

.project-card .face.face1 .content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.project-card .face.face2 .content {
  width: 100%;
}

.project-card .face.face2 {
  min-height: 40rem;
  overflow: hidden;
  padding: 14rem 2.2rem 2.4rem;
  box-sizing: border-box;
}

.project-card .face.face2 .content p {
  font-size: 1.45rem;
  line-height: 1.65;
  color: #31475d;
  width: 100%;
  max-height: none;
  overflow: hidden;
  padding-right: 0;
}

/* Keep project descriptions hidden until hover */
.project-card {
  position: relative;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12rem;
  overflow: visible;
}

.project-card .face {
  width: 100%;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.project-card .face.face1 {
  position: relative;
  z-index: 2;
  transform: translateY(10rem);
}

.project-card .face.face2 {
  position: relative;
  z-index: 1;
  margin-top: -10rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3rem);
  transition: transform 0.45s ease, opacity 0.3s ease, box-shadow 0.45s ease;
}

.project-card:hover .face.face1 {
  transform: translateY(0);
}

.project-card:hover .face.face2 {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.project-card .face.face2 .content {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.testimonials .testimonial-item {
  height: 100%;
}

.team .team-grid {
  align-items: stretch;
}

.team .team-grid .card {
  width: 100%;
  max-width: 30rem;
  margin: 3rem auto;
}

.contact-form,
.contact-map {
  min-width: 0;
}

.footer .footer-top .footer-links,
.footer .footer-top .footer-contact {
  min-width: 0;
}

.footer .footer-top .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer .footer-top .social-links a {
  margin-right: 0;
}

@media (max-width: 1199px) {
  .home h2 {
    max-width: 64rem;
    font-size: 3.3rem;
  }

  .section-head p,
  .project-section-head p,
  .testimonial-section-head p {
    max-width: 68rem;
  }

  .team .team-grid {
    max-width: 96rem;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 1.2rem 1.6rem;
  }

  .header .logo img {
    width: auto;
    max-width: 14rem;
  }

  .type-container {
    min-height: 6.2rem;
    padding: 1rem 1.8rem;
  }

  .hero-tagline {
    font-size: 1.7rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

  .home h2 {
    font-size: 3rem;
    max-width: 56rem;
    letter-spacing: 0.06em;
  }

  .about {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .about .row {
    padding: 0 2.4rem;
  }

  .about .row .content p,
  .section-head p,
  .project-section-head p,
  .testimonial-section-head p {
    font-size: 1.7rem;
    line-height: 1.8;
  }

  .counters {
    background-attachment: scroll;
    padding: 3.6rem 2rem;
  }

  .counters .container {
    gap: 2rem;
  }

  .counters .counter {
    font-size: 4rem;
  }

  .pt-5.pb-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .section-head,
  .project-section-head,
  .testimonial-section-head {
    margin-bottom: 3.2rem;
  }

  .testimonials {
    padding: 7rem 0 5rem;
  }

  .testimonials .testimonial-text {
    min-height: 32rem;
  }

  .team {
    padding-bottom: 5rem;
  }

  .contact-in {
    width: 92%;
  }

  .footer .footer-top {
    padding: 5rem 0 2rem;
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.55;
  }

  .header .logo {
    padding: 0.5rem 0.9rem;
  }

  .home {
    min-height: 92vh;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .type-container {
    width: min(100%, 44rem);
    min-height: 5.8rem;
    padding: 0.8rem 1.4rem;
    margin-bottom: 0.8rem;
  }

  .typed-text {
    font-size: 2rem;
    text-align: center;
  }

  .hero-tagline {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }

  .home h2 {
    font-size: 2.7rem;
    max-width: 34rem;
    letter-spacing: 0.05em;
    line-height: 1.28;
  }

  .home .wave {
    height: 8rem;
    background-size: 70rem 8rem;
  }

  .heading,
  .section-head h1,
  .project-section-head h4,
  .testimonial-section-head h2,
  .clients .section-header h2 {
    font-size: 3rem;
    letter-spacing: 0.1rem;
  }

  .heading::before,
  .heading::after,
  .section-head h1::before,
  .section-head h1::after,
  .project-section-head h4::before,
  .project-section-head h4::after,
  .testimonial-section-head h2::before,
  .testimonial-section-head h2::after,
  .clients .section-header h2::before,
  .clients .section-header h2::after {
    width: 1.8rem;
    height: 1.8rem;
  }

  .heading::before,
  .section-head h1::before,
  .project-section-head h4::before,
  .testimonial-section-head h2::before,
  .clients .section-header h2::before {
    top: 5.1rem;
    left: -1.2rem;
  }

  .heading::after,
  .section-head h1::after,
  .project-section-head h4::after,
  .testimonial-section-head h2::after,
  .clients .section-header h2::after {
    right: -1.2rem;
  }

  .about .row {
    padding: 0 1.6rem;
  }

  .about .row .content h3 {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .about .row .content p,
  .section-head p,
  .project-section-head p,
  .testimonial-section-head p {
    font-size: 1.5rem;
    line-height: 1.75;
  }

  .counters {
    padding: 3rem 1.6rem;
  }

  .counters .counter {
    font-size: 3.4rem;
  }

  .counters h3 {
    font-size: 1.7rem;
  }

  .pt-5.pb-5 .row > [class*="col-"] {
    display: block;
  }

  .pt-5.pb-5 .item {
    padding: 2.4rem 1.8rem;
  }

  .pt-5.pb-5 .item h6 {
    font-size: 1.85rem;
  }

  .pt-5.pb-5 .item p {
    font-size: 1.35rem;
    line-height: 2.2rem;
  }

  .project-card {
    width: 100%;
    max-width: 34rem;
    padding-top: 10rem;
  }

  .project-card .face.face1,
  .project-card .face.face2 {
    height: auto;
    min-height: 22rem;
  }

  .project-card .face.face1 .content .icon {
    width: 5.8rem;
    height: 5.8rem;
    margin-bottom: 1.2rem;
  }

  .project-card .face.face1 .content .icon i {
    font-size: 2.4rem;
  }

  .project-card .face.face1 .content h3 {
    font-size: 2.2rem;
  }

  .project-card .face.face2 {
    min-height: 34rem;
    padding: 11.5rem 1.8rem 2rem;
  }

  .project-card .face.face1 {
    transform: translateY(8rem);
  }

  .project-card .face.face2 {
    margin-top: -8rem;
  }

  .project-card .face.face2 .content p {
    font-size: 1.3rem;
    line-height: 1.55;
    max-height: none;
  }

  .testimonials .testimonial-text {
    min-height: auto;
    max-width: 34rem;
  }

  .team .team-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem;
    max-width: 38rem;
  }

  .team .team-grid .card {
    min-height: auto;
    max-width: 34rem;
    margin: 1rem auto !important;
  }

  .contact {
    padding-bottom: 4rem;
  }

  .contact .heading {
    margin-bottom: 3rem;
  }

  .contact-in {
    width: calc(100% - 3.2rem);
    margin-bottom: 3rem;
  }

  .contact-form-txt,
  .contact-form-email,
  .contact-form-phone,
  .contact-form-txtarea {
    font-size: 1.4rem;
  }

  .faq {
    padding-bottom: 4rem;
  }

  .faq .row .accordion-container .accordion .accordion-header {
    margin-left: 0;
    margin-right: 0;
  }

  .faq .row .accordion-container .accordion .accordion-body {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .footer .footer-top {
    padding: 4rem 0 1.4rem;
  }

  .footer .footer-top .footer-links,
  .footer .footer-top .footer-contact {
    margin-bottom: 2.4rem;
  }

  .footer .footer-top .footer-contact,
  .footer .footer-top .footer-links,
  .footer .copyright {
    text-align: center;
  }

  .footer .footer-top h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* Hero copy refinement */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.2rem 2rem 0;
}

.hero-copy .type-container {
  justify-content: center;
  margin-bottom: 0;
}

.hero-tagline {
  margin: 0;
  background: transparent !important;
  color: #f4f7fb;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.24);
}

.home .hero-company-name {
  margin: 0;
  color: #c8995b;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0.185em;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0.3rem 1.4rem rgba(0, 0, 0, 0.28);
}

@media (max-width: 991px) {
  .hero-copy {
    max-width: 64rem;
    gap: 0.85rem;
    padding: 1rem 1.6rem 0;
  }

  .hero-tagline {
    font-size: 1.9rem;
  }

  .home .hero-company-name {
    font-size: clamp(1.2rem, 2.8vw, 1.9rem);
    letter-spacing: 0.015em;
  }
}

@media (max-width: 767px) {
  .hero-copy {
    max-width: 100%;
    gap: 0.7rem;
    padding: 0.8rem 1.2rem 0;
  }

  .hero-tagline {
    font-size: 1.65rem;
    line-height: 1.45;
  }

  .home .hero-company-name {
    font-size: clamp(1rem, 3.6vw, 1.35rem);
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
}
