.elementor-5365 .elementor-element.elementor-element-0d62b74{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c97c9a1 *//* --- Devyom Brand Colors --- */
:root {
  --devyom-navy: #1C457D;      
  --devyom-blue: #3A8ECA;      
  --devyom-gold: #F6B128;      
  --devyom-bg: #F8FAFC;
  --devyom-text: #334155;
  --devyom-white: #ffffff;
}

.devyom-modern-wrapper {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: var(--devyom-bg);
  color: var(--devyom-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- 1. Hero Banner with Slider --- */
.devyom-hero-slider {
  position: relative; height: 60vh; min-height: 450px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 0 5%;
}
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; animation: bgFade 15s infinite; z-index: 1;
}

/* Replace these with your actual Surveying / Topo images */

.slide-1 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/08/ser1-scaled.png'); animation-delay: 5s; }
.slide-2 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/08/ser2-scaled.png'); animation-delay: 5s; }
.slide-3 { background-image: url('https://devyom.co.in/wp-content/uploads/2026/08/ser3-scaled.png'); animation-delay: 10s; }

@keyframes bgFade {
  0% { opacity: 0; transform: scale(1); }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

.devyom-hero-slider::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(28, 69, 125, 0.9) 0%, rgba(17, 42, 79, 0.8) 100%); z-index: 2;
}
.devyom-hero-slider::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: var(--devyom-gold); z-index: 3;
}
.devyom-hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 3; }
.devyom-badge {
  display: inline-block; background: rgba(246, 177, 40, 0.15); color: var(--devyom-gold); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 25px; border: 1px solid rgba(246, 177, 40, 0.4);
}
.devyom-hero-slider h1 { color: var(--devyom-white); font-size: 46px; font-weight: 800; margin: 0 0 20px 0; line-height: 1.2; }
.devyom-hero-slider p { color: #e2e8f0; font-size: 18px; line-height: 1.6; }

/* --- 2. Stats Section --- */
.devyom-stats-section { 
  background: var(--devyom-white); 
  padding: 30px 5%; 
  border-bottom: 1px solid #e2e8f0; 
}
.stats-grid { 
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; 
  max-width: 1000px; 
  margin: 0 auto; 
}
.stat-box { display: flex; align-items: center; gap: 15px; padding: 10px; }
.stat-icon { font-size: 32px; color: var(--devyom-blue); } 
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--devyom-navy); line-height: 1.1; }
.stat-text { font-size: 14px; font-weight: 500; color: var(--devyom-text); text-transform: uppercase; }

/* --- 3. Core Services Grid --- */
.devyom-services-section, .devyom-engineering-section, .devyom-process-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.devyom-section-header { text-align: center; margin-bottom: 50px; }
.devyom-section-header h2 { color: var(--devyom-navy); font-size: 36px; font-weight: 700; margin: 0 0 15px 0; }
.devyom-section-header p { font-size: 18px; color: var(--devyom-text); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto;}
.header-underline { width: 60px; height: 4px; background-color: var(--devyom-gold); margin: 0 auto; border-radius: 2px; }

.devyom-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.devyom-service-card { 
  background-color: var(--devyom-white); border-radius: 12px; padding: 40px 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04); transition: all 0.4s ease; border-top: 4px solid transparent; display: block;
}
.devyom-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(28, 69, 125, 0.1); border-top: 4px solid var(--devyom-blue); }
.devyom-icon-wrapper { width: 60px; height: 60px; background: rgba(28, 69, 125, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.devyom-icon-wrapper i { font-size: 26px; color: var(--devyom-navy); transition: color 0.3s ease, transform 0.3s ease; }
.devyom-service-card:hover .devyom-icon-wrapper { background: var(--devyom-navy); }
.devyom-service-card:hover .devyom-icon-wrapper i { color: var(--devyom-gold); transform: scale(1.1); }
.devyom-service-card h3 { color: var(--devyom-navy); font-size: 20px; font-weight: 700; margin: 0 0 15px 0; }
.devyom-service-list { list-style: none; padding: 0; margin: 0; }
.devyom-service-list li { font-size: 14px; color: var(--devyom-text); margin-bottom: 12px; display: flex; align-items: flex-start; line-height: 1.5; }
.devyom-service-list li i { color: var(--devyom-blue); font-size: 12px; margin-top: 5px; margin-right: 10px; }

/* --- NEW: Process Timeline --- */
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.process-step { position: relative; padding: 20px; }
.step-number {
  width: 60px; height: 60px; background: var(--devyom-navy); color: var(--devyom-white); font-size: 24px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; border: 4px solid var(--devyom-white); box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.process-step h4 { color: var(--devyom-navy); font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--devyom-text); }

/* --- NEW: Industry Slider --- */
.industry-slider-section { background: var(--devyom-white); padding: 50px 0; text-align: center; overflow: hidden; border-top: 1px solid #e2e8f0; }
.industry-slider-section h3 { color: var(--devyom-navy); margin-bottom: 30px; font-size: 24px; }
.industry-slider { width: 100%; position: relative; }
.industry-track { display: flex; width: calc(250px * 10); animation: slideScroll 20s linear infinite; }
.industry-item { 
  width: 250px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 18px; font-weight: 600; color: var(--devyom-navy); 
}
.industry-item i { color: var(--devyom-gold); font-size: 24px; }
@keyframes slideScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }


/* --- 4. Engineering Checklist & Fixed Images --- */
.devyom-engineering-section { background: var(--devyom-bg); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;}
.eng-check-list { 
  list-style: none; padding: 0; margin: 0 auto 50px auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1000px;
}
.eng-check-list li { font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 12px; color: var(--devyom-text); background: var(--devyom-white); padding: 15px 20px; border-radius: 8px; border: 1px solid #e2e8f0;}
.eng-check-list i { color: var(--devyom-blue); font-size: 18px; }

/* FIXED IMAGE ALIGNMENT (Uniform Grid) */
.bess-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.bess-media-grid img {
  width: 100%;
  height: 280px;
  object-fit: contain; 
  background-color: var(--devyom-white); 
  padding: 15px; 
  border-radius: 12px;
  border: 2px solid var(--devyom-blue);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bess-media-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(28, 69, 125, 0.2);
}

/* --- 5. Why Choose Us (Navy Background with Skill Bars) --- */
.devyom-new-why-us {
  background: var(--devyom-navy); 
  padding: 100px 5%;
  position: relative;
}
.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.why-us-content { flex: 1; color: var(--devyom-white); }
.why-us-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: var(--devyom-white); }
.why-us-content p { font-size: 18px; color: #cbd5e1; margin-bottom: 40px; line-height: 1.6; }
.header-underline-left { width: 60px; height: 4px; background: var(--devyom-gold); margin-bottom: 30px; border-radius: 2px; }

/* Animated Graphs/Skill bars */
.skill-bars { margin-bottom: 40px; }
.skill-bar { margin-bottom: 20px; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 15px; font-weight: 600; color: #e2e8f0; }
.progress-bg { background: rgba(255, 255, 255, 0.1); border-radius: 10px; height: 8px; overflow: hidden; }
.progress-fill { background: var(--devyom-gold); height: 100%; border-radius: 10px; }

/* Glassmorphism Cards Grid */
.why-us-grid {
  flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 12px; transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(246, 177, 40, 0.15); border-color: var(--devyom-gold); transform: translateY(-5px);
}
.why-icon {
  width: 50px; height: 50px; background: var(--devyom-gold); color: var(--devyom-navy); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 24px; margin-bottom: 20px;
}
.why-card h4 { color: var(--devyom-white); font-size: 20px; font-weight: 600; margin: 0 0 10px 0; }
.why-card p { color: #94a3b8; font-size: 14px; margin: 0; line-height: 1.5; }

/* Button */
.devyom-btn-gold {
  display: inline-block; background: var(--devyom-gold); color: var(--devyom-navy); padding: 16px 40px; border-radius: 30px; font-weight: 700; font-size: 18px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
}
.devyom-btn-gold:hover {
  transform: translateY(-3px); box-shadow: 0 10px 20px rgba(246, 177, 40, 0.3);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .why-us-container { flex-direction: column; text-align: center; }
  .header-underline-left { margin: 0 auto 30px auto; }
  .skill-info { justify-content: center; gap: 15px; }
}
@media (max-width: 768px) { 
  .devyom-hero-slider h1 { font-size: 32px; }
  .devyom-section-header h2 { font-size: 28px; }
  .devyom-service-card { padding: 30px 20px; }
  .bess-media-grid { grid-template-columns: 1fr; }
  .bess-media-grid img { height: auto; max-height: 300px; }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-content h2 { font-size: 32px; }
}/* --- Devyom Brand Colors --- */
:root {
  --devyom-navy: #1C457D;      
  --devyom-blue: #3A8ECA;      
  --devyom-gold: #F6B128;      
  --devyom-bg: #F8FAFC;
  --devyom-text: #334155;
  --devyom-white: #ffffff;
}

.devyom-modern-wrapper {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: var(--devyom-bg);
  color: var(--devyom-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- 1. Hero Banner with Slider --- */
.devyom-hero-slider {
  position: relative; height: 60vh; min-height: 450px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 0 5%;
}
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; animation: bgFade 15s infinite; z-index: 1;
}

/* Replace these with your actual Surveying / Topo images */
.slide-1 { background-image: url('https://devyom.co.in/wp-content/uploads/2025/12/land-survey-msgeotech.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('https://devyom.co.in/wp-content/plugins/elementor/assets/images/placeholder.png'); animation-delay: 5s; }
.slide-3 { background-image: url('https://devyom.co.in/wp-content/plugins/elementor/assets/images/placeholder.png'); animation-delay: 10s; }

@keyframes bgFade {
  0% { opacity: 0; transform: scale(1); }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

.devyom-hero-slider::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(28, 69, 125, 0.9) 0%, rgba(17, 42, 79, 0.8) 100%); z-index: 2;
}
.devyom-hero-slider::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: var(--devyom-gold); z-index: 3;
}
.devyom-hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 3; }
.devyom-badge {
  display: inline-block; background: rgba(246, 177, 40, 0.15); color: var(--devyom-gold); padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 25px; border: 1px solid rgba(246, 177, 40, 0.4);
}
.devyom-hero-slider h1 { color: var(--devyom-white); font-size: 46px; font-weight: 800; margin: 0 0 20px 0; line-height: 1.2; }
.devyom-hero-slider p { color: #e2e8f0; font-size: 18px; line-height: 1.6; }

/* --- 2. Stats Section --- */
.devyom-stats-section { 
  background: var(--devyom-white); 
  padding: 30px 5%; 
  border-bottom: 1px solid #e2e8f0; 
}
.stats-grid { 
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; 
  max-width: 1000px; 
  margin: 0 auto; 
}
.stat-box { display: flex; align-items: center; gap: 15px; padding: 10px; }
.stat-icon { font-size: 32px; color: var(--devyom-blue); } 
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--devyom-navy); line-height: 1.1; }
.stat-text { font-size: 14px; font-weight: 500; color: var(--devyom-text); text-transform: uppercase; }

/* --- 3. Core Services Grid --- */
.devyom-services-section, .devyom-engineering-section, .devyom-process-section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.devyom-section-header { text-align: center; margin-bottom: 50px; }
.devyom-section-header h2 { color: var(--devyom-navy); font-size: 36px; font-weight: 700; margin: 0 0 15px 0; }
.devyom-section-header p { font-size: 18px; color: var(--devyom-text); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto;}
.header-underline { width: 60px; height: 4px; background-color: var(--devyom-gold); margin: 0 auto; border-radius: 2px; }

.devyom-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.devyom-service-card { 
  background-color: var(--devyom-white); border-radius: 12px; padding: 40px 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04); transition: all 0.4s ease; border-top: 4px solid transparent; display: block;
}
.devyom-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(28, 69, 125, 0.1); border-top: 4px solid var(--devyom-blue); }
.devyom-icon-wrapper { width: 60px; height: 60px; background: rgba(28, 69, 125, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.devyom-icon-wrapper i { font-size: 26px; color: var(--devyom-navy); transition: color 0.3s ease, transform 0.3s ease; }
.devyom-service-card:hover .devyom-icon-wrapper { background: var(--devyom-navy); }
.devyom-service-card:hover .devyom-icon-wrapper i { color: var(--devyom-gold); transform: scale(1.1); }
.devyom-service-card h3 { color: var(--devyom-navy); font-size: 20px; font-weight: 700; margin: 0 0 15px 0; }
.devyom-service-list { list-style: none; padding: 0; margin: 0; }
.devyom-service-list li { font-size: 14px; color: var(--devyom-text); margin-bottom: 12px; display: flex; align-items: flex-start; line-height: 1.5; }
.devyom-service-list li i { color: var(--devyom-blue); font-size: 12px; margin-top: 5px; margin-right: 10px; }

/* --- NEW: Process Timeline --- */
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.process-step { position: relative; padding: 20px; }
.step-number {
  width: 60px; height: 60px; background: var(--devyom-navy); color: var(--devyom-white); font-size: 24px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; border: 4px solid var(--devyom-white); box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.process-step h4 { color: var(--devyom-navy); font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--devyom-text); }

/* --- NEW: Industry Slider --- */
.industry-slider-section { background: var(--devyom-white); padding: 50px 0; text-align: center; overflow: hidden; border-top: 1px solid #e2e8f0; }
.industry-slider-section h3 { color: var(--devyom-navy); margin-bottom: 30px; font-size: 24px; }
.industry-slider { width: 100%; position: relative; }
.industry-track { display: flex; width: calc(250px * 10); animation: slideScroll 20s linear infinite; }
.industry-item { 
  width: 250px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 18px; font-weight: 600; color: var(--devyom-navy); 
}
.industry-item i { color: var(--devyom-gold); font-size: 24px; }
@keyframes slideScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }


/* --- 4. Engineering Checklist & Fixed Images --- */
.devyom-engineering-section { background: var(--devyom-bg); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;}
.eng-check-list { 
  list-style: none; padding: 0; margin: 0 auto 50px auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1000px;
}
.eng-check-list li { font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 12px; color: var(--devyom-text); background: var(--devyom-white); padding: 15px 20px; border-radius: 8px; border: 1px solid #e2e8f0;}
.eng-check-list i { color: var(--devyom-blue); font-size: 18px; }

/* FIXED IMAGE ALIGNMENT (Uniform Grid) */
.bess-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.bess-media-grid img {
  width: 100%;
  height: 280px;
  object-fit: contain; 
  background-color: var(--devyom-white); 
  padding: 15px; 
  border-radius: 12px;
  border: 2px solid var(--devyom-blue);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bess-media-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(28, 69, 125, 0.2);
}

/* --- 5. Why Choose Us (Navy Background with Skill Bars) --- */
.devyom-new-why-us {
  background: var(--devyom-navy); 
  padding: 100px 5%;
  position: relative;
}
.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.why-us-content { flex: 1; color: var(--devyom-white); }
.why-us-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: var(--devyom-white); }
.why-us-content p { font-size: 18px; color: #cbd5e1; margin-bottom: 40px; line-height: 1.6; }
.header-underline-left { width: 60px; height: 4px; background: var(--devyom-gold); margin-bottom: 30px; border-radius: 2px; }

/* Animated Graphs/Skill bars */
.skill-bars { margin-bottom: 40px; }
.skill-bar { margin-bottom: 20px; }
.skill-info { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 15px; font-weight: 600; color: #e2e8f0; }
.progress-bg { background: rgba(255, 255, 255, 0.1); border-radius: 10px; height: 8px; overflow: hidden; }
.progress-fill { background: var(--devyom-gold); height: 100%; border-radius: 10px; }

/* Glassmorphism Cards Grid */
.why-us-grid {
  flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 30px; border-radius: 12px; transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.why-card:hover {
  background: rgba(246, 177, 40, 0.15); border-color: var(--devyom-gold); transform: translateY(-5px);
}
.why-icon {
  width: 50px; height: 50px; background: var(--devyom-gold); color: var(--devyom-navy); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 24px; margin-bottom: 20px;
}
.why-card h4 { color: var(--devyom-white); font-size: 20px; font-weight: 600; margin: 0 0 10px 0; }
.why-card p { color: #94a3b8; font-size: 14px; margin: 0; line-height: 1.5; }

/* Button */
.devyom-btn-gold {
  display: inline-block; background: var(--devyom-gold); color: var(--devyom-navy); padding: 16px 40px; border-radius: 30px; font-weight: 700; font-size: 18px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
}
.devyom-btn-gold:hover {
  transform: translateY(-3px); box-shadow: 0 10px 20px rgba(246, 177, 40, 0.3);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
  .why-us-container { flex-direction: column; text-align: center; }
  .header-underline-left { margin: 0 auto 30px auto; }
  .skill-info { justify-content: center; gap: 15px; }
}
@media (max-width: 768px) { 
  .devyom-hero-slider h1 { font-size: 32px; }
  .devyom-section-header h2 { font-size: 28px; }
  .devyom-service-card { padding: 30px 20px; }
  .bess-media-grid { grid-template-columns: 1fr; }
  .bess-media-grid img { height: auto; max-height: 300px; }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-content h2 { font-size: 32px; }
}/* End custom CSS */