:root {
  --orange: #f58220;
  --orange-dark: #d96500;
  --black: #101010;
  --soft-black: #1d1d1d;
  --white: #ffffff;
  --light: #fff7ef;
  --muted: #6b6b6b;
  --border: rgba(16, 16, 16, 0.1);
  --shadow: 0 18px 45px rgba(16, 16, 16, 0.14);
  --radius: 24px;
  --transition: 0.35s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Cairo', sans-serif; background: #fff; color: var(--black); overflow-x: hidden; line-height: 1.8; }
body.en { font-family: 'Manrope', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 95px 0; }
.section-heading { text-align: center; margin-bottom: 46px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: rgba(245,130,32,.12); color: var(--orange-dark); font-weight: 800; margin-bottom: 14px; font-size: .95rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.25; font-weight: 900; }
.section-heading p { color: var(--muted); max-width: 680px; margin: 14px auto 0; font-size: 1.06rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: none; outline: none; cursor: pointer; border-radius: 999px; padding: 13px 24px; font-weight: 800; transition: var(--transition); font-family: inherit; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 26px rgba(245,130,32,.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--orange); transform: translateY(-3px); }

.header { position: fixed; inset: 0 0 auto 0; z-index: 1000; background: #ffffff; backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.25rem; white-space: nowrap; }
.logo-icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg, var(--orange), #ffb15f); box-shadow: 0 12px 26px rgba(245,130,32,.28); font-size: 1.35rem; }
.logo span:last-child span { color: var(--orange); }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a { font-weight: 800; color: var(--soft-black); position: relative; transition: var(--transition); }
.nav-menu a::after { content: ''; position: absolute; width: 0; height: 3px; background: var(--orange); border-radius: 99px; right: 0; bottom: -8px; transition: var(--transition); }
body.en .nav-menu a::after { right: auto; left: 0; }
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-select { border: 1px solid var(--border); background: var(--white); padding: 10px 12px; border-radius: 14px; font-family: inherit; font-weight: 800; color: var(--black); cursor: pointer; }
.menu-toggle { width: 46px; height: 46px; border: none; display: none; border-radius: 14px; background: var(--black); color: var(--white); cursor: pointer; font-size: 1.25rem; transition: var(--transition); }
.menu-toggle:hover { background: var(--orange); }

.hero { padding-top: 82px; min-height: 100vh; background: var(--black); position: relative; overflow: hidden; }
.slider { position: relative; min-height: calc(100vh - 82px); }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s ease; display: flex; align-items: center; background-image: var(--slide-image); background-size: cover; background-position: center; }
.slide.active { opacity: 1; visibility: visible; }
.slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(16,16,16,.9), rgba(16,16,16,.65), rgba(245,130,32,.36)); }
body.en .slide::before { background: linear-gradient(90deg, rgba(16,16,16,.9), rgba(16,16,16,.65), rgba(245,130,32,.36)); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(10px); color: #ffd3aa; font-weight: 800; margin-bottom: 18px; }

 { font-size: clamp(2.4rem, 7vw, 2.7rem); line-height: 1.08; font-weight: 900; margin-bottom: 22px; }
.hero-content h1 span, .slogan-banner h2 span { color: var(--orange); }
.hero-content p { font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 650px; }
.hero-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.slider-dots { position: absolute; z-index: 3; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 13px; height: 13px; border-radius: 999px; border: 2px solid var(--white); background: transparent; cursor: pointer; transition: var(--transition); }
.dot.active { width: 38px; background: var(--orange); border-color: var(--orange); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.about-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.about-art::before { content: ''; position: absolute; width: 88%; height: 88%; border-radius: 44% 56% 48% 52% / 50% 40% 60% 50%; background: linear-gradient(135deg, rgba(245,130,32,.22), rgba(16,16,16,.08)); animation: blob 8s ease-in-out infinite; }
.about-shape { width: min(520px, 100%); aspect-ratio: 1 / 1; position: relative; z-index: 2; border-radius: 42% 90% 57% 88% / 60% 33% 86% 130%; overflow: hidden; box-shadow: var(--shadow); border: 10px solid var(--white); background: var(--light); }
.about-shape img { width: 100%; height: 100%; object-fit: cover; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.55); border-radius: 20px; padding: 16px 18px; box-shadow: 0 14px 36px rgba(16,16,16,.12); }
.floating-card i { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--orange); color: var(--white); }
.floating-card strong { display: block; font-weight: 900; }
.floating-card span { color: var(--muted); font-size: .9rem; }
.floating-card-top { top: 78px; right: -28px; animation: floatY 4s ease-in-out infinite; }
.floating-card-bottom { bottom: 56px; left: 0; animation: floatY 4s ease-in-out infinite reverse; }
.about-content h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.25; font-weight: 900; margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 22px; font-size: 1.08rem; }
.about-list { display: grid; gap: 13px; margin-bottom: 30px; }
.about-list li { list-style: none; display: flex; align-items: center; gap: 12px; font-weight: 800; }
.about-list i { color: var(--orange); font-size: 1.1rem; }

.features { background: var(--light); position: relative; overflow: hidden; }
.features::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(245,130,32,.12); top: -130px; left: -120px; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 2; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 34px 24px; text-align: center; border: 1px solid rgba(245,130,32,.13); box-shadow: 0 14px 35px rgba(16,16,16,.07); transition: var(--transition); }
.feature-card:hover { transform: translateY(-12px); box-shadow: var(--shadow); }
.feature-icon { width: 76px; height: 76px; border-radius: 24px; background: linear-gradient(135deg, var(--orange), #ffb15f); display: grid; place-items: center; color: var(--white); font-size: 2rem; margin: 0 auto 20px; box-shadow: 0 14px 28px rgba(245,130,32,.28); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 900; }
.feature-card p { color: var(--muted); font-size: .98rem; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 34px rgba(16,16,16,.07); overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(245,130,32,.32); }
.product-image-wrap { min-height: 250px; padding: 26px 22px 12px;display: grid; place-items: center; }
.product-img { width: 210px; max-height: 250px; filter: drop-shadow(0 18px 20px rgba(16,16,16,.18)); transition: var(--transition); }
.product-card:hover .product-img { transform: translateY(-8px) rotate(-2deg); }
.product-body { padding: 24px; }
.product-stage { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: rgba(245,130,32,.12); color: var(--orange-dark); font-weight: 900; font-size: .86rem; margin-bottom: 10px; }
.product-card h3 { font-size: 1.45rem; font-weight: 900; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: .97rem; margin-bottom: 18px; }
.btn-more { width: 100%; background: var(--black); color: var(--white); padding: 12px 18px; }
.btn-more:hover, .btn-more.active { background: var(--orange); transform: translateY(-2px); }
.product-details { max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-8px); transition: max-height .45s ease, opacity .3s ease, transform .3s ease, margin-top .3s ease; }
.product-details.open { max-height: 520px; opacity: 1; transform: translateY(0); margin-top: 18px; }
.product-meta { display: grid; gap: 8px; margin-bottom: 16px; }
.product-meta span { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 13px; background: var(--light); color: var(--orange-dark); font-weight: 800; font-size: .9rem; }
.product-details ul { display: grid; gap: 8px; padding: 0; }
.product-details li { list-style: none; color: #444; font-size: .93rem; display: flex; align-items: flex-start; gap: 8px; }
.product-details li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--orange); margin-top: 2px; }

.slogan-banner { min-height: 380px; background: linear-gradient(rgba(16,16,16,.72), rgba(16,16,16,.72)), url('/uploads/img_69f5b24c703520.06124647.jpg') center/cover fixed; display: flex; align-items: center; text-align: center; color: var(--white); }
.slogan-banner h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.25; margin-bottom: 16px; }
.slogan-banner p { max-width: 760px; margin: 0 auto; font-size: 1.2rem; color: rgba(255,255,255,.88); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.contact-info { background: var(--black); color: var(--white); border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; }
.contact-info::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(245,130,32,.18); bottom: -70px; left: -70px; }
.contact-info h3 { font-size: 2rem; font-weight: 900; margin-bottom: 24px; position: relative; z-index: 2; }
.contact-list { display: grid; gap: 18px; position: relative; z-index: 2; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; }
.contact-item i { width: 42px; height: 42px; border-radius: 14px; background: var(--orange); display: grid; place-items: center; flex: 0 0 42px; color: var(--white); }
.contact-item strong { display: block; margin-bottom: 3px; font-size: 1.02rem; }
.contact-item span, .contact-item a { color: rgba(255,255,255,.82); }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 460px; border: 1px solid var(--border); }
.map-box iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

.footer { background: var(--black); color: var(--white); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 20px; color: var(--orange); }
.footer p, .footer a, .footer span { color: rgba(255,255,255,.78); }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { transition: var(--transition); font-weight: 700; }
.footer-links a:hover { color: var(--orange); padding-inline-start: 6px; }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.social-icons a { width: 42px; height: 42px; border-radius: 14px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--white); transition: var(--transition); }
.social-icons a:hover { background: var(--orange); transform: translateY(-4px); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact i { color: var(--orange); margin-top: 7px; }
.copyright { text-align: center; padding-top: 24px; color: rgba(255,255,255,.65); font-size: .95rem; }
.whatsapp-fixed { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 62px; height: 62px; border-radius: 50%; background: #25D366; color: var(--white); display: grid; place-items: center; font-size: 2rem; box-shadow: 0 14px 28px rgba(37,211,102,.35); animation: pulse 1.8s infinite; }
body.en .whatsapp-fixed { right: auto; left: 24px; }

.reveal { opacity: 0; transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.fade-up { transform: translateY(45px); }
.slide-right { transform: translateX(55px); }
.slide-left { transform: translateX(-55px); }
.zoom-in { transform: scale(.92) translateY(25px); }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; } .delay-4 { transition-delay: .32s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.48); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes blob { 0%,100% { border-radius: 44% 56% 48% 52% / 50% 40% 60% 50%; transform: rotate(0deg) scale(1); } 50% { border-radius: 58% 42% 40% 60% / 44% 58% 42% 56%; transform: rotate(4deg) scale(1.03); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 1100px) { .features-grid, .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav { height: 76px; }
  .hero { padding-top: 76px; }
  .nav-menu { position: fixed; top: 76px; right: 16px; left: 16px; display: grid; gap: 0; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 22px; padding: 10px; transform: translateY(-18px) scale(.98); opacity: 0; visibility: hidden; pointer-events: none; transition: .3s ease; }
  .nav-menu.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu li a { display: block; padding: 14px 16px; border-radius: 14px; }
  .nav-menu li a:hover, .nav-menu li a.active { background: var(--light); }
  .nav-menu a::after { display: none; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-art { min-height: 470px; }
  .section { padding: 72px 0; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .logo { font-size: 1rem; }
  .logo-icon { width: 44px; height: 44px; }
  .nav-order { display: none; }
  .hero-content p { font-size: 1rem; }
  .features-grid, .products-grid { grid-template-columns: 1fr; }
  .about-art { min-height: 390px; }
  .floating-card { padding: 12px 14px; }
  .floating-card-top { top: 20px; right: 0; }
  .floating-card-bottom { bottom: 20px; left: 0; }
  .contact-info { padding: 26px 18px; }
  .slogan-banner { min-height: 320px; background-attachment: scroll; }
  .whatsapp-fixed { width: 56px; height: 56px; font-size: 1.7rem; bottom: 18px; right: 18px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 180px;
}

.logo-image {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .nav {
    height: auto;
    min-height: 70px;
    padding: 10px 0;
  }
}
.logo img {
  max-width: 100%;
  height: auto;
}


/* ===== Final mobile/header/product fixes ===== */
.header { min-height: 74px; }
.nav { height: 82px; min-height: 82px; flex-wrap: nowrap; }
.logo { flex: 0 0 auto; max-width: 150px; min-width: 96px; overflow: hidden; }
.logo-image { width: 170px; height: 70px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-image img { width: 100%; height: 100%; max-width: 100%; object-fit: contain; display: block; }
.nav-actions { flex: 0 0 auto; }
.language-select { max-width: 112px; }
.hero { padding-top: 82px; }
.slide { background-position: center center; }
.product-image-wrap { height: 250px; min-height: 250px; padding: 5px 5px 5px; }
.product-img { width: auto; max-width: 92%; height: 250px; max-height: 250px; object-fit: contain; }
.product-card { height: 100%; }
.product-body { min-height: 285px; }
@media (max-width: 900px) {
  .header { min-height: 72px; }
  .nav { height: 72px !important; min-height: 72px !important; padding: 6px 0 !important; gap: 8px; }
  .logo { max-width: 116px; min-width: 86px; }
  .logo-image { width: 98px; height: 56px; }
  .language-select { padding: 8px 9px; border-radius: 12px; font-size: 13px; max-width: 92px; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 12px; }
  .nav-menu { top: 78px !important; z-index: 1001; }
  .hero { padding-top: 72px !important; min-height: auto; }
  .slider { min-height: calc(100svh - 72px); }
  .slide { min-height: calc(100svh - 72px); background-position: 62% center; }
  .slide::before { background: linear-gradient(180deg, rgba(16,16,16,.82), rgba(16,16,16,.62), rgba(16,16,16,.88)); }
  .hero-content { max-width: 100%; text-align: center; margin: 0 auto; padding: 32px 0 70px; }
  .hero-badge { font-size: .86rem; padding: 7px 13px; margin-bottom: 14px; }
  .hero-content h1 { font-size: clamp(2rem, 9vw, 3.1rem); line-height: 1.15; margin-bottom: 14px; }
  .hero-content p { font-size: .98rem; line-height: 1.9; margin-bottom: 22px; }
  .hero-buttons { justify-content: center; }
  .hero-buttons .btn { padding: 11px 18px; font-size: .92rem; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1180px); }
  .nav { gap: 6px; }
  .logo { max-width: 102px; min-width: 80px; }
  .logo-image { width: 92px; height: 54px; }
  .nav-actions { gap: 7px; }
  .language-select { max-width: 86px; font-size: 12px; }
  .menu-toggle { width: 40px; height: 40px; }
  .nav-menu { right: 12px; left: 12px; }
  .hero-content h1 { font-size: clamp(1.85rem, 10vw, 2.75rem); }
  .slider-dots { bottom: 24px; }
  .product-image-wrap { height: 320px; min-height: 340px; }
  .product-img { height: 295px; max-height: 295px; }
  .product-body { min-height: auto; }
}
@media (max-width: 390px) {
  .logo { max-width: 88px; }
  .logo-image { width: 82px; height: 50px; }
  .language-select { max-width: 78px; padding-inline: 6px; }
}
/* PHP dashboard responsive fixes */
.logo{max-width:150px;flex-shrink:0}.logo-image{width:170px;height:70px;display:flex;align-items:center;justify-content:center}.logo-image img{width:100%;height:100%;object-fit:contain}.product-image-wrap{min-height:250px}.product-img{width:min(280px,92%);max-height:320px;object-fit:contain}.slide{background-position:center center}.hero-content h1{font-size:clamp(2rem,5vw,1.6rem)}@media(max-width:900px){.header{position:fixed}.nav{height:auto;min-height:70px;padding:8px 0;gap:10px}.hero{padding-top:76px}.nav-menu{top:76px}.logo-image{width:92px;height:54px}.language-select{padding:9px 10px}.menu-toggle{width:42px;height:42px}.hero,.slider{min-height:calc(100vh - 76px)}.slide{background-position:62% center}.slide::before{background:linear-gradient(270deg,rgba(16,16,16,.88),rgba(16,16,16,.62),rgba(245,130,32,.24))}.hero-content{max-width:100%;text-align:center}.hero-buttons{justify-content:center}.hero-badge{font-size:.9rem}.hero-content h1{font-size:clamp(2rem,10vw,1.4rem);line-height:1.12}.products-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:620px){.container{width:min(100% - 24px,1180px)}.logo{max-width:110px}.logo-image{width:102px;height:48px}.nav-actions{gap:7px}.language-select{font-size:.86rem}.hero-content{padding-top:20px}.hero-content p{font-size:.96rem}.hero-buttons .btn{padding:12px 17px;font-size:.9rem}.products-grid{grid-template-columns:1fr}.product-image-wrap{min-height:250px;padding:5px 5px 5px}.product-img{width:min(310px,96%);max-height:340px}.product-card h3{font-size:1.6rem}.product-card p{font-size:1.02rem}.about-art{min-height:410px}.footer-grid{grid-template-columns:1fr}}

@media (max-width: 768px) {
  .slide-right,
  .slide-left {
    transform: translateY(35px);
  }

  .slide-right.visible,
  .slide-left.visible {
    transform: translateY(0);
  }

  .reveal {
    max-width: 100%;
  }

  body,
  html {
    overflow-x: hidden;
  }
}



.product-details {
  display: none;
  margin-top: 18px;
}

.product-details.open {
  display: block;
}

.products-grid {
  align-items: start;
}

.product-card {
  align-self: start;
  height: auto;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.vmv-card {
  background: #fff;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 28px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(16, 16, 16, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.vmv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #f58220, #ffb15f);
}

.vmv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(16, 16, 16, 0.14);
}

.vmv-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f58220, #ffb15f);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 14px 28px rgba(245, 130, 32, 0.28);
}

.vmv-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #101010;
}

.vmv-card p {
  color: #666;
  font-size: 1rem;
  line-height: 2;
  margin: 0;
}

@media (max-width: 992px) {
  .vmv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .vmv-card {
    padding: 32px 22px;
  }
}

.section vision
{
 padding: 1px 0 !important;
}
