/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

:root {
  --primary-green: #003d7a;
  --light-green: #e8f5e9;
  --cream: #fef8f3;
  --accent: #d4af37;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.2rem 1% !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-green);
  z-index: 1001;
  width: 40%;
}
.logo img {
  width: 10%;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-btn {
  background: var(--primary-green);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  width: 29px;
  height: 3px;
  background: var(--primary-green);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
  margin-top: 0px;
  background:
    linear-gradient(358deg, #ffa24400 0%, #ffa24403 100%),
    url(../img/13.jpg) center / cover fixed;
  padding: 3rem 5%;
  color: white;
  min-height: 85vh;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Left Content */
.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h3 {
  color: #ffc12d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* Right Image */
.hero-side-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-side-image img {
  width: 80%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 0.5rem;
  }

  .hero-side-image {
    margin-top: 2rem;
  }
}

/* Marquee Section */
.marquee {
  background: #002347;
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  margin: 0 3rem;
  font-size: 1.1rem;
}

.marquee-item::before {
  content: "✦";
  margin-right: 1rem;
  color: var(--accent);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.1rem;
}

.about-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.about-content ul li {
  margin: 0.8rem 0;
  font-size: 1.05rem;
  color: #555;
}

.about-image {
  width: 100%;
  height: 365px;
  background:
    linear-gradient(45deg, rgb(45 95 63 / 0%), rgb(74 143 95 / 0%)),
    url(../img/about.png) center / cover;
  border-radius: 20px;
  position: relative;
}

/* Services Section */
.services {
  padding: 6rem 5%;
  text-align: center;
  background-color: #004e8112; /* Light subtle background */
}

.services h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 700;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #222;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* The colored bar at the top of each card */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1a70d2, #004799);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #004799;
}

/* Icon Styling */
.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(var(--primary-green-rgb), 0.1); /* Requires a RGB variable */
  background-color: #004799; /* Fallback light green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #ffd;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: #004799;
  color: white;
  transform: rotateY(360deg);
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2rem;
  }
}
/* --- Variables & Reset --- */
:root {
  --bg-dark: #01172e;
  --card-bg: rgba(255, 255, 255, 0.03);
  --accent-green: #004799;
  --text-main: #ffffff;
  --text-dim: #a0aec0;
  --border-color: rgba(255, 255, 255, 0.1);
}

.why-choose {
  background-color: var(--bg-dark);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
}

/* Background Glows */
.glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 170, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.header-content {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  background: rgba(0, 255, 170, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 255, 170, 0.2);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.section-title span {
  background: linear-gradient(90deg, #fff, var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Bento Grid Logic */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

/* Card Hover */
.feature-card:hover {
  background: rgba(255, 255, 255, 0);
  border-color: var(--accent-green);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icons */
.icon-box {
  width: 60px;
  height: 60px;
  background: #004799;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light-green);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card.wide .icon-box {
  margin-bottom: 0;
}

/* Text Inside Cards */
.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-card.wide .icon-box {
    margin-bottom: 20px;
  }
}
/* Products Section */
.products {
  padding: 6rem 5%;
}

.products h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: #ffffff00;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0);
}

.product-image {
  width: 180px;
  height: 180px;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:nth-child(1) .product-image {
  background-image: url("../img/fresh.png");
}

.product-card:nth-child(2) .product-image {
  background-image: url("https://images.unsplash.com/photo-1486297678162-eb2a19b0a32d?w=400&q=80");
}

.product-card:nth-child(3) .product-image {
  background-image: url("https://images.unsplash.com/photo-1628088062854-d1870b4553da?w=400&q=80");
}

.product-card:nth-child(4) .product-image {
  background-image: url("../img/curd.png");
}

.product-card h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
}

/* Process Section */
.process {
  padding: 6rem 5%;
  background:
    linear-gradient(135deg, #333333b8, #333333cc),
    url(../img/process.png) center / cover fixed;
  color: white;
}

.process h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.financial {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f7f7f7, #e9e9e9);
}

.financial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.financial-image {
  flex: 1;
}

.financial-image img {
  width: 100%;
  max-width: 520px;
}

.financial-content {
  flex: 1;
}

.financial-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
  color: #5a5a5a;
}

.financial-content ul {
  list-style: none;
  padding: 0;
}

.financial-content li {
  font-size: 18px;
  margin-bottom: 18px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.financial-content i {
  color: #4caf50;
  font-size: 18px;
  margin-top: 4px;
}

/* responsive */

@media (max-width: 900px) {
  .financial-container {
    flex-direction: column;
    text-align: center;
  }

  .financial-content li {
    justify-content: center;
  }
}

/* FAQ Section */
.faq {
  padding: 6rem 5%;
}

.faq h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--primary-green);
  font-size: 1.15rem;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  display: none;
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  background:
    linear-gradient(135deg, rgb(45 95 63 / 23%), #333333a3),
    url(../img/cta.jpg) center / cover fixed;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary-green);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: var(--text-main);
  color: var(--primary-green);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--primary-green);
  text-decoration: none;
  display: block;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: black;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 1rem;
  }
  .logo img {
    width: 20%;
  }

  .about,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 968px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 4%;
  }

  .nav-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
  }
  .logo img {
    width: 20%;
  }

  .nav-center.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .nav-right {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-right .cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero {
    padding: 5rem 5%;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h3 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .client-avatars img {
    width: 40px;
    height: 40px;
  }

  .trusted-clients {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

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

  .about-image {
    height: 400px;
  }

  .stats {
    flex-direction: column;
  }

  .service-grid,
  .product-grid,
  .testimonial-grid,
  .gallery-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    height: 300px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
    width: 50%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
  .logo img {
    width: 35% !important;
  }

  .hero h3 {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }

  .about-content h2,
  .services h2,
  .why-choose h2,
  .products h2,
  .testimonials h2,
  .faq h2,
  .gallery h2,
  .video-section h2 {
    font-size: 2rem;
  }

  .about-image {
    height: 200px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .product-card,
  .testimonial-card,
  .feature-item {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
:root {
  --text-muted: #636e72;
  /* --bg-light: #f9fbfc; */
}

.light-theme {
  padding: 100px 5%;
  background: var(--bg-light);
  font-family: "Inter", sans-serif;
}

.crowd-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.sub-badge {
  color: var(--primary-green);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
}

.crowd-content h2 {
  font-size: 2.8rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.crowd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card1 {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #edf2f7;
}

.feature-card1:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.icon-box1 {
  width: 50px;
  height: 50px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-card1 h4 {
  margin-bottom: 8px;
  color: #000;
}
.feature-card1 p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .crowd-container {
    flex-direction: column;
    text-align: center;
  }
  .crowd-grid {
    grid-template-columns: 1fr;
  }
  .icon-box1 {
    margin: 0 auto 15px;
  }
}
:root {
  --neon-green: #036dc9;
  --deep-bg: #050608;
}

.web3-core {
  background: var(--bg-dark);
  padding: 120px 5%;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 170, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.core-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Center Element */
.center-core {
  text-align: center;
  flex: 1;
}
.center-core h3 {
  margin-top: 80px;
}

.shield-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.shield-main {
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 170, 0.05);
  border: 1px solid rgba(42, 150, 252, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--neon-green);
  z-index: 5;
  position: relative;
}

/* Pulse Animation */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  animation: pulse 3s infinite;
  opacity: 0;
}
.pulse-ring.delay {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Rotating Dash Border */
.rotating-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed rgba(0, 255, 170, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Side Features */
.side-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.left .feature-item {
  text-align: right;
  justify-content: flex-end;
}

.feature-icon-circle {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.1);
}

.feature-text h4 {
  margin-bottom: 5px;
  color: var(--neon-green);
}
.feature-text p {
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .core-grid {
    flex-direction: column;
  }
  .left .feature-item {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}
.swiss-section {
  padding: 80px 5%;
  background: #eaedf2c6;
  font-family: "Inter", sans-serif;
  color: #000;
}

.swiss-header {
  margin-bottom: 60px;
}
.swiss-header h2 {
  font-size: 4rem;
  font-weight: 800;
  /* text-transform: uppercase;
  letter-spacing: -2px; */
  color: #234285;
}
.line {
  width: 100%;
  height: 2px;
  background: #000;
  margin-top: 20px;
}

.swiss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-left: 1px solid #000;
}

.swiss-box {
  padding: 60px 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 10px;
}

.swiss-box:hover {
  background: #164a7000;
  border-right: 2px solid #0d4b9c;
  border-bottom: 2px solid #0d4b9c;
}

.box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 800;
}
.box-top i {
  font-size: 30px;
}

.swiss-box h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.swiss-box p {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 80%;
}
.arrow {
  font-size: 2rem;
  margin-top: 20px;
  transition: 0.3s;
}
.swiss-box:hover .arrow {
  transform: translateX(10px);
}

@media (max-width: 600px) {
  .swiss-header h2 {
    font-size: 2.5rem;
  }
}

.stroke-section {
  padding: 100px 5%;
  background: #ffffff;
  /* font-family: "Inter", sans-serif; */
  text-align: center;
}

.stroke-section h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}
.stroke-section p {
  color: #666;
  margin-bottom: 60px;
}

.stroke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px; /* The "Border" effect */
  background: #eee; /* This creates the thin lines between cards */
  border: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
}

.stroke-card {
  background: white;
  padding: 60px 40px;
  text-align: left;
  transition: 0.4s ease;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid #065dae;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #07539f;
  font-size: 20px;
  transition: 0.4s;
}

.stroke-card:hover {
  background: #fafafa;
}

.stroke-card:hover .icon-circle {
  background: #095592;
  color: white;
  transform: rotateY(360deg);
}

.stroke-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}
.stroke-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.learn-more {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: 0.3s;
}

.stroke-card:hover .learn-more {
  opacity: 1;
}
