/* ===================================
   GLOBAL VARIABLES
=================================== */
:root {
  --primary: #2f04a5;
  --primary-dark: #25025b;
  --accent: #01e1bf;
  --white: #ffffff;
  --black: #000000;
  --gray: #f5f5f5;
}

/* ===================================
   RESET
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  font-family: 'INTER',Arial,"Helvetica Neue",Helvetica,sans-serif;
  background: #f3f2f7;
  color: var(--black);
}
/* ===================================
   CONTAINER
=================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===================================
   HEADER
=================================== */
.main-header {
  width: 100%;
  background: var(--gray);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* UPDATED FLEX STRUCTURE */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* RIGHT GROUP */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ===================================
   LOGO
=================================== */
.logo img {
  height: 88px;
}

/* ===================================
   NAV MENU
=================================== */
.nav-menu {
  display: flex;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.1s ease-in-out;
}

/* Active + Hover */
.menu li.current-menu-item a,
.menu li a:hover {
  color: var(--accent);
}

/* Underline effect */
.menu li.current-menu-item a::after,
.menu li a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--accent);
  left: 0;
  bottom: -6px;
  border-radius: 10px;
  transition: all 0.1s ease-in-out;
}

/* ===================================
   RIGHT SECTION
=================================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Search Icon */
.search-icon i {
  font-size: 18px;
  cursor: pointer;
  color: var(--black);
}

/* Contact Button */
.contact-btn {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--primary);
}

/* ===================================
   MOBILE
=================================== */
.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {

  .nav-menu {
    display: none;
  }

  .header-right {
    display: none;
  }

  .header-right-group {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}
/* ===================================
   CTA SECTION
=================================== */
.footer-cta {
  position: absolute;
  margin-left: 10%;
  top: -25%;
}

.cta-container {
  width: 80vw;
  background: #e6eaed;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  z-index: 2;
  gap: 4%;
  box-shadow: -1px 13px 11px 6px rgb(0 0 0 / 42%);
}

.cta-content {
  max-width: 600px;
}

.cta-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.cta-btn {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.cta-image img {
  max-height: 160px;
}

/* ===================================
   FOOTER
=================================== */
.main-footer {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.footer-content {
  background: #fff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 80px 0;
}
.foo-about{
  padding-right: 40px;
  text-align: justify;
}
.footer-logo img {
  height: 80px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
  line-height: 30px;
}

.footer-menu li a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
}
.footer-menu li a:hover {
  text-decoration: none;
  color: var(--accent);
  font-size: 14px;
}

/* ===================================
   FOOTER CONTACT
=================================== */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 45px;
}

/* Icons */
.footer-contact i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
}

/* Text */
.footer-contact span {
  line-height: 1.5;
}

.footer-contact a {
  color: var(--black);
  text-decoration: none;
}

/* ===================================
   SOCIAL
=================================== */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  padding: 20px 20px 0 20px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ===================================
   COPYRIGHT
=================================== */
.footer-bottom {
  background: var(--primary-dark);
  text-align: center;
  padding: 15px;
  color: var(--white);
  font-size: 14px;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* Slides */
.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 5; 
}

/* Glass content box */
.hero-content {
  background: rgba(245, 245, 245, 0.2);
  padding: 30px 40px;
  border-radius: 10px;
  color: var(--white);
  max-width: 650px;
}

/* Heading */
.hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* Arrow circle */
.hero-btn span {
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 50%;
  padding: 5px 10px;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots .active {
  background: var(--white);
}
/* ===================================
   HERO RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {

  .hero {
    height: 70vh;
  }

  .hero-content {
    max-width: 500px;
    padding: 25px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-overlay {
    left: 5%;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .hero {
    height: 65vh;
  }

  .hero-overlay {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-content {
    text-align: center;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-btn {
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.hero-arrow,
.hero-dots {
  z-index: 10;
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-btn {
    font-size: 13px;
  }

  .hero-dots span {
    width: 8px;
    height: 8px;
  }
}

/* ===================================
   ABOUT SECTION
=================================== */
.about-section {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

/* Header */
.section-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
  text-align: center;
}

.section-header .underline {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 15px;
  border-radius: 10px;
}

.section-header p {
  max-width: 800px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

/* ===================================
   LEFT IMAGES
=================================== */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.img-big {
  grid-row: span 2;
}

/* FIX IMAGE DIMENSIONS */
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ===================================
   RIGHT CONTENT (NO CARDS)
=================================== */
.about-right {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Icon */
.about-icon {
  min-width: 55px;
  height: 55px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

/* Content */
.about-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.about-block p {
  font-size: 14px;
  line-height: 1.6;
}

/* Button */
.about-btn {
  margin-top: 10px;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .img-big {
    grid-row: span 1;
  }

  .about-right {
    text-align: center;
  }

  .about-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
}
/* ===================================
   SERVICES SECTION
=================================== */
.services-section {
  padding: 80px 0;
  text-align: center;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* Card */
.service-card {
  text-align: center;
  position: relative;
}

/* Content */
.service-content {
  margin-top: 20px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-content p {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* Button */
.services-btn {
  margin-top: 40px;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content h3 {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .services-section {
    padding: 60px 0;
  }

}

/* ===================================
   BUTTON SYSTEM
=================================== */
.primary-btn,
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icon Circle */
.btn-icon {
  width: 34px;
  height: 34px;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-icon i {
  font-size: 14px;
}

/* ===================================
   HOVER EFFECT
=================================== */
.primary-btn:hover,
.hero-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Icon animation */
.primary-btn:hover .btn-icon,
.hero-btn:hover .btn-icon {
  transform: translateX(6px);
  background: var(--accent);
  color: var(--black);
}
/* ===================================
   SCROLL ANIMATION
=================================== */

/* Initial hidden state */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Visible state */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: slight delay variations */
.fade-delay-1 { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }
.fade-delay-3 { transition-delay: 0.6s; }

/* ===================================
   STATS SECTION
=================================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent), #5fd3c4);
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.stat-card {
  background: var(--white);
  padding: 35px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

/* Hover */
.stat-card:hover {
  transform: translateY(-6px);
}

/* Number */
.stat-card h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--black);
}

/* Text */
.stat-card p {
  font-size: 14px;
  color: #555;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .stat-card h2 {
    font-size: 28px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .stats-section {
    padding: 60px 0;
  }
}

/* ===================================
   CEO SECTION
=================================== */
.ceo-section {
  padding: 80px 0;
}

/* Layout */
.ceo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

/* Image */
.ceo-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 60vh;
}

/* Content */
.ceo-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Quote */
.ceo-quote {
  font-style: italic;
  margin: 20px 0;
  padding-left: 15px;
  border-left: 4px solid var(--accent);
}

/* Name */
.ceo-name {
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-name span {
  font-weight: 400;
  color: #555;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .ceo-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ceo-quote {
    border-left: none;
    border-top: 4px solid var(--accent);
    padding-left: 0;
    padding-top: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .ceo-section {
    padding: 60px 0;
  }

  .ceo-content p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .ceo-image img {
    border-radius: 10px;
  }
}

/* ===================================
   PRODUCTS SLIDER
=================================== */
.products-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

/* Wrapper */
.products-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Track */
.products-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD (BIG + SHADOW) */
.product-card {
  min-width: calc(33.33% - 20px);
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

/* CONTENT */
.product-content {
  margin-top: 15px;
}

.product-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-content p {
  font-size: 13px;
  color: #777;
}

/* ARROWS */
.product-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
}

.product-arrow.prev {
  left: -10px;
}

.product-arrow.next {
  right: -10px;
}

/* DOTS */
.product-dots {
  margin-top: 20px;
}

.product-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.product-dots .active {
  background: var(--primary);
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .product-card {
    min-width: calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-card {
    min-width: 100%;
  }

  .product-img img {
    height: 200px;
  }
}

/* ===================================
   TESTIMONIAL SECTION
=================================== */
.testimonial-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  min-height: 320px; /* 🔥 FIXED HEIGHT */
}

/* Card */
.testimonial-card {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 50px 40px;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Quote Icons */
.quote-icon {
  position: absolute;
  font-size: 60px;
  color: #4c6ef5;
  opacity: 0.3;
}

.quote-icon.left {
  top: 10px;
  left: 20px;
}

.quote-icon.right {
  bottom: 10px;
  right: 20px;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* User */
.user-icon {
  width: 50px;
  height: 50px;
  background: #4c6ef5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
}

.testimonial-user h4 {
  margin-bottom: 10px;
}

/* Stars */
.stars i {
  color: #f59e0b;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}
.testimonial-card.prev {
  transform: translateX(-40px);
  opacity: 0;
}

.testimonial-dots .active {
  background: var(--primary);
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    padding: 40px 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 30px 20px;
  }
}
/* ===================================
   WHY CHOOSE SECTION
=================================== */
.why-section {
  padding: 80px 0;
  text-align: center;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 5%;
}

/* Item */
.why-item {
  text-align: center;
  padding: 10px;
}

/* Icon */
.why-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 30px;
  color: var(--primary);
  transition: 0.3s;
}

/* Hover */
.why-item:hover .why-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

/* Title */
.why-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
}

/* Underline */
.why-item h3::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin: 6px auto 0;
}

/* Text */
.why-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Large Tablet */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .why-icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-section {
    padding: 60px 0;
  }

  .why-item p {
    font-size: 13px;
  }
}

/* ===================================
   INNER HERO
=================================== */
.inner-hero {
  background: linear-gradient(135deg, #2e1a5f, #3c2f80);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.inner-hero h1 {
  font-size: 42px;
}

.inner-hero p {
  margin-top: 10px;
  opacity: 0.8;
}

/* ===================================
   ABOUT PAGE LAYOUT
=================================== */

/* ===================================
   MISSION & VISION (PREMIUM)
=================================== */
.mission-section {
  padding: 80px 0;
  background: #f3f2f7;
}

/* Grid */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 150px;
}

/* Card */
.mission-card {
  background: #e9ecef;
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  transition: 0.3s ease;
}

/* Hover */
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.mission-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--black);
}

/* Title */
.mission-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Text */
.mission-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 400px;
  margin: auto;
}
.mission-card {
  background: linear-gradient(135deg, #fff, #e9ecef, #fff, #e9ecef);
}
/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mission-card {
    padding: 35px 25px;
  }

  .mission-icon {
    font-size: 32px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mission-section {
    padding: 60px 0;
  }
}

/* ===================================
   FRONT PAGE + FOOTER MOBILE
=================================== */
@media (max-width: 992px) {
  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .header-flex {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .logo img {
    height: 68px;
  }

  .hero-overlay {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
  }

  .hero-content {
    max-width: 100%;
    padding: 22px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-btn {
    padding: 10px 18px;
  }
  .testimonial-slider{
    overflow: hidden;
  }

  .footer-cta {
    position: static;
    margin: 0;
    padding: 30px 0 0;
  }

  .cta-container {
    width: 100%;
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    box-shadow: none;
    background: #e6eaed;
  }

  .cta-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 20px;
  }

  .foo-about {
    padding-right: 0;
    text-align: center;
  }

  .footer-contact li {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }

  .footer-social {
    justify-content: left;
    padding-top: 10px;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-overlay {
    width: 95%;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-btn {
    justify-content: center;
    padding: 12px 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  .footer-content {
    padding: 60px 0 30px;
  }

  .footer-bottom {
    padding: 18px 10px;
  }
  .img-small {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 10px 0;
  }

  .logo img {
    height: 56px;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-btn {
    padding: 10px 14px;
    gap: 8px;
  }

  .cta-container {
    padding: 22px 14px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .footer-menu li,
  .footer-contact li {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
/* ===================================
   SERVICES PAGE
=================================== */
.services-page {
  padding: 80px 0;
  margin-bottom: 150px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.service-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Title */
.service-card h3 {
  margin-bottom: 10px;
}

/* Text */
.service-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================
   PRODUCTS PAGE
=================================== */
.products-page {
  padding: 80px 0;
  margin-bottom: 200px;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Box */
.product-box {
  text-align: center;
  transition: 0.3s;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-box:hover {
  transform: translateY(-8px);
}

/* Image */
.product-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

/* Title */
.product-box h3 {
  margin-top: 10px;
}

/* Text */
.product-box a p {
  text-align: justify;
  font-size: 13px;
  color: #666;
}


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

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   SINGLE PRODUCT
=================================== */
.single-product {
  padding: 80px 0;
  margin-bottom: 200px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.product-image img {
  width: 100%;
  border-radius: 20px;
}

/* Content */
.product-content {
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}
/* ===================================
   SINGLE SERVICE
=================================== */
.single-service {
  padding: 80px 0;
  margin-bottom: 200px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.service-image img {
  width: 100%;
  border-radius: 20px;
}

/* Content */
.service-content {
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   CONTACT HERO FIXED
=================================== */

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.contact-left {
  max-width: 650px;
}

/* Logo */
.contact-logo {
  width: 150px;
  margin-bottom: 20px;
}

/* Line */
.contact-line {
  width: 100px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 20px;
}

/* Heading */
.contact-left h2 {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Office Grid */
.office-grid {
  display: grid;
  gap: 20px;
}

/* Divider */
.divider {
  width: 1px;
  background: #ccc;
}

/* Right side (EMPTY SPACE CONTROL) */
.contact-wrapper > :last-child {
  min-height: 300px;
}

/* Titles */
.office-grid h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.office-grid h3 i{
  color: var(--accent);
  margin-right: 10px;
}

/* Text */
.office-grid p {
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   CONTACT FORM (UPGRADED)
=================================== */
.contact-form-section {
  padding: 80px 0;
  background: #fff;
}

/* Layout */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* Left */
.form-left h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.form-left p {
  color: #666;
}
.form-left ul{
  list-style-type: none;
  margin-bottom: 25px;
}
.form-left ul li{
  padding: 15px 0;
}
.form-left ul li a{
  text-decoration: none;
  color:var(--primary-dark);
}
.form-left ul li i{
  color: var(--accent);
  margin-right: 10px;
}
/* FORM CARD */
.form-right {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ===================================
   FLUENT FORM CUSTOM STYLE
=================================== */
.form-right .ff-el-group {
  margin-bottom: 15px;
}

.form-right input,
.form-right textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  font-size: 14px !important;
}

.form-right input:focus,
.form-right textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: none !important;
}

/* Button */
.form-right .ff-btn-submit {
  background: var(--primary-dark) !important;
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 30px !important;
  border: none !important;
  font-weight: 500;
  transition: 0.3s;
}

.form-right .ff-btn-submit:hover {
  background: var(--primary) !important;
}

/* Labels */
.form-right label {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Error */
.form-right .ff-el-is-error input,
.form-right .ff-el-is-error textarea {
  border-color: red !important;
}

/* Success */
.fluentform .ff-message-success {
  background: #e6fff5;
  color: #0a8f5b;
  border-radius: 8px;
}

/* ===================================
   ADDRESS STRIP (FIXED)
=================================== */
.contact-strip {
  background: var(--primary-dark);
  color: #fff;
  padding: 50px 0;
  margin-bottom: 250px;
}

/* Grid */
.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

/* Divider */
.strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

/* Titles */
.contact-strip h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* Text */
.contact-strip p {
  font-size: 14px;
  line-height: 1.5;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 992px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper::after {
    display: none;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .strip-divider {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .contact-left h2 {
    font-size: 22px;
  }

  .contact-logo {
    width: 130px;
  }
}

/* ===================================
   BLOG SECTION
=================================== */
.blog-section {
  padding: 80px 0;
  background: #f3f2f7;
  margin-bottom: 200px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Hover */
.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 20px;
}

/* Meta */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* Title */
.blog-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-content h3 a {
  text-decoration: none;
  color: var(--black);
}

/* Text */
.blog-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

/* Read More */
.read-more {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* ===================================
   RESPONSIVE
=================================== */

/* Tablet */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===================================
   BLOG HERO
=================================== */
.blog-hero {
  background: var(--primary-dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 32px;
  max-width: 800px;
  margin: auto;
  line-height: 1.4;
}

.breadcrumb {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 10px;
}

/* ===================================
   BLOG CONTENT
=================================== */
.single-blog {
  padding: 60px 0;
  background: #f3f2f7;
  margin-bottom: 200px;
}

/* Container */
.blog-container {
  max-width: 850px;
  margin: auto;
}

/* Image */
.blog-featured img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Meta */
.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Content */
.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.blog-content p {
  margin-bottom: 15px;
}

/* Share */
.blog-share {
  margin-top: 30px;
  font-size: 14px;
}

.blog-share a {
  margin-left: 10px;
  text-decoration: none;
  color: var(--primary);
}

/* ===================================
   COMMENTS
=================================== */
.blog-comments {
  margin-top: 40px;
  border-top: solid 2px #ccc;
  padding-top: 20px;
}

/* Form */
.comment-form textarea,
.comment-form input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

/* Button */
.comment-form input[type="submit"] {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}

.comment-form input[type="submit"]:hover {
  background: var(--primary);
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 24px;
  }
}
.about-left h2, .about-right h2{
  font-size: 2.5rem;
        line-height: 5.5rem;
}
.about-right ul, .about-left ul{
  list-style: none;
  text-align: left;
}
.form-right > p{
  color: #807e7e
}
.services-page .container > h2, .products-page .container > h2{
  text-align: center;
}
.services-page .container > h2::after, .products-page .container > h2::after{
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent);
  display: block;
  margin: 6px auto 0;
}
.services-page .container > p, .products-page .container > p{
  text-align: center;
  color: #807e7e;
  padding:20px 0;
}
.services-page .container > h3{
  text-align: center;
  color: var(--primary);
  padding: 40px 0;
}

/* ===================================
   SEARCH MODAL
=================================== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

/* ACTIVE */
.search-modal.active {
  display: block;
}

/* Overlay */
.search-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Content */
.search-modal-content {
  position: relative;
  top: 30%;
  transform: translateY(-30%);
  width: 100%;
  max-width: 600px;
  margin: auto;
  z-index: 2;
}

/* Form */
.search-modal-content form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

/* Input */
.search-modal-content input {
  flex: 1;
  padding: 18px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

/* Button */
.search-modal-content button {
  background: var(--primary-dark);
  border: none;
  color: #fff;
  padding: 0 25px;
  cursor: pointer;
  font-size: 16px;
}

.search-modal-content button:hover {
  background: var(--primary);
}

/* ===================================
   MOBILE DRAWER MENU (SMOOTH)
=================================== */

/* Wrapper always present */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  /* hidden state */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Active */
.mobile-menu-drawer.active {
  visibility: visible;
  opacity: 1;
}

/* Overlay */
.mobile-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* Drawer */
.mobile-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 20px;

  /* animation */
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Slide in */
.mobile-menu-drawer.active .mobile-drawer {
  transform: translateX(0);
}

/* Header */
.mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.mobile-header span {
  font-size: 20px;
  cursor: pointer;
}

/* Menu */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  padding-top: 20px;
    border-top: 2px solid #27165b;
}

.mobile-menu-list li {
  margin-bottom: 48px;
}

.mobile-menu-list li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* CTA */
.mobile-contact-btn {
  margin-top: auto;
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
}
.cert-section{
  padding: 60px 0;
  background: #f3f2f7;
}
.cert-wrapper{
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cert-item{
  display: flex;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.cert-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cert-item.reverse{
  flex-direction: row-reverse;
}

.cert-image{
  flex: 0 0 340px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px;
  position: relative;
  cursor: zoom-in;
}

.cert-image img{
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.cert-image::after{
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.25s ease;
}

.cert-image:hover::after{
  opacity: 1;
  transform: scale(1);
}

.cert-text{
  flex: 1;
}

.cert-text h3{
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.cert-text h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--accent);
}

.cert-text p{
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* CERT IMAGE MODAL */
.cert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.cert-modal.active {
  display: block;
}

.cert-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.cert-modal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  max-width: 800px;
  margin: auto;
  z-index: 2;
  text-align: center;
}

.cert-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.cert-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-dark);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SECTION */
.vimanshu-about-section {
    width: 100%;
    padding-top: 60px;  
    /* SIDE BY SIDE */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.vimanshu-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    min-height: 320px;
}

/* HOVER */
.vimanshu-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* INNER LAYOUT */
.vimanshu-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vimanshu-right-content{
  text-align: left;
}
/* HEADINGS */
.vimanshu-left-content h2,
.vimanshu-right-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 22px;
}

/* TEXT */
.vimanshu-right-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* LIST */
.vimanshu-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vimanshu-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 12px;
    color: #333;
    line-height: 1.2;
    font-weight: 500;
}

/* CHECK ICON */
.vimanshu-feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b63ce;
    font-size: 16px;
    font-weight: bold;
}

/* TABLET */
@media (max-width: 992px) {

    .vimanshu-about-section {
        grid-template-columns: 1fr;
    }

    .vimanshu-left-content h2,
    .vimanshu-right-content h2 {
        font-size: 32px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
	.cert-wrapper{
		padding: 0;
		gap: 24px;
	}

	.cert-item,
	.cert-item.reverse{
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 24px;
	}

	.cert-image{
		flex: 0 0 auto;
		width: 100%;
	}

	.cert-text h3{
		padding-left: 0;
	}

	.cert-text h3::before{
		display: none;
	}

    .vimanshu-about-section {
        padding: 40px 20px;
        gap: 20px;
    }

    .vimanshu-info-card {
        padding: 24px;
        min-height: auto;
    }

    .vimanshu-left-content h2,
    .vimanshu-right-content h2 {
        font-size: 26px;
    }

    .vimanshu-feature-list li,
    .vimanshu-right-content p {
        font-size: 15px;
    }
}