/* ============================================
   VISIONTEK â€“ Complete Stylesheet
   Color Palette:
   - Primary Orange: #E67E22 / #F39C12
   - Dark BG: #0d0d0d / #111111
   - Card Dark: #1a1a1a / #1c1c1c
   - Light BG: #f5f5f5
   - White: #ffffff
   - Text Gray: #888
============================================ */

/* #### Generated By: http://font.download #### */

	@font-face {
		font-family: 'D-DIN Regular';
		font-style: normal;
		font-weight: normal;
		src: local('D-DIN Regular'), url('../fonts/D-DIN.woff') format('woff');
	}
	



	@font-face {
		font-family: 'D-DIN Exp Regular';
		font-style: normal;
		font-weight: normal;
		src: local('D-DIN Exp Regular'), url('../fonts/D-DINExp.woff') format('woff');
	}
    
    
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f7901e;
  --orange-light: #F39C12;
  --orange-dark: #C0392B;
  --dark: #0d0d0d;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --card-dark: #1c1c1c;
  --deep-maroon: #3a0a0a;
  --light-bg: #e6e7e8;
  --white: #ffffff;
  --text-muted: #b4b4b4;
  --text-light: #cccccc;
  --border: rgba(230, 126, 34, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;*/
  font-family: 'D-DIN Regular';
  /*background: var(--light-bg);*/
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* â”€â”€ Scrollbar â”€â”€ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*background: #100401;*/
  background: #3e3838;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(195 195 195 / 47%);
  transition: var(--transition);
  box-shadow: 0px 0px 10px 3px #0000001a;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-chevron,
.logo-chevron-right {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.logo-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-sun {
  color: var(--orange);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  color: #656565;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

/* CTA Phone Button */
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: normal;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  color: #f7901e;
}

.cta-phone:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
}

.cta-phone svg {
  color: var(--orange);
  transition: var(--transition);
}

.cta-phone:hover svg {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links.open .nav-link {
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    color: #fff;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg>video {
  object-fit: cover;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 24px 80px;
  width: 100%;
  /*max-width: 1440px;*/
  /*padding-left: 80px;*/
  display: flex;
}

.hero-left {
  width: 50%;
}

.hero-right {
  width: 50%;
}

.hero-right video {
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  animation: fadeUp 0.8s 0.4s forwards;
}

.whatsapp-float i.fab.fa-whatsapp{
    color: #fff;
    font-size: 35px;
}

.fa-whatsapp:before {
    content: "\f232";
}

.hero-eyebrow {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

body .hero-title {
  font-size: clamp(32px, 4.5vw, 65px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-tagline {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.hero-desc {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.66s forwards
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   FEATURES BAR
============================================ */
.features-bar {
  /*background: #141414; */
  background: #e6e7e8;
  padding: 0 24px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #140900;
  transform: translateY(-120px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: #140900;
}

.feature-item:hover .feature-icon svg path,
.feature-item:hover .feature-icon svg circle,
.feature-item:hover .feature-icon svg rect,
.feature-item:hover .feature-icon svg ellipse {
  stroke: var(--orange-light);
  filter: drop-shadow(0 0 4px rgba(230, 126, 34, 0.5));
}

.feature-icon {
  flex-shrink: 0;
}

.feature-text h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}


.features-inner img.ic-img {
  max-width: 60px;
}

section.cetificate-section {}

section.cetificate-section .categories-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
    padding: 20px 0 40px 0;
    gap: 14px;
}

section.cetificate-section .section-header {
    margin-bottom: 0;
}

.cat-row {
    padding-top: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin: 14px 0;
    border-radius: 0;
    /* background: #fbfbfb; */
}

section.cetificate-section .cat-row .categories-grid {
    padding: 10px 0;
}

section.cetificate-section .categories-grid .image-box > img {
    max-width: 55%;
}

section.cetificate-section .categories-grid .pro-flex {
    padding: 15px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    min-height: auto;
    text-decoration: none;
    color:#000;
}
section.cetificate-section .content-box a {
    
}
section.cetificate-section .content-box h3.category-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

section.cetificate-section .category-cards {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    border-radius: 5px;
}
section.cetificate-section .category-cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
/* ============================================
   COMPANY INTRODUCTION
============================================ */
.company-intro {
  background: var(--light-bg);
  padding: 0px 24px 80px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.intro-heading {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.intro-heading strong {
  font-weight: 800;
}

.intro-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.intro-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-detail p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* Vision & Mission Cards */
.intro-right {
  display: flex;

  gap: 20px;
}



.vm-card {
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-card:hover {
  transform: translateY(-4px);
}

.vision-card {
  background: linear-gradient(38deg, #3a0808, #1e1010);
  border: 0px solid rgba(230, 126, 34, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 50%;
}

.mission-card {
  background: linear-gradient(38deg, #3a0808, #1e1010);
  border: 0px solid rgba(180, 30, 30, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 50%;
}

.vm-icon {
  margin-bottom: 16px;
}

.vm-card h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vm-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.products-section {
  background: var(--dark2);
  padding: 80px 24px;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.products-section .section-heading {
  color: var(--white);
}

.products-section .section-label {
  color: var(--orange);
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 48px;
  max-width: 560px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(230, 126, 34, 0.2);
}

.product-img-wrap {
  height: 180px;
  background: linear-gradient(135deg, #1a1207, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230, 126, 34, 0.08), transparent 70%);
}

.product-placeholder {
  z-index: 1;
  opacity: 0.85;
  transition: var(--transition);
}

.product-card:hover .product-placeholder {
  opacity: 1;
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-tag {
  display: inline-block;
  background: rgba(230, 126, 34, 0.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(230, 126, 34, 0.3);
}

.product-info h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-link {
  color: var(--orange);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-link:hover {
  color: var(--orange-light);
  gap: 8px;
}

/* ============================================
   SOLUTIONS SECTION
============================================ */
.solutions-section {
  background: var(--light-bg);
  padding: 80px 24px;
}

.solutions-section .section-heading {
  color: #1a1a1a;
}

.solutions-section .section-label {
  color: var(--orange);
}

.solutions-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border-radius: 8px 8px 0 0;
  margin-bottom: -2px;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.tab-btn.active {
  color: var(--orange);
}

.tab-btn.active::after,
.tab-btn:hover::after {
  transform: scaleX(1);
}

.tab-btn:hover {
  color: var(--orange);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.solution-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-list {
  list-style: none;
  margin-bottom: 32px;
}

.solution-list li {
  color: #333;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--dark3);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(230, 126, 34, 0.15);
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   STATS COUNTER SECTION
============================================ */
.stats-section {
  background: linear-gradient(135deg, #1a0a00, #0d0d0d);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 126, 34, 0.12), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(230, 126, 34, 0.06);
  border-color: rgba(230, 126, 34, 0.3);
  transform: translateY(-4px);
}

.stat-item .counter {
  display: block;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item>span:not(.counter) {
  color: var(--orange);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================
   SUPPORT SECTION
============================================ */
.support-section {
  background: var(--light-bg);
  padding: 80px 24px;
}

.support-section .section-heading {
  color: #1a1a1a;
}

.support-section .section-label {
  color: var(--orange);
}

.support-grid {  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.support-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
  cursor: pointer;
}

.support-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(230, 126, 34, 0.12);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 126, 34, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.support-card:hover .support-icon {
  background: var(--orange);
}

.support-card:hover .support-icon svg path,
.support-card:hover .support-icon svg circle,
.support-card:hover .support-icon svg rect {
  stroke: var(--white);
}

.support-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.support-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-link {
  color: var(--orange);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.support-link:hover {
  color: var(--orange-light);
  letter-spacing: 0.5px;
}

/* ============================================
   NEWS SECTION
============================================ */
.news-section {
  background: var(--dark2);
  padding: 80px 24px;
}

.news-section .section-heading {
  color: var(--white);
}

.news-section .section-label {
  color: var(--orange);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 25px;
    box-shadow: none;
    border: 0px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background: #f9f9f9;
}

.news-card {
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 126, 34, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.news-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.news-img-1 {
  background: linear-gradient(135deg, #0a2400, #1a0d00, #0d1a00);
}

.news-img-2 {
  background: linear-gradient(135deg, #1a0a00, #0a0d1a, #1a0a0a);
}

.news-img-3 {
  background: linear-gradient(135deg, #000d1a, #0a1400, #1a0800);
}

.news-img-placeholder::before {
  content: 'âš¡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  opacity: 0.3;
}

.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-body {
  padding: 24px;
}

.news-date {
  display: block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.news-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-link {
  color: var(--orange);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--orange-light);
  letter-spacing: 0.5px;
}

/* ============================================
   PARTNER SECTION
============================================ */
.partner-section {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  padding: 80px 24px;
}

.partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.partner-text .section-label {
  color: var(--orange);
}

.partner-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.partner-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.partner-benefits {
  list-style: none;
  margin-bottom: 36px;
}

.partner-benefits li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.check {
  color: var(--orange);
  font-weight: 900;
  font-size: 16px;
}

.partner-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.partner-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
  background: var(--light-bg);
  padding: 80px 24px;
}

.contact-section .section-heading {
  color: #1a1a1a;
}

.contact-section .section-label {
  color: var(--orange);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
  cursor: pointer;
}

.contact-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   FORMS
============================================ */
.contact-form,
.partner-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

.contact-form .form-group label {
  color: #444;
}

.partner-form .form-group label {
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  background: var(--white);
  color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn,
.partner-form .btn {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.form-success {
  color: #27ae60;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.hosting-section .hosting-text {
  position: absolute;
  z-index: 99;
  background: transparent;
  max-width: 1280px;
  margin: auto;
  left: 0;
  right: 0;
  padding: 0;
}

.hosting-section .hosting-image {
  width: 100%;
}

.hosting-section .hosting-inner {
  display: flex;
  align-items: center;
}

.hosting-section .hero-overlay {
    z-index: 9;
    /* background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgb(0 0 0 / 11%) 50%, rgba(0, 0, 0, 0.15) 100%); */
    width: 60%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .70) 25%, rgba(0, 0, 0, .45) 55%, rgba(0, 0, 0, .15) 100%);
}

.hosting-section .hosting-text .hosting-title,.hosting-section .hosting-text .hosting-desc {
    color: #fff;
}

.support-card .info {
  display: flex;
  align-items: end;
  border-top: 1px solid #ccc;
  padding-top: 11px;
}

.support-card a.support-link {
  border: 1px solid #e67e22;
  display: block;
  padding: 3px 7px;
  border-radius: 50px;
  position: relative;
  bottom: 5px;
}

.support-section {
  background-color: #fff5ee;
}

.support-card {
  border: 1px solid #bfbfbf;
  border-radius: 8px;
}

.support-section .section-container {
  max-width: 1280px;
}

    .support-section .section-container .support-card:hover {
        scale: 1.01;
        transition: .5s scale ease, .5s box-shadow ease, .5s border ease;
        box-shadow: 0 10px 9px 2px #00000021;
        transform: translateY(-6px);
    }

/* ============================================
   FOOTER
============================================ */
.footer {
  /*background: #080808;*/
  background: #3e3838;
  background: #fff;
  background: #838383;
  padding: 64px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 20px; 
  border-bottom: 0px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
    align-items: center;
    gap: 10px;
    /*background: var(--white);*/
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}
.footer-brand .flogo h2 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 28px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.social-btn .sm-ci-img {
  width: 36px;
  height: 36px;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 5px;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
  display: inline-block;
  color: #fff;
}

.footer-links ul li a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  color: #fff;
}

/* ============================================
   FLOATING ELEMENTS
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Hero Banner
============================================ */
.contact-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 64px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  transition: transform 8s ease;
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(20, 8, 0, 0.60) 55%, rgba(0, 0, 0, 0.20) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 60px;
  width: 100%;
}

.contact-hero-eyebrow {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.contact-hero-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.contact-hero-tagline {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.contact-hero-content .btn {
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Main Section Layout
============================================ */
.contact-page-section {
  background: #fff;
  padding: 64px 24px 80px;
}

.contact-page-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Left: Info Cards
============================================ */
.contact-page-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-info-card {
  background: #f9f9f9;
  border-radius: 12px;
  /*border: 1px solid #e8e8e8;*/
  padding: 18px 20px;
  transition: var(--transition);
  cursor: default;
}

.cp-info-card:hover {
  /*border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.10);
  transform: translateX(4px);*/
}

.cp-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 0px;
}

.cp-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 126, 34, 0.07);
  transition: var(--transition);
}

.cp-info-card:hover .cp-info-icon {
  background: rgba(230, 126, 34, 0.15);
}

.cp-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cp-info-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #231f20;
  letter-spacing: 0;
}

.cp-info-body p {
  font-size: 14px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 4px;
}

.cp-info-body p:last-child {
  margin-bottom: 0;
}

.cp-info-body a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cp-info-body a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

/* Map wrapper */
.cp-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  /*border: 1px solid #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);*/
}

.cp-map-wrap:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.12);
}

/* Social icons row */
.cp-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cp-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.cp-social-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.cp-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.1);
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Right: Enquiry Form
============================================ */
.contact-page-right {
  position: sticky;
  top: 80px;
}

.cp-form-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 25px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.cp-form-wrap:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.10);
}

.cp-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.cp-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(230, 126, 34, 0.07);
}

.cp-form-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-form-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.cp-form-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Form fields Ã¢â€â‚¬Ã¢â€â‚¬ */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cp-form-group input,
.cp-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  resize: none;
}

.cp-form-group input::placeholder,
.cp-form-group textarea::placeholder {
  color: #aaa;
  font-size: 15px;
}

/* Animated underline on focus */
.cp-field-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cp-form-group.cp-focused .cp-field-line {
  transform: scaleX(1);
}

.cp-form-group.cp-focused input,
.cp-form-group.cp-focused textarea {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(247, 144, 30, 0.10);
}

/* Invalid state */
.cp-form-group input.cp-invalid,
.cp-form-group textarea.cp-invalid {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: cpShake 0.35s ease;
}

@keyframes cpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* Success message */
.cp-form-success {
  background: rgba(39, 174, 96, 0.09);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: 8px;
  color: #27ae60;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

/* Submit button */
.cp-submit-btn {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: var(--transition);
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 144, 30, 0.40);
}

.cp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}



.accordion .accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #eee;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #f7901e;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #000;
  border: 1px solid #eee;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-family: 'D-DIN Regular';
  color: #000;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #f7901e;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  
}

.about-testimonials-container .swiper-pagination {
    bottom: 10px;
}

.about-testimonials-container .about-testimonials-grid {
    padding-bottom: 70px;
}

.about-testimonials-container  .swiper-button-next,.about-testimonials-container  .swiper-button-prev {
    top: 45%;
}





/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Responsive
============================================ */
@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .contact-page-right {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 260px;
  }

  .contact-hero-content {
    padding: 40px 16px;
  }

  .cp-form-wrap {
    padding: 22px 16px 28px;
  }

  .contact-page-section {
    padding: 40px 16px 60px;
  }
}

.support-section .section-container .pro-img .pro-img {
    height: 300px;
    object-fit: cover;
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Left: Info Cards
============================================ */
.contact-page-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-info-card {
  background: #f9f9f9;
  border-radius: 12px;
  /*border: 1px solid #e8e8e8;*/
  padding: 18px 20px;
  transition: var(--transition);
  cursor: default;
}

.cp-info-card:hover {
  /*border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(230, 126, 34, 0.10);
  transform: translateX(4px);*/
}

.cp-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 0px;
}

.cp-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 126, 34, 0.07);
  transition: var(--transition);
}

.cp-info-card:hover .cp-info-icon {
  background: rgba(230, 126, 34, 0.15);
}

.cp-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cp-info-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #231f20;
  letter-spacing: 0;
}

.cp-info-header {}

.cp-info-header .d-flex {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cp-info-card.first {
  padding: 0;
}

div#cp-map {}

.cp-info-card .cp-map-wrap {
  padding: 10px 0 0 0;
}

.cp-info-card.first .cp-info-header {
  padding: 20px 15px 0;
  margin-bottom: 20px
}

.cp-info-body p {
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 4px;
}

.cp-info-body p:last-child {
  margin-bottom: 0;
}

.cp-info-body a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cp-info-body a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

/* Map wrapper */
.cp-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  /*border: 1px solid #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);*/
}

.cp-map-wrap:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.12);
}

/* Social icons row */
.cp-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cp-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.cp-social-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.cp-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.1);
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Right: Enquiry Form
============================================ */
.contact-page-right {
  position: sticky;
  top: 80px;
}

.cp-form-wrap {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 25px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.cp-form-wrap:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.10);
}

.cp-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.cp-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(230, 126, 34, 0.07);
}

.cp-form-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-form-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.cp-form-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Form fields Ã¢â€â‚¬Ã¢â€â‚¬ */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cp-form-group input,
.cp-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  resize: none;
}

.cp-form-group input::placeholder,
.cp-form-group textarea::placeholder {
  color: #aaa;
  font-size: 15px;
}

/* Animated underline on focus */
.cp-field-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cp-form-group.cp-focused .cp-field-line {
  transform: scaleX(1);
}

.cp-form-group.cp-focused input,
.cp-form-group.cp-focused textarea {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(247, 144, 30, 0.10);
}

/* Invalid state */
.cp-form-group input.cp-invalid,
.cp-form-group textarea.cp-invalid {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: cpShake 0.35s ease;
}

@keyframes cpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* Success message */
.cp-form-success {
  background: rgba(39, 174, 96, 0.09);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: 8px;
  color: #27ae60;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

/* Submit button */
.cp-submit-btn {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: var(--transition);
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 144, 30, 0.40);
}

.cp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Responsive
============================================ */
@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .contact-page-right {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 260px;
  }

  .contact-hero-content {
    padding: 40px 16px;
  }

  .cp-form-wrap {
    padding: 22px 16px 28px;
  }

  .contact-page-section {
    padding: 40px 16px 60px;
  }
}

.cp-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.cp-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(230, 126, 34, 0.07);
}

.cp-form-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-form-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.cp-form-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Form fields Ã¢â€â‚¬Ã¢â€â‚¬ */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cp-form-group input,
.cp-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  resize: none;
}

.cp-form-group input::placeholder,
.cp-form-group textarea::placeholder {
  color: #aaa;
  font-size: 15px;
}

/* Animated underline on focus */
.cp-field-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cp-form-group.cp-focused .cp-field-line {
  transform: scaleX(1);
}

.cp-form-group.cp-focused input,
.cp-form-group.cp-focused textarea {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(247, 144, 30, 0.10);
}

/* Invalid state */
.cp-form-group input.cp-invalid,
.cp-form-group textarea.cp-invalid {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: cpShake 0.35s ease;
}

@keyframes cpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* Success message */
.cp-form-success {
  background: rgba(39, 174, 96, 0.09);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: 8px;
  color: #27ae60;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

/* Submit button */
.cp-submit-btn {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: var(--transition);
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 144, 30, 0.40);
}

.cp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   CONTACT PAGE Ã¢â‚¬â€œ Responsive
============================================ */
@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .contact-page-right {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 260px;
  }

  .contact-hero-content {
    padding: 40px 16px;
  }

  .cp-form-wrap {
    padding: 22px 16px 28px;
  }

  .contact-page-section {
    padding: 40px 16px 60px;
  }
}

.cp-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cp-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 126, 34, 0.07);
  transition: var(--transition);
}

.cp-info-card:hover .cp-info-icon {
  background: rgba(230, 126, 34, 0.15);
}

.cp-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cp-info-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #231f20;
  letter-spacing: 0;
}

.cp-info-body p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 4px;
}

.cp-info-body p:last-child {
  margin-bottom: 0;
}

.cp-info-body a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.cp-info-body a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

/* Map wrapper */
.cp-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  /*border: 1px solid #e8e8e8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);*/
}

.cp-map-wrap:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.12);
}

/* Social icons row */
.cp-social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.cp-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  padding: 0;
  width: 30px;
  height: 30px;
  gap: 0;
}

.cp-social-btn img {
  max-width: 30px;
  object-fit: contain;
  border-radius: 6px;
}

.cp-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.1);
}

/* ============================================
   CONTACT PAGE â€“ Right: Enquiry Form
============================================ */
.contact-page-right {
  position: sticky;
  top: 80px;
}

.cp-form-wrap {
  background: #f9f9f9;
  border-radius: 16px;
  border: 0;
  padding: 25px;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.cp-form-wrap:hover {
  box-shadow: none;
}

.cp-form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.cp-form-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(230, 126, 34, 0.07);
}

.cp-form-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-form-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #231f20;
  margin-bottom: 4px;
}

.cp-form-sub {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

/* â”€â”€ Form fields â”€â”€ */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cp-form-group input,
.cp-form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  resize: none;
  font-size: 14px;
}

.cp-form-group input::placeholder,
.cp-form-group textarea::placeholder {
  color: #aaa;
  font-size: 15px;
}

/* Animated underline on focus */
.cp-field-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cp-form-group.cp-focused .cp-field-line {
  transform: scaleX(1);
}

.cp-form-group.cp-focused input,
.cp-form-group.cp-focused textarea {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(247, 144, 30, 0.10);
}

/* Invalid state */
.cp-form-group input.cp-invalid,
.cp-form-group textarea.cp-invalid {
  border-color: #e74c3c;
  background: #fff8f8;
  animation: cpShake 0.35s ease;
}

@keyframes cpShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* Success message */
.cp-form-success {
  background: rgba(39, 174, 96, 0.09);
  border: 1px solid rgba(39, 174, 96, 0.35);
  border-radius: 8px;
  color: #27ae60;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

/* Submit button */
.cp-submit-btn {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: var(--transition);
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 144, 30, 0.40);
}

.cp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   CONTACT PAGE â€“ Responsive
============================================ */
@media (max-width: 1024px) {
  .contact-page-container {
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .contact-page-right {
    position: static;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 260px;
  }

  .contact-hero-content {
    padding: 40px 16px;
  }

  .cp-form-wrap {
    padding: 22px 16px 28px;
  }

  .contact-page-section {
    padding: 40px 16px 60px;
  }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1080px) {
    .support-card:hover {
        transform: translateY(-6px);
    }
.support-section .section-container .support-card:hover {
    scale: 1.01;
    transition: .5s scale ease , .5s box-shadow ease, .5s border ease;
    box-shadow: 0 10px 9px 2px #00000021;
}

.support-section .section-container .support-card:hover .pro-img .pro-img {
    scale: 1.05;
    transition: 0.5s scale ease;
}

.support-section .section-container .pro-img .pro-img {
    transition: 0.5s scale ease;
}



.support-section .section-container .support-card {
    transition: .5s scale ease , .5s box-shadow ease, .5s border ease;
}

.highlight-card.cardheght {
    justify-content: start;
    gap: 20px;
}

div#cat-future-hybrid-inverter {
    scale: 1.2;
}
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .features-inner {
    grid-template-columns: repeat(3, 1fr);
    transform: translateY(-20px);
  }

  .feature-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .feature-item:nth-child(3) {
    border-right: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solution-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-inner {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 10px 0;
  }

  .cta-phone {
    display: none;
  }

  .features-inner {
    grid-template-columns: 1fr 1fr;
    transform: translateY(0);
    border-radius: 0;
    margin-top: -10px;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .solutions-tabs {
    flex-wrap: wrap;
  }

  .solution-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-detail img.ic-img {
  max-width: 50px;
}

.intro-right div.vm-card img.ic-img {
  max-width: 60px;
}

.text-center {
  text-align: center;
}


.img-fluid {
  /* max-width: 500px; */
  width: 100%;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-stats {
    grid-template-columns: 1fr;
  }

  .partner-form-wrap {
    padding: 24px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
    padding: 50px 15px 60px;
  }

  .hero-content .hero-left {
    width: 100%;
  }

  .hero-content .hero-right {
    width: 100%;
  }

  .hero-actions a.btn {
    padding: 5px 6px;
    font-size: 10px;
    gap: 5px;
  }

  .hero-actions {
    gap: 6px;
    flex-direction: row;
  }

  section#features {
    padding: 0;
    margin-bottom: 40px;
  }

  .intro-right {
    flex-direction: column;
  }

  .mission-card,
  .vision-card {
    width: 100%;
  }
}

/* ============================================
   WE ARE HOSTING SECTION
============================================ */
.hosting-section {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.hosting-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}

.hosting-text {
  padding: 52px 60px 52px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.hosting-text .section-label {
  color: var(--orange);
  margin-bottom: 12px;
}

.hosting-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hosting-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 380px;
}

.hosting-image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.hosting-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.hosting-image:hover .hosting-img {
  /*transform: scale(1.03);
  filter: brightness(1);*/
}

/* ============================================
   LATEST NEWS & BLOGS SECTION
============================================ */
.latest-news-section {
  background: var(--white);
  padding: 72px 24px 60px;
}

.latest-news-header {
  text-align: center;
  margin-bottom: 40px;
}

.latest-news-header .section-label {
  color: var(--orange);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.latest-news-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.latest-news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: var(--transition);
  cursor: pointer;
}
a.latest-news-card {
    text-decoration: none;
}
.latest-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
}
.blog-content h2 {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    text-shadow: none;
    padding-bottom: 5px;
}

.blog-content ul {
    padding-left: 30px;
    padding-bottom: 20px;
    font-size: 1em;
    line-height: 1.5;
    color: #444;
}

.blog-content ul li {
    margin: 5px 0;
    font-size: 1em;
    line-height: 1.5;
    color: #444;
}

.blog-content h3 {
    color: #000;
    padding-bottom: 7px;
    font-size: 17px;
}

.blog-content a {
    color: #444;
}

.blog-content h2 strong {
    color: #000;
}
.latest-news-img-wrap {
  height: 380px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.latest-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.latest-news-card:hover .latest-news-img {
  transform: scale(1.06);
}

/* Fallback gradient if image missing */
.latest-news-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0ece6, #e8e0d0);
  z-index: 0;
}

.latest-news-img {
  position: relative;
  z-index: 1;
}

.latest-news-body {
  padding: 16px 16px 20px;
  border-top: 0px solid #f0f0f0;
}

.latest-news-card:hover {
    background: #838383;
}

.latest-news-card:hover h3 {
    color: #fff;
}

.latest-news-card:hover span.latest-news-date {
    color: #fff;
}

.latest-news-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 150%;
  margin-bottom: 10px;
}

.latest-news-date {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.latest-news-footer {
  text-align: center;
  padding-top: 8px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
}

.view-all-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* ============================================
   WHATSAPP CTA BANNER
============================================ */
.wa-cta-banner {
  background: linear-gradient(135deg, #bf4225, #1a0505, #0d0d0d);
  padding: 36px 24px;
  border-top: 1px solid rgba(230, 126, 34, 0.15);
  border-radius: 0px;
  background: #7b7979;
}

.wa-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
}

.wa-cta-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.wa-cta-sub {
  font-size: 14px;
}

.wa-cta-text {
  text-align: right;
}

.wa-cta-text p.wa-cta-sub {
  color: #fff;
  font-size: 16px;
}

.wa-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.wa-cta-btn svg {
  fill: #f7901e;
}

.wa-cta-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
}

.wa-cta-btn:hover svg {
  fill: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-bottom ul {
  display: flex;
  gap: 10px;
}

/* Responsive for new sections */
@media (max-width: 1100px) {
  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hosting-inner {
    grid-template-columns: 1fr;
  }

  .hosting-text {
    padding: 40px 32px;
  }

  .hosting-image {
    min-height: 240px;
  }

  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wa-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }

  .hosting-text {
    padding: 32px 20px;
  }

  .wa-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* 1. About Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 64px;
  padding-top: 0px;

}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));*/
  background: linear-gradient(90deg, rgba(14, 4, 1, 0.8) 0%, rgba(14, 4, 1, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  width: 70%;

}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--white);
  padding: 0px;
  max-width: 800px;
}

.about-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0px;
  /*text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);*/
  opacity: 0;
  color: #fff;
  animation: fadeUp 0.8s 0.4s forwards
}

.about-hero-tagline {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  margin-bottom: 24px;
  color: #f1f1f1;
  color: #fff;
  line-height: normal;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
  font-size: clamp(32px, 4.5vw, 65px);
    font-weight: 600;
}

/* 2. Company Overview */
.about-overview-sec {
  background: var(--white);
  padding: 80px 24px;
}

.about-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 48px;
  align-items: center;
}

.about-section-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-overview-heading {
  font-size: clamp(18px, 2.5vw, 18px);
  line-height: 1.4;
  color: #111111;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-overview-heading strong {
  color: #000;
  font-weight: 800;
}

.about-overview-desc {
  font-size: clamp(18px, 2.5vw, 18px);
  color: #111111;
  line-height: 1.4;
}

.overview-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.pillar-card {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  background: var(--white);
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-card:hover {
  background: rgba(247, 144, 30, 0.03);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pillar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

/* 3. Vision & Mission */
.about-vm-sec {
  background: #fbf1ea;
  padding: 80px 24px 20px 24px;
}

.about-vm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-vm-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: normal;
  color: #111111;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/*
.about-vm-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  /*height: auto;
  
  
}*/


.about-vm-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    /* height: auto; */
    display: flex;
    align-items: flex-end;
    padding: 40px 40px 30px 40px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    justify-content: end;
    background-size: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 310px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: .5s;
}

.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.about-vm-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 100%);*/
  background: linear-gradient(to top, rgb(0 0 0 / 41%) 20%, rgb(0 0 0 / 29%) 100%);
  z-index: 1;
}

.about-vm-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.3) 100%); */
    background: linear-gradient(to top, rgb(0 0 0 / 41%) 20%, rgb(0 0 0 / 29%) 100%);
    z-index: 1;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .70) 25%, rgba(0, 0, 0, .45) 55%, rgba(0, 0, 0, .15) 100%);
    z-index: 1;
}

.about-vm-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 50%;
}

.about-vm-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 50%;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    position: absolute;
    left: 5%;
    bottom: 5%;
    top: auto;
}

.about-vm-icon-wrap {
  width: 40px;
    height: 40px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.about-vm-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-vm-card h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 4px;
    line-height: initial;
}

.about-vm-card p {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
}

/* 4. Highlights Grid */
.about-highlights-sec {
  background: #fbf1ea;
  padding: 55px 24px 60px;
}

.about-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.highlight-header {
  padding: 32px 32px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.highlight-info h3 {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
}

.highlight-info p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.4;
}

.highlight-media {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0 10px 10px 10px;
  display: flex;
}

.highlight-media img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  max-height: 175px;
    object-fit: cover;
    border-radius: 12px;
}

/* Certifications logo row */
.highlight-content-logos {
  padding: 0 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certs-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Clientele icons layout */
.clientele-icons-row {
  padding: 0 32px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
}

.client-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.icon-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 144, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.3s ease;
}

.client-icon-box:hover .icon-placeholder {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}

.icon-placeholder svg {
  width: 22px;
  height: 22px;
}

.client-icon-box span {
  font-size: 11px;
  color: #444444;
  font-weight: 500;
  line-height: 1.3;
}

/* 5. Testimonials */
.about-testimonials-sec {
  background: #fff;
  padding: 80px 24px;
}

.about-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-testimonials-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: normal;
  color: #111111;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  /*display: flex;*/
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  /*transition: all 0.35s ease;*/
}

.testimonial-image > img {
    width: 100%;
    border-radius: 12px;
    float: left;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.about-testimonials-grid .swiper-slide {
	 transform: scale(0.8);
	 opacity: .5;
}
.about-testimonials-grid .swiper-slide.swiper-slide-active {
	 transform: scale(1);
	 opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    filter: grayscale(1);
}
body .swiper-pagination-bullet-active {
    background: #f7901e;
}
.testimonial-left {
  flex-shrink: 0;
}

.avatar-wrap {
  width: auto;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
  font-family: Georgia, serif;
  height: 24px;
  opacity: 0.6;
}

.quote-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin-bottom: 5px;
}

.author-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 5px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.author-role {
  font-size: 15px;
  color: #000;
  margin-top: 2px;
}


/* ==========================================================================
   SUPPORT PAGE STYLES
   ========================================================================== */
.support-detail-section {
  padding: 80px 24px;
  background-color: #ffffff;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.support-info-col {
  flex: .8;
}

.support-media-col {
  flex: 1.5;
  position: relative;
}

.support-label {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.support-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.support-desc {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Dynamic Details Styling */
.support-dynamic-detail {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.dynamic-detail-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.dynamic-detail-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dynamic-title {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 700;
}

.dynamic-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.support-action-btn {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.support-action-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Media/Image Column Styling */
.support-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
}

.support-main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 340px;
}

/* Overlapping interactive panel */
.support-interactive-panel {
  /*position: absolute;
  top: 50%;
  left: auto;
  transform: translate(0%, -50%);
  width: 60%;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 10;
  transition: all 0.3s ease;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F9F9;*/
  position: relative;
    top: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    transform: none;
    background: transparent;
    box-shadow: none;
    display: 0;
    padding: 0;
    border: 0;
}

.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.support-icon-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  min-width: 110px;
}

.support-icon-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.support-icon-card span {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Card hover / active state */
.support-icon-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 10px 20px rgba(247, 144, 30, 0.1);
}

.support-icon-card:hover img {
  transform: scale(1.1);
}

.support-icon-card.active {
  border-color: var(--orange);
  background: #fffaf5;
  box-shadow: 0 8px 20px rgba(247, 144, 30, 0.15);
}

/* ============================================
   NEWS & BLOG PAGE
============================================ */
.news-body {
  background: #fff;
}

.news-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  /* for navbar height */
}

.news-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 4, 1, 0.9) 0%, rgba(16, 4, 1, 0.4) 100%);
  z-index: 2;
}

.news-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  color: var(--white);
}

.news-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 30px;

  color: #fff;
  max-width: 100%;
  margin-bottom: 30px;
  letter-spacing: 0;
}

.news-hero-content p.about-hero-tagline {
    font-size: clamp(32px, 4.5vw, 65px);
}
.blog-detail-page p.about-hero-tagline {
    font-size: clamp(24px, 3.5vw, 45px);
}
.news-hero-content p br {
    
}
.news-hero-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.news-hero-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Category Filter Tabs */
.news-categories-section {
  max-width: 1280px;
  margin: 60px auto 40px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.news-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-category-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px 24px;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  border: 0px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-category-card:hover,
.news-category-card.active {
  transform: translateY(-5px);
  /*box-shadow: 0 15px 35px rgba(247, 144, 30, 0.15);*/
  border-color: rgba(247, 144, 30, 0.3);
}

.news-category-card.active {
  background: #fff9f2;
}

.news-category-icon {
  /*width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--orange);*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.news-category-card:hover .news-category-icon,
.news-category-card.active .news-category-icon {
  background: var(--orange);
  color: var(--white);
}

.news-category-icon img {
  /*width: 24px;
  height: 24px;*/
  object-fit: contain;
  max-width: 80px;
}

.news-category-info h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.news-category-info p {
  font-size: 1em;
  color: #666;
  line-height: 1.5;
}

/* Two-column layout */
.news-main-section {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

/* Blog Details */
.blog-details-wrap {
  /*background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: opacity 0.4s ease, transform 0.4s ease;*/
}

.blog-details-wrap.loading {
  opacity: 0.3;
  transform: translateY(10px);
}

.blog-details-title-label {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  padding-bottom: 5px;
}

.blog-main-img-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 380px;
}

.blog-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-main-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta span.tag {
  /*color: var(--orange);*/
  font-weight: 600;
}

.blog-content {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}

.blog-content p {
  margin-bottom: 20px;
}

/* Related Posts */
.related-posts-wrap {
  /*background: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: fit-content;*/
}

.related-posts-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  padding-bottom: 5px;
}
.related-posts-wrap .right-side {
    position: sticky;
    top: 90px;
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-item {
  display: flex;
  gap: 15px;
  cursor: pointer;
  transition: var(--transition);
  padding: 10px;
  border-radius: 6px;
  text-decoration: none; 
}

.related-item:hover,
.related-item.active {
  background: #fbfbfb;
  transform: translateX(5px);
}

.related-item.active {
  border-left: 3px solid var(--orange);
  background: #fffcf9;
}

.related-img-wrap {
  width: 90px;
  height: 65px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.related-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-date {
  font-size: 0.75rem;
  color: #888;
}

.highlight-media  a:hover {
    margin-top: -6px;
    /* position: relative; */
    transition: .3s ease;
}

.highlight-media a {
    transition: .3s ease;
}

@media (min-width: 1401px) {
.about-hero, .news-hero {
  min-height: 550px;
}
}

@media (max-width: 1680px) {
    /*.about-hero, .news-hero {
      min-height: 400px;
      height: auto;
    }*/
    .about-hero-bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-overview-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .pillar-card:nth-child(even) {
    border-right: none;
  }

  .pillar-card:nth-child(3),
  .pillar-card:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
    .hosting-section .hero-overlay {
        z-index: 9;
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.33) 0%, rgba(0, 0, 0, 0.36) 25%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.15) 100%);
    }
    
    .about-hero-overlay {
        background: linear-gradient(90deg, rgba(14, 4, 1, 0.9) 0%, rgba(14, 4, 1, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        opacity: .6;
    }
}  

@media (max-width: 640px) {
    .hosting-section .hosting-image {
        width: 100%;
        min-height: auto;
        height: 100%;
    }
}

@media (max-width: 640px) {
    .hosting-section .hosting-text {
        padding: 0px 20px;
    }
}

@media (max-width: 640px) {
    h2.hosting-title {
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {

  .about-vm-grid,
  .highlights-grid,
  .about-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-vm-card {
    /*height: 240px;*/
    height: auto;
    padding: 24px;
  }

  .testimonial-card {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .testimonial-right {
    align-items: center;
  }

  .author-info {
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 640px) {


  /*============= about page ===========================*/

  .about-hero-overlay {
    display: block;
    /*background: linear-gradient(to bottom, rgb(255 255 255 / 40%), rgb(255 255 255 / 49%));*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  }

  .about-hero {
    height: 40vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 64px;
    padding-top: 70px;
    padding: 0 20px;
    padding-bottom: 40px;
  }

  .about-hero-title {
    font-size: clamp(31px, 5vw, 60px);
    letter-spacing: 0;
    color: #000;
  }

  .about-hero-tagline {
    font-size: clamp(36px, 2.5vw, 20px);
    color: #fff;
    margin-bottom: 14px;
  }

  .about-overview-sec {
    padding: 30px 24px;
  }

  .about-overview-heading {
    font-size: 16px;
  }

  .about-overview-desc {
    font-size: 16px;
  }

  .about-vm-content {
    width: 100%;
  }

  .about-vm-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .about-vm-icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
  }

  .about-vm-card p {
    font-size: 14px;
  }

  .highlight-info p {
    font-size: 15px;
    line-height: normal;
  }

  .highlight-header {
    padding: 12px 11px 11px;
  }

  .highlights-grid {
    gap: 14px;
  }

  .about-highlights-sec {
    padding-bottom: 40px;
  }

  .about-testimonials-sec {
    padding: 30px 24px;
  }

  .avatar-wrap {
    height: auto;
  }
  
  .news-categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-categories-section {
    margin-top: 30px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-main-img-wrap {
    height: 280px;
  }

  .blog-details-wrap,
  .related-posts-wrap {
    padding: 25px;
  }
  
  .hosting-img {
        object-fit: cover;
        min-height: 220px;
        float: left;
        object-position: left;
    }
        .latest-news-img-wrap {
        height: auto;
    }
        .latest-news-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
  .overview-pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-right: none !important;
  }

  .pillar-card:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .clientele-icons-row {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
    
  .support-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-main-img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .support-container {
    gap: 0;
  }

  p.support-desc {
    margin: 0;
    margin-bottom: 10px;
  }

  h2.support-title {
    margin-bottom: 10px;
  }
    section.cetificate-section {
    padding-top: 50px;
}
    section.cetificate-section .categories-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-testimonials-container .swiper-button-next, .about-testimonials-container .swiper-button-prev {
    display: none;
}
.wa-cta-text {
    text-align: center;
}
}



:root{
    --blue:#3b6fe0;
    --orange:#f7901e;
    --green:#16a34a;
    --text:#1f2430;
    --muted:#9aa1b1;
    --border:#e4e7ee;
    --bg-disabled:#fafbfc;
  }
.gst-from-card.card{
    max-width: 640px;
    margin: 60px auto 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(20, 30, 60, .08);
    padding: 36px 40px 44px;
    overflow: hidden;
  }
 
  /* ---------- Step 1 header ---------- */
  .gst-from-card #step1-header{
    text-align:center;
    margin-bottom:22px;
    max-height:200px;
    opacity:1;
    transition:opacity .4s ease, max-height .4s ease, margin .4s ease;
  }
  .gst-from-card #step1-header.collapsed{
    opacity:0;
    max-height:0;
    margin-bottom:0;
    pointer-events:none;
  }
  .gst-from-card #step1-header h1{
    font-size:24px;
    font-weight:700;
    color:var(--blue);
    margin:0 0 8px;
  }
  .gst-from-card #step1-header p{
    font-size:13.5px;
    color:#6b7280;
    margin:0;
  }
  
  
 
  .gst-from-card .gstin-field {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 13px 20px;
    text-align: center;
    margin-bottom: 10px;
    transition: background .3s ease, opacity .3s ease;
    border: 2px solid #f7901e;
}
  .gst-from-card .gstin-field input{
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    text-align: left;
    font-family: 'D-DIN Regular';
  }
  
  .gst-from-card .gstin-field input::placeholder{ color:#fff; font-weight:400; letter-spacing:normal; }
  .gst-from-card .gstin-field input::placeholder {
    color: #9e9e9e;
}

  .gst-from-card .gstin-field.completed{
    background:#f4f5f8;
    opacity:.55;
  }
  .gst-from-card .gstin-field.completed input{ font-size:16px; letter-spacing:1px; font-weight:600; color:#6b7280; }
  .gst-from-card .gstin-field.completed:focus-within{ background:#eef1fb; opacity:1; box-shadow:0 0 0 4px rgba(245,166,35,.15); }
  .gst-from-card .gstin-field.completed:focus-within input{ font-size:22px; letter-spacing:2px; font-weight:700; color:var(--text); }
  .gst-from-card .gstin-field.gstin-invalid{ box-shadow:0 0 0 3px rgba(220,60,60,.18); }
  .gst-from-card .gstin-field.gstin-valid{ box-shadow:0 0 0 3px rgba(22,163,74,.18); }
 
  .gst-from-card #gstin-feedback{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12.5px;
    font-weight:600;
    text-align:center;
    justify-content:center;
    padding:0 4px;
    margin:8px 0 0;
  }
  .gst-from-card #gstin-feedback.show{ display:flex; }
  .gst-from-card #gstin-feedback.hint{ color:#8b909c; }
  .gst-from-card #gstin-feedback.error{ color:#d9403f; }
  .gst-from-card #gstin-feedback.valid{ color:var(--green); }
  .gst-from-card #gstin-feedback svg{ width:13px; height:13px; flex-shrink:0; }
 
  /* Generic inline validation feedback for any field (e.g. PAN) */
  .gst-from-card .field-feedback{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    margin-top:7px;
  }
  .gst-from-card .field-feedback.show{ display:flex; }
  .gst-from-card .field-feedback.hint{ color:#8b909c; }
  .gst-from-card .field-feedback.error{ color:#d9403f; }
  .gst-from-card .field-feedback.valid{ color:var(--green); }
  .gst-from-card .field-feedback svg{ width:12px; height:12px; flex-shrink:0; }
 
  .gst-from-card #api-warning{
    display:none;
    align-items:center;
    gap:8px;
    color:var(--orange);
    font-size:13px;
    font-weight:700;
    margin:6px 0 24px;
  }
  .gst-from-card #api-warning.show{ display:flex; }
  .gst-from-card #api-warning svg{ width:15px;height:15px; stroke:var(--orange); flex-shrink:0; }
 
  /* ---------- Sections ---------- */
  .gst-from-card .section{
    margin-top:0;
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:opacity .4s ease, max-height .5s ease, margin .4s ease;
  }
  .gst-from-card .section.revealed{
    max-height:600px;
    opacity:1;
    margin-top:26px;
  }
  .gst-from-card .section-title{
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4f4f4f;
    text-transform: uppercase;
    border-bottom: 0px solid var(--border);
    padding-bottom: 0;
    margin-bottom: 13px;
  }
 
  .gst-from-card .field{ margin-bottom:22px; transition:opacity .3s ease; }
  
  .gst-from-card .field label{
    display:block;
    font-size:12.5px;
    font-weight:600;
    color:#c7cbd6;
    margin-bottom:8px;
    transition:color .3s ease;
  }
  .gst-from-card .field label .req{ color:#c7cbd6; }
 
  .gst-from-card .field-input-wrap{ position:relative; flex:1; }
  .gst-from-card .field input, .field select{
    width:100%;
    border:1.5px solid var(--border);
    border-radius:8px;
    padding:12px 14px;
    font-size:14.5px;
    color:#c7cbd6;
    outline:none;
    background:var(--bg-disabled);
    transition:border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, opacity .25s ease;
  }
  .gst-from-card .field input::placeholder{ color:#d3d7e0; }
  .gst-from-card .field input:disabled, .field select:disabled{ cursor:not-allowed; }
 
  /* Row that holds input(s) + Next/Verify button, in one bordered/glow pill like the reference */
  .gst-from-card .field-row{
    display:flex;
    gap:10px;
    align-items:stretch;
    border-radius:8px;
    transition:box-shadow .25s ease;
  }
  .gst-from-card .field-row select{ width:70px; flex-shrink:0; text-align:center; padding:12px 6px; }
 
  /* Active (current step, enabled) field â€” ready look; highlight only while actually focused */
  .gst-from-card .field.active label{ color:#6b7280; }
  .gst-from-card .field.active input, .field.active select{
    color:var(--text);
    background:#fff;
    border-color:var(--border);
    box-shadow:none;
  }
  .gst-from-card .field.active:focus-within label{ color:var(--orange); }
  .gst-from-card .field.active:focus-within input,
  .gst-from-card .field.active:focus-within select{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(245,166,35,.15);
  }
 
  /* Completed field: dim, legible text, greyish, with a checkmark */
  .gst-from-card .field.completed label{ color:#c7cbd6; }
  .gst-from-card .field.completed input, .field.completed select{
    color:#8b909c;
    background:#fbfbfc;
    border-color:var(--border);
    box-shadow:none;
    opacity:.75;
  }
  .gst-from-card .field.completed .step-btn{ display:none; }
  .gst-from-card .field.completed:focus-within .step-btn{ display:flex; }
 
  /* Editing a previously-completed field: highlight only that one, others stay as-is */
  .gst-from-card .field.completed:focus-within label{ color:var(--orange); }
  .gst-from-card .field.completed:focus-within input,
  .gst-from-card .field.completed:focus-within select{
    opacity:1;
    color:var(--text);
    background:#fff;
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(245,166,35,.15);
  }
  .gst-from-card .field.completed:focus-within .file-row{ opacity:1; border-color:var(--orange); box-shadow:0 0 0 4px rgba(245,166,35,.15); }
  .gst-from-card .field.completed:focus-within .file-name{ color:var(--text); }
 
  .gst-from-card .check-icon{
    position:absolute;
    right:12px; top:50%; transform:translateY(-50%);
    width:16px; height:16px;
    stroke:#9ca3af;
    display:none;
  }
  .gst-from-card .field.completed .check-icon{ display:block; }
 
  .gst-from-card .step-btn{
    flex-shrink:0;
    background:#c9ccd4;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:0 20px;
    font-size:14px;
    font-weight:600;
    cursor:not-allowed;
    display:flex; align-items:center; gap:6px;
    transition:background .25s ease;
    white-space:nowrap;
  }
  .gst-from-card .step-btn.enabled{
    background:var(--blue);
    cursor:pointer;
  }
  .gst-from-card .step-btn svg{ width:14px;height:14px; stroke:#fff; }
 
  /* ---------- File upload fields ---------- */
  .gst-from-card .file-row{
    display:flex;
    align-items:stretch;
    border:1.5px solid var(--border);
    border-radius:8px;
    overflow:hidden;
    background:var(--bg-disabled);
    transition:border-color .25s ease, box-shadow .25s ease;
  }
  .gst-from-card .field.active .file-row{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(245,166,35,.15);
    background:#fff;
  }
  .gst-from-card .field.completed .file-row{
    border-color:var(--border);
    opacity:.75;
  }
  .gst-from-card .file-btn{
    flex-shrink:0;
    background:#eef1f6;
    color:#6b7280;
    border:none;
    border-right:1.5px solid var(--border);
    padding:0 16px;
    font-size:13.5px;
    font-weight:600;
    cursor:pointer;
    white-space:nowrap;
  }
  .gst-from-card .field:not(.active) .file-btn{ cursor:not-allowed; opacity:.6; }
  .gst-from-card .file-name{
    flex:1;
    display:flex;
    align-items:center;
    padding:10px 14px;
    font-size:14px;
    color:#c7cbd6;
  }
  .gst-from-card .field.active .file-name,
  .gst-from-card .field.completed .file-name{ color:#6b7280; }
  .gst-from-card .file-status{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:var(--green);
    margin-top:6px;
    font-weight:600;
  }
  .gst-from-card .file-status.show{ display:flex; }
  .gst-from-card .file-status svg{ width:13px;height:13px; stroke:color:#008000;; }
 
  /* ---------- Declaration + submit ---------- */
  .gst-from-card .declare-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:#f6f7fa;
    border:1.5px solid var(--border);
    border-radius:10px;
    padding:14px 16px;
    transition:border-color .25s ease, box-shadow .25s ease;
  }
  .gst-from-card .declare-row.active{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(245,166,35,.15);
  }
  .gst-from-card .declare-left{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13.5px;
    font-weight:600;
    color:#6b7280;
  }
  .gst-from-card .declare-row input[type="checkbox"]{
    width:18px; height:18px;
    accent-color:var(--blue);
    cursor:not-allowed;
    flex-shrink:0;
  }
  .gst-from-card .declare-row.active input[type="checkbox"]{ cursor:pointer; }
  .gst-from-card .submit-btn{
    flex-shrink:0;
    background:var(--blue);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:12px 22px;
    font-size:14px;
    font-weight:700;
    cursor:not-allowed;
    opacity:.5;
    display:flex; align-items:center; gap:6px;
    transition:opacity .25s ease;
    white-space:nowrap;
  }
  .gst-from-card .submit-btn.enabled{ opacity:1; cursor:pointer; }
  .gst-from-card .submit-btn svg{ width:15px;height:15px; stroke:#fff; }
 
  /* ---------- Application Submitted overlay ---------- */
  #success-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:#000000b0;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:9999;
    opacity:0;
    transition:opacity .35s ease;
  }
  #success-overlay.show{ display:flex; opacity:1; }
  #success-overlay .success-inner{
    text-align:center;
    max-width:380px;
	text-align: center;
    max-width: 380px;
    max-width: 500px;
    margin: auto;
    height: 40vh;
    background: #1c2436;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  #success-overlay .check-circle{
    width:84px; height:84px;
    border-radius:50%;
    border:2px solid #3f9e6b;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 26px;
  }
  #success-overlay .check-circle svg{
    width:38px; height:38px;
    stroke:#7be495;
  }
  #success-overlay h2{
    color:#fff;
    font-size:26px;
    font-weight:700;
    margin:0 0 14px;
  }
  #success-overlay p{
    color:#aab2c5;
    font-size:14.5px;
    line-height:1.5;
    margin:0 0 30px;
  }
  #success-overlay .close-btn{
    background:#1fb471;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:13px 30px;
    font-size:14.5px;
    font-weight:700;
    cursor:pointer;
    transition:background .2s ease;
  }
  #success-overlay .close-btn:hover{ background:#189a5f; }
  
  .top-space,.bottom-space {
    min-height: 130px;
}



/**************** Ven **********************/

div#cat-nexus {
    display: none;
}

/* Blog List */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.blog-card a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    gap: 20px;
    padding: 15px;
}

.blog-card .pro-img {
    width: 200px;
    min-height: 150px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-card .info {
    flex: 1;
    padding: 5px 0;
}

.blog-card .info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.blog-card .info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.blog-card .blog-date {
    font-size: 12px;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}

.blog-card .blog-category {
    font-size: 12px;
    background: #ff7a33;
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card a {
        flex-direction: column;
        padding: 12px;
    }
    
    .blog-card .pro-img {
        width: 100%;
        min-height: 200px;
    }

    .support-section .section-container .support-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start !important;
        padding-bottom: 14px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
}
    .support-section .section-container .support-card {
        flex: 0 0 85%;
    }
    
    .accordion button {
    font-size: 1.115rem;
    padding-right: 25px;
}

.support-detail-section {
    padding: 30px 24px;
}
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

.category-card1 .pro-flex {
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-start;
    box-shadow: var(--shadow-sm) 0 4px 10px rgba(0, 0, 0, 0.05);
    min-height: 270px;
    background: rgb(255, 255, 255);
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px 0px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.category-card1 {
    position: relative;
}

.category-card1 .pro-flex:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

.category-icon-wrapper1 {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 9;
    border-radius: 0px;
    background: transparent;
}

.category-card1 .pro-flex::before {  
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--orange);
    transition: transform 0.4s;
}

.category-card1 .pro-flex:hover {
    background: rgb(131, 131, 131);
}

.category-card .pro-flex:hover {
    background: #838383;
}

.category-card1 .pro-flex:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

.category-card .pro-flex:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

div#cat-future-hybrid-inverter .pro-flex {
    border: 2px solid rgb(247 144 30);
}