/* =====================================================================
   ENHANCED SECTIONS - PREMIUM ANIMATIONS & VISUAL EFFECTS
   ===================================================================== */

/* ==========================================
   1. ENHANCED ABOUT AREA SECTION
   ========================================== */

.about-area {
  position: relative;
  overflow: hidden;
}

.about-area::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 182, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatBg 8s ease-in-out infinite;
}

.about-area::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 189, 16, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatBg 10s ease-in-out infinite reverse;
}

.about-left {
  position: relative;
  z-index: 1;
}

.about-img {
  position: relative;
}

.about-img .img-1 {
  width: 85%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img .img-1:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(51, 182, 255, 0.15);
}

.about-img .img-2 {
  position: absolute;
  width: 280px;
  right: -30px;
  bottom: -50px;
  border: 10px solid var(--color-white);
  border-radius: 50%;
  animation: pulseFloat 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-shape img {
  position: absolute;
  right: -20px;
  top: -70px;
  z-index: -1;
  animation: rotateShape 20s linear infinite;
}

.about-experience {
  background: linear-gradient(135deg, #33B6FF 0%, #2ac5f5 100%);
  box-shadow: 0 15px 40px rgba(51, 182, 255, 0.3);
  position: absolute;
  left: -30px;
  bottom: 40px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transform: translateX(-20px);
  opacity: 0;
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  transition: all 0.3s ease;
}

.about-experience:hover {
  transform: translateX(-20px) translateY(-5px);
  box-shadow: 0 20px 50px rgba(51, 182, 255, 0.4);
}

.about-experience h5 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
}

.about-experience span {
  color: var(--color-white);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  animation: countUp 2s ease-out 0.5s forwards;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
  z-index: 1;
}

.site-heading {
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-title-tagline {
  display: inline-block;
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.1), rgba(254, 189, 16, 0.1));
  padding: 8px 16px;
  border-radius: 30px;
  border-left: 3px solid #33B6FF;
  color: #33B6FF;
  font-weight: 600;
  animation: fadeInDown 0.8s ease 0.2s forwards;
  opacity: 0;
}

.site-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A1D43;
  line-height: 1.3;
  margin: 20px 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.about-text {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInLeft 0.6s ease backwards;
}

.about-list li:nth-child(1) { animation-delay: 0.6s; }
.about-list li:nth-child(2) { animation-delay: 0.7s; }
.about-list li:nth-child(3) { animation-delay: 0.8s; }
.about-list li:nth-child(4) { animation-delay: 0.9s; }
.about-list li:nth-child(5) { animation-delay: 1s; }

.about-list li:hover {
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.08), rgba(254, 189, 16, 0.08));
  transform: translateX(10px);
}

.about-list li .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.15), rgba(254, 189, 16, 0.15));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-list li:hover .icon {
     
  transform: scale(1.1) rotate(-5deg);
}

.about-list li .icon img {
  width: 30px;
  transition: all 0.3s ease;
}

.about-list li .content h4 {
  font-size: 18px;
  color: #0A1D43;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-list li .content p {
  font-size: 14px;
  color: #666;
}

.theme-btn {
  display: inline-block;
  background: linear-gradient(135deg, #33B6FF 0%, #2ac5f5 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: 20px;
  animation: fadeInUp 0.8s ease 1.1s forwards;
  opacity: 0;
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(51, 182, 255, 0.3);
}

/* ==========================================
   2. ENHANCED HOME PROCESS SECTION
   ========================================== */

.home-process-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f9fcff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.home-process-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 197, 245, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite;
  z-index: 0;
}

.home-process-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 189, 16, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 12s ease-in-out infinite reverse;
  z-index: 0;
}

.home-process-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.home-process-tag {
  background: linear-gradient(135deg, rgba(42, 197, 245, 0.15), rgba(254, 189, 16, 0.15));
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid rgba(42, 197, 245, 0.3);
  color: #2ac5f5;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  animation: slideInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.home-process-header h2 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2ac5f5 0%, #febd10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 15px;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.home-process-rocket {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 120px;
  z-index: 2;
  animation: rocketFloat 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.home-process-rocket img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.home-process-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.home-process-wave {
  width: 100%;
  height: 150px;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 0;
}

.home-wave-path {
  fill: none;
  stroke: url(#homeGradient);
  stroke-width: 4;
  stroke-dasharray: 15;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: homeWaveMove 3s linear infinite;
}

.home-process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

.home-process-step {
  width: 15%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.home-process-step:nth-child(1) { animation-delay: 0.3s; }
.home-process-step:nth-child(2) { animation-delay: 0.4s; }
.home-process-step:nth-child(3) { animation-delay: 0.5s; }
.home-process-step:nth-child(4) { animation-delay: 0.6s; }
.home-process-step:nth-child(5) { animation-delay: 0.7s; }
.home-process-step:nth-child(6) { animation-delay: 0.8s; }

.home-process-step:hover {
  transform: translateY(-15px);
}

.home-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  background: linear-gradient(135deg, #2ac5f5 0%, #1aaed8 100%);
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(42, 197, 245, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.home-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.home-process-step:hover .home-circle {
  transform: scale(1.2) rotate(10deg);
  color: #000;
  /* box-shadow: 0 20px 60px rgba(254, 189, 16, 0.4); */
  background: linear-gradient(135deg, #febd1099 0%, #ffc90d99 100%);
}

.home-process-step:hover .home-circle::before {
  opacity: 1;
}

.home-process-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1D43;
  margin-top: 20px;
  margin-bottom: 12px;
}

.home-process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
Large Laptop (1200px - 1400px)
================================*/
@media (max-width:1400px){

.home-process-steps{
flex-wrap:wrap;
justify-content:center;
gap:40px;
}

.home-process-step{
width:28%;
}

.home-process-header h2{
font-size:42px;
}

.home-process-rocket{
right:40px;
top:70px;
width:100px;
}

}


/* ===============================
Laptop / Small Desktop
================================*/
@media (max-width:1200px){

.home-process-steps{
flex-wrap:wrap;
justify-content:center;
gap:40px;
}

.home-process-step{
width:30%;
}

.home-process-header h2{
font-size:40px;
}

.home-process-wave{
display:none;
}

}


/* ===============================
Tablet
================================*/
@media (max-width:992px){

.home-process-section{
padding:100px 20px;
}

.home-process-header h2{
font-size:34px;
}

.home-process-steps{
flex-wrap:wrap;
gap:30px;
}

.home-process-step{
width:45%;
}

.home-circle{
width:70px;
height:70px;
font-size:24px;
}

.home-process-rocket{
display:none;
}

}


/* ===============================
Large Mobile
================================*/
@media (max-width:768px){

.home-process-section{
padding:80px 20px;
}

.home-process-header{
margin-bottom:50px;
}

.home-process-header h2{
font-size:30px;
}

.home-process-steps{
flex-direction:column;
align-items:center;
gap:40px;
margin-top:50px;
}

.home-process-step{
width:100%;
max-width:400px;
}

.home-circle{
width:65px;
height:65px;
font-size:22px;
}

}


/* ===============================
Small Mobile
================================*/
@media (max-width:480px){

.home-process-header h2{
font-size:26px;
}

.home-process-tag{
font-size:13px;
padding:6px 16px;
}

.home-circle{
width:60px;
height:60px;
font-size:20px;
}

.home-process-step h4{
font-size:18px;
}

.home-process-step p{
font-size:13px;
}

}
/* ==========================================
   3. ENHANCED COUNTER AREA SECTION
   ========================================== */

.counter-area {
  position: relative;
  background: linear-gradient(135deg, #0A1D43 0%, #1a3a52 100%);
  overflow: hidden;
  z-index: 1;
  padding: 60px 20px;
}

.counter-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(42, 197, 245, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(254, 189, 16, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.counter-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.counter-shape .img-1 {
  position: absolute;
  left: -20px;
  top: 0;
  width: 400px;
  opacity: 0.15;
  z-index: -1;
  animation: floatBg 15s ease-in-out infinite;
}

.counter-shape .img-2 {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 400px;
  opacity: 0.12;
  z-index: -1;
  animation: floatBg 18s ease-in-out infinite reverse;
}

.counter-box {
  display: flex;
  gap: 20px;
  position: relative;
  padding: 35px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 2px solid rgba(51, 182, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 1px rgba(255, 255, 255, 0.1);
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-box:nth-child(1) { animation-delay: 0.2s; }
.counter-box:nth-child(2) { animation-delay: 0.3s; }
.counter-box:nth-child(3) { animation-delay: 0.4s; }
.counter-box:nth-child(4) { animation-delay: 0.5s; }

.counter-box:hover {
  transform: translateY(-10px);
  border-color: rgba(51, 182, 255, 0.5);
  box-shadow: 0 15px 50px rgba(51, 182, 255, 0.3),
              inset 0 1px 1px rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.15), rgba(254, 189, 16, 0.08));
}

.counter-box .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #33B6FF 0%, #2ac5f5 100%);
  box-shadow: 0 10px 30px rgba(51, 182, 255, 0.4);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.counter-box:hover .icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(51, 182, 255, 0.5);
}

.counter-box .icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.counter-box .info {
  display: flex;
  gap: 2px;
  align-items: flex-start;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1px;
}

.counter-box .unit {
  font-size: 36px;
  color: #febd10;
  font-weight: 700;
  line-height: 1.2;
}

.counter-box .title {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ==========================================
   4. ENHANCED TESTIMONIAL SECTION
   ========================================== */

.home-testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  position: relative;
  overflow: hidden;
}

.home-testimonial-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 79, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 12s ease-in-out infinite;
  z-index: 0;
}

.home-testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51, 182, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 14s ease-in-out infinite reverse;
  z-index: 0;
}

.home-testimonial-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.home-testimonial-aside {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(51, 182, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.home-testimonial-aside::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px dashed rgba(51, 182, 255, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-testimonial-aside:hover::before {
  opacity: 1;
}

.home-testimonial-aside h2 {
  font-size: 36px;
  color: #0A1D43;
  font-weight: 800;
  line-height: 1.2;
}

.home-testimonial-aside p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}

.home-testimonial-highlight {
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.12), rgba(254, 189, 16, 0.12));
  border-radius: 16px;
  padding: 25px;
  border: 2px solid rgba(51, 182, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 15px rgba(51, 182, 255, 0.08);
}

.home-highlight-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(51, 182, 255, 0.15);
}

.home-highlight-rating .home-stars {
  font-size: 20px;
  letter-spacing: 2px;
  color: #c8a84f;
  line-height: 1;
}

.home-highlight-rating span {
  font-weight: 600;
  color: #0A1D43;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.home-highlight-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-highlight-detail p {
  margin: 0;
  font-weight: 700;
  color: #0A1D43;
  font-size: 16px;
  line-height: 1.2;
}

.home-highlight-detail small {
  display: block;
  color: #5e6270;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}


.home-testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.home-stat {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid rgba(51, 182, 255, 0.15);
  text-align: left;
}

.home-stat span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #0A1D43;
}

.home-stat p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.home-testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

/* --- Core Slider Fixes --- */
.home-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%; /* Ensures the window is only as wide as the grid column */
  border-radius: 24px;
}

.home-slider-track {
  display: flex;
  width: 100%; /* Added to keep items aligned */
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-testimonial-card {
  min-width: 100%;
  flex-shrink: 0; /* Prevents the card from shrinking/warping */
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 55px 45px;
  border-radius: 24px;
  border: 1px solid rgba(51, 182, 255, 0.1);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
  .home-testimonial-grid {
    grid-template-columns: 1fr; /* Forces a single column stack */
    gap: 40px;
  }
  
  .home-testimonial-slider {
    width: 100%;
    margin: 0 auto;
  }

  .home-testimonial-nav {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .home-testimonial-card {
    padding: 35px 25px;
  }
  
  /* Prevent horizontal scroll on mobile */
  .home-testimonial-section {
    padding: 60px 15px;
    overflow-x: hidden; 
  }
}

/* --- Animation (Included for completeness) --- */
@keyframes floatBg {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.home-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(51, 182, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.home-testimonial-card:hover::after {
  opacity: 1;
}

.home-stars {
  color: #c8a84f;
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 4px;
}

.home-testimonial-card p {
  font-size: 18px;
  color: #2e3342;
  line-height: 1.8;
  margin-bottom: 30px;
}

.home-quote-icon {
  font-size: 60px;
  color: rgba(51, 182, 255, 0.2);
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
}

.home-client-info {
  margin-top: 10px;
}

.home-client-info h4 {
  font-weight: 800;
  color: #0A1D43;
  margin-bottom: 4px;
  font-size: 20px;
}

.home-client-info span {
  color: #6b7280;
  font-size: 14px;
}

.home-testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
  width: 100%;
  align-items: center;
}

.home-testimonial-nav button {
  border: 2px solid #33B6FF;
  background: #ffffff;
  color: #0A1D43;
  padding: 10px 28px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.home-testimonial-nav button:hover {
  background: #33B6FF;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(51, 182, 255, 0.3);
}

/* ============================= */
/* Large Screens (1400px) */
/* ============================= */

@media (max-width:1400px){

.home-testimonial-container{
max-width:1100px;
}

.home-testimonial-card{
padding:50px 40px;
}

}

/* ============================= */
/* Laptop (1200px) */
/* ============================= */

@media (max-width:1200px){

.home-testimonial-section{
padding:100px 20px;
}

.home-testimonial-grid{
gap:30px;
}

.home-testimonial-aside h2{
font-size:32px;
}

.home-testimonial-card{
padding:45px 35px;
}

}

/* ============================= */
/* Tablet (992px) */
/* ============================= */

@media (max-width:992px){

.home-testimonial-grid{
grid-template-columns:1fr;
gap:40px;
}

.home-testimonial-aside{
padding:35px;
}

.home-testimonial-aside h2{
font-size:30px;
}

.home-testimonial-card{
padding:40px 30px;
}

.home-testimonial-card p{
font-size:17px;
}

.home-testimonial-nav{
justify-content:center;
}

}

/* ============================= */
/* Mobile (768px) */
/* ============================= */

@media (max-width:768px){

.home-testimonial-section{
padding:80px 18px;
}

.home-testimonial-aside{
padding:30px;
}

.home-testimonial-aside h2{
font-size:26px;
}

.home-testimonial-aside p{
font-size:15px;
}

.home-highlight-rating .home-stars{
font-size:18px;
}

.home-testimonial-card{
padding:35px 25px;
}

.home-testimonial-card p{
font-size:16px;
}

.home-client-info h4{
font-size:18px;
}

.home-testimonial-nav button{
padding:10px 22px;
font-size:15px;
}

}

/* ============================= */
/* Small Mobile (480px) */
/* ============================= */

@media (max-width:480px){

.home-testimonial-section{
padding:70px 15px;
}

.home-testimonial-aside{
padding:25px;
}

.home-testimonial-aside h2{
font-size:22px;
}

.home-highlight-detail p{
font-size:14px;
}

.home-highlight-detail small{
font-size:12px;
}

.home-stat span{
font-size:26px;
}

.home-stat p{
font-size:12px;
}

.home-testimonial-card{
padding:28px 20px;
}

.home-testimonial-card p{
font-size:15px;
}

.home-client-info h4{
font-size:16px;
}

.home-client-info span{
font-size:13px;
}

.home-testimonial-nav button{
padding:8px 18px;
font-size:14px;
}

}

/* ============================= */
/* Extra Small Devices (360px) */
/* ============================= */

@media (max-width:360px){

.home-testimonial-aside h2{
font-size:20px;
}

.home-testimonial-card{
padding:24px 18px;
}

.home-testimonial-card p{
font-size:14px;
}

.home-stars{
font-size:16px;
}

.home-testimonial-nav button{
padding:7px 15px;
font-size:13px;
}

}
/* ==========================================
   5. ENHANCED CONTACT SECTION
   ========================================== */

.home-contact-section {
  position: relative;
  padding: 80px 20px 180px;
  background: linear-gradient(135deg, #f9fcff 0%, #f0f7ff 50%, #ffffff 100%);
  overflow: hidden;
  color: #0A1D43;
}

.home-contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(51, 182, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 12s ease-in-out infinite;
  z-index: 0;
}

.home-contact-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 189, 16, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 14s ease-in-out infinite reverse;
  z-index: 0;
}

.home-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 60px;
}

.home-contact-left {
  width: 45%;
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.home-contact-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.12), rgba(254, 189, 16, 0.08));
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
  color: #33B6FF;
  font-weight: 700;
  border-left: 3px solid #33B6FF;
  animation: slideInDown 0.6s ease 0.1s backwards;
}

.home-contact-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0A1D43;
  line-height: 1.3;
  margin-bottom: 25px;
  animation: slideInUp 0.8s ease 0.2s backwards;
}

.home-contact-left p {
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  animation: slideInUp 0.8s ease 0.3s backwards;
}

.home-contact-phone {
  background: linear-gradient(135deg, rgba(51, 182, 255, 0.08), rgba(254, 189, 16, 0.06));
  padding: 25px 20px;
  border-radius: 12px;
  border-left: 4px solid #33B6FF;
  animation: slideInUp 0.8s ease 0.4s backwards;
  transition: all 0.3s ease;
}

.home-contact-phone:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(51, 182, 255, 0.15);
  border-left-color: #febd10;
}

.home-contact-phone span {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.home-contact-phone h4 {
  font-size: 28px;
  font-weight: 800;
  color: #33B6FF;
  margin: 0;
  letter-spacing: 0.5px;
}

.home-contact-form-wrapper {
  width: 50%;
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
  opacity: 0;
}

.home-contact-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  color: #333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #33B6FF, #febd10) 1;
  position: relative;
  overflow: hidden;
}

.home-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(51, 182, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.home-contact-form:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(51, 182, 255, 0.15);
}

.home-contact-form:hover::before {
  left: 100%;
}

.home-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.home-form-row input,
.home-form-row select {
  width: 50%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f9fcff;
  color: #333;
  font-weight: 500;
}

.home-form-row input::placeholder,
.home-form-row select {
  color: #999;
}

.home-form-row input:focus,
.home-form-row select:focus {
  border-color: #33B6FF;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(51, 182, 255, 0.1);
  outline: none;
}

.home-form-row input:hover,
.home-form-row select:hover {
  border-color: #33B6FF;
}

.home-contact-form textarea {
  width: 100%;
  height: 140px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  margin-bottom: 25px;
  resize: none;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f9fcff;
  color: #333;
}

.home-contact-form textarea::placeholder {
  color: #999;
}

.home-contact-form textarea:focus {
  border-color: #33B6FF;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(51, 182, 255, 0.1);
  outline: none;
}

.home-contact-form textarea:hover {
  border-color: #33B6FF;
}

.home-contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #33B6FF 0%, #2ac5f5 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.home-contact-form button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.home-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(51, 182, 255, 0.35);
  background: linear-gradient(135deg, #2ac5f5 0%, #1aaed8 100%);
}

.home-contact-form button:active::before {
  width: 300px;
  height: 300px;
}

/* Decorative elements */
.home-cloud {
  position: absolute;
  width: 300px;
  opacity: 0.6;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.home-cloud-1 {
  top: 150px;
  left: 5%;
  animation: floatCloud 8s ease-in-out infinite;
}

.home-cloud-2 {
  top: 300px;
  right: 8%;
  animation: floatCloud 10s ease-in-out infinite reverse;
}

.home-tree {
  position: absolute;
  bottom: 0;
  width: 100px;
  opacity: 0.7;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}

.home-tree-1 { left: 80px; }
.home-tree-2 { left: 180px; }

.home-person {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 200px;
  animation: floatPerson 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBg {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(0, -40px);
  }
  75% {
    transform: translate(-20px, -20px);
  }
}

@keyframes pulseFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-40px) rotate(0deg);
  }
  75% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes scaleInWidth {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
}
}

/* additional about page enhancements appended below */

/* firm section background shapes (if not already) */
.gms-about-firm-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.gms-about-firm-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,197,245,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 12s ease-in-out infinite;
  z-index: 0;
}
.gms-about-firm-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254,189,16,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 14s ease-in-out infinite reverse;
  z-index: 0;
}

.gms-about-firm-image img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.gms-about-firm-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.gms-about-firm-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  position: relative;
  z-index: 1;
}
.gms-about-firm-content.gms-animate {
  opacity: 1;
  transform: none;
}

/* benefits grid & cards*/
.gms-about-benefits-section {
  padding: 80px 0;
  background: #f9fcff;
  position: relative;
  overflow: hidden;
}
.gms-about-benefits-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51,182,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 10s ease-in-out infinite;
  z-index: 0;
}
/* override container inside benefits to behave as block center */
.gms-about-benefits-section .gms-about-container {
  display: block;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.gms-about-benefits-grid {
  display: grid;
  /* show two cards per row by default */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: stretch;
}

/* on smaller screens fall back to single column */
@media (max-width: 768px) {
  .gms-about-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.gms-about-benefit-card {
  /* Removed max-width to allow cards to fill the 3-column space evenly */
  width: 100%; 
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
  /* Note: Ensure you have JS or a CSS keyframe to handle these 
     if you want them to actually appear! */
  opacity: 0;
  transform: translateY(40px);
}
.gms-about-benefit-card.gms-animate {
  opacity: 1;
  transform: none;
}
.gms-about-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.gms-about-benefit-card .gms-about-dot {
  transition: transform 0.3s ease;
}
.gms-about-benefit-card:hover .gms-about-dot {
  transform: scale(1.2);
}

/* documents section */
.gms-about-documents-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.gms-about-documents-section::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(42,197,245,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 13s ease-in-out infinite;
  z-index: 0;
}
.gms-about-doc-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}
.gms-about-documents-content,
.gms-about-documents-image {
  flex: 1 1 450px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  position: relative;
  z-index: 1;
}
.gms-about-documents-content.gms-animate,
.gms-about-documents-image.gms-animate {
  opacity: 1;
  transform: none;
}
.gms-about-doc-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.gms-about-number {
  font-size: 24px;
  font-weight: 700;
  color: #33B6FF;
  min-width: 50px;
}

/* responsive tweaks below if needed */


@keyframes floatCloud {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(30px) translateY(-15px);
  }
}

@keyframes floatPerson {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
  .home-contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .home-contact-left,
  .home-contact-form-wrapper {
    width: 100%;
  }

  .home-contact-form {
    padding: 40px;
  }

  .about-experience {
    position: relative;
    left: 0;
    margin-top: 30px;
    transform: none;
  }

  .site-title {
    font-size: 36px;
  }

  .home-process-header h2 {
    font-size: 40px;
  }

  .home-contact-left h2 {
    font-size: 36px;
  }

  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-testimonial-aside {
    padding: 30px;
  }

  .home-testimonial-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .home-form-row input,
  .home-form-row select {
    width: 100%;
  }

  .about-img .img-2 {
    width: 200px;
    right: -20px;
    bottom: -30px;
  }

  .home-process-step {
    width: 45%;
    margin-bottom: 30px;
  }

  .home-process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-process-rocket {
    width: 80px;
    right: 20px;
    top: 40px;
  }

  .site-title {
    font-size: 28px;
  }

  .home-process-header h2 {
    font-size: 32px;
  }

  .home-contact-left h2 {
    font-size: 32px;
  }

  .home-testimonial-aside {
    padding: 25px;
  }

  .home-testimonial-card {
    padding: 40px 30px;
  }

  .home-testimonial-nav {
    justify-content: center;
  }

  .counter-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .counter-box .icon {
    width: 70px;
    height: 70px;
  }

  .counter-box .counter {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 24px;
  }

  .home-process-header h2 {
    font-size: 26px;
  }

  .home-contact-left h2 {
    font-size: 26px;
  }

  .home-testimonial-aside {
    padding: 20px;
  }

  .home-testimonial-aside h2 {
    font-size: 28px;
  }

  .home-testimonial-card {
    padding: 35px 25px;
  }

  .home-testimonial-nav {
    justify-content: center;
  }

  .home-stars {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .home-stat span {
    font-size: 28px;
  }

  .home-process-rocket {
    display: none;
  }

  .home-cloud,
  .home-tree,
  .home-person {
    display: none;
  }

  .counter-box {
    flex-direction: column;
    padding: 25px 15px;
  }

  .about-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-contactform-wrapper {
    padding: 30px 20px;
  }
}

/* generic reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.gms-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- ABOUT PAGE ENHANCEMENTS ---------- */

.gms-about-firm-section {
  background: #f9fcff;
  padding: 100px 0 120px;
  position: relative;
}

.gms-about-firm-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51,182,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 12s ease-in-out infinite;
  z-index: 0;
}

.gms-about-firm-section::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254,189,16,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 14s ease-in-out infinite reverse;
  z-index: 0;
}

.gms-about-firm-image,
.gms-about-firm-content {
  z-index: 1;
}

.gms-about-firm-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}
.gms-about-firm-image img:hover {
  transform: translateY(-10px) scale(1.02);
}

.gms-about-firm-content h2 {
  font-size: 40px;
  color: #0A1D43;
  animation: slideInUp 0.8s ease forwards;
  opacity: 0;
}

.gms-about-firm-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4b5563;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Benefits grid */
.gms-about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.gms-about-benefit-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.gms-about-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.gms-about-benefit-card h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 10px;
  color: #081f3a;
}

.gms-about-benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.gms-about-dot {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #33B6FF;
}
.gms-about-dot.yellow { background: #febd10; }

/* Process list animations */
.gms-about-doc-list .gms-about-doc-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.gms-about-number { 
  background: linear-gradient(135deg,#2ac5f5,#febd10);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

/* Reveal animations when in view */
.gms-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive adjustments */
@media(max-width:992px){
  .gms-about-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .gms-about-firm-image img {
    max-width: 100%;
  }
}

@media(max-width:768px){
  .gms-about-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px){
  .gms-about-firm-content h2 { font-size: 30px; }
}

