body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0B132B;
}



.logo {
  text-decoration: none;
  color: inherit;
}
/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28,37,65,0.95);
  backdrop-filter: blur(12px);
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
}
.cyber { color: white; }
.cena { color: #3A86FF; }

/* NAV */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: auto;
}
.logo i {
  color: #3A86FF;
  margin-right: 8px;
  font-size: 20px;
}

/* LINKS */
.nav a {
  color: #A7B1C2;
  text-decoration: none;
  position: relative;
  font-size: 18px;
}

/* UNDERLINE */
.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #3A86FF;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}
.nav a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: #1C2541;
  padding: 20px;
  border-radius: 10px;

  display: flex;
  gap: 20px;
  min-width: 650px;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown.small {
  flex-direction: column;
  min-width: 160px;
}

/* SHOW */
.dropdown-item.active .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* COLUMN */
.col h4 {
  color: #3A86FF;
  margin-bottom: 8px;
}

.col p, .dropdown p {
  margin: 6px 0;
  color: #ccc;
  cursor: pointer;
}
.col p:hover, .dropdown p:hover {
  color: #5BC0BE;
}

/* RIGHT */
.right {
  margin-left: auto;
  display: flex;
  gap: 15px;
  align-items: center;
}

.right a {
  color: #A7B1C2;
  text-decoration: none;
}

.right button {
  background: #3A86FF;
  border: none;
  padding: 7px 14px;
  border-radius: 20px;
  color: white;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:900px){

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #1C2541;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }

  .nav.active {
    max-height: 600px;
  }

  .dropdown {
    position: static;
    transform: none;
    display: none;
    flex-direction: column;
    min-width: 100%;
  }

  .dropdown-item.active .dropdown {
    display: flex;
  }

  .right {
    display: none;
  }
}
/* HERO */
/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* SMALL TEXT */
.hero-mini {
  color: #A7B1C2;
  font-size: 14px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 10px 18px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* MOBILE */
@media(max-width:768px){
  .hero-mini {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.8);
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

/* 🔥 BIG HEADING */
.hero h1 {
  font-size: 74px;          /* bada kiya */
  color: #EAEAEA;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: 1px;
}

/* extra spacing highlight ke liye */
.hero h1 br {
  line-height: 1.6;
}

/* PARAGRAPH */
.hero p {
  font-size: 17px;
  color: #A7B1C2;
  margin-bottom: 40px;     /* gap increase */
  line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* PRIMARY */
.primary-btn {
  background: #3A86FF;
  color: white;
  padding: 12px 26px;     /* thoda bada */
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #2f6fe0;
}

/* SECONDARY */
.secondary-btn {
  border: 1px solid #3A86FF;
  color: #3A86FF;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: rgba(58, 134, 255, 0.1);
}

/* SECTION */
/* SECTION */
.cyber-section {
  text-align: center;
  padding: 60px 20px;
}

/* HEADING */
.cyber-section h2 {
  color: #EAEAEA;
  margin-bottom: 35px;
  font-size: 30px;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTON */
.btn-group button {
  padding: 12px 22px;
  border: none;
  background: #1C2541;
  color: #A7B1C2;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 180px;
}

/* HOVER */
.btn-group button:hover {
  background: #3A86FF;
  color: white;
  transform: translateY(-4px);
}

/* ACTIVE */
.btn-group button.active {
  background: #3A86FF;
  color: white;
  box-shadow: 0 0 15px rgba(58,134,255,0.6);
}

/* IMAGE BOX */
.image-box {
  margin-top: 40px;
}

/* IMAGE */
.image-box img {
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: opacity 0.4s ease;
}

/* FADE ANIMATION */
.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group button {
    width: 90%;
  }

  .image-box img {
    width: 95%;
  }
}



.cyber-features {
  padding: 50px 8%;
  text-align: center;
}

.cyber-features h2 {
  color: #EAEAEA;
  font-size: 32px;
}

.subtitle {
  color: #A7B1C2;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  background: #1C2541;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  text-align: left;
  cursor: pointer;
  
}

/* ICON */
.card i:first-child {
  font-size: 28px;
  color: #3A86FF;
  margin-bottom: 15px;
}

.card h3 {
  color: #EAEAEA;
}

.card p {
  color: #A7B1C2;
  font-size: 14px;
}

/* TOOL ICON */
.tools i {
  margin-right: 10px;
  color: #5BC0BE;
}

/* HOVER */
.card:hover {
  transform: translateY(-8px);
}

/* ACTIVE */
.active-card {
  border: 1px solid #3A86FF;
  box-shadow: 0 0 20px rgba(58,134,255,0.6);
}

/* ANIMATION */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}



/* SECTION */
.feature-section {
  padding: 80px 8%;
}

/* CONTAINER */
.feature-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT */
.feature-text {
  flex: 1;
}

.feature-text h2 {
  color: #EAEAEA;
  font-size: 40px;
  margin-bottom: 20px;
}

/* CHANGING WORD */
#changing-word {
  color: #3A86FF;
  border-right: 2px solid #3A86FF;
  padding-right: 5px;
}

/* TEXT */
.feature-text p {
  color: #A7B1C2;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.feature-text button {
  padding: 12px 25px;
  background: #3A86FF;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

/* RIGHT IMAGE */
.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
  }

  .feature-text h2 {
    font-size: 28px;
  }
}


/* SECTION */
.zigzag {
  padding: 80px 8%;
}

/* ROW */
.zig-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 50px;
}

/* REVERSE */
.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.zig-text {
  flex: 1;
}

.zig-text h2 {
  color: #EAEAEA;
  font-size: 32px;
}

.zig-text p {
  color: #A7B1C2;
  margin: 15px 0;
}

.zig-text ul {
  list-style: none;
  padding: 0;
}

.zig-text li {
  color: #A7B1C2;
  margin-bottom: 8px;
}

.zig-text i {
  color: #3A86FF;
  margin-right: 8px;
}

/* BOX */


/* HOVER */
.zig-box:hover {
  transform: scale(1.05);
  
}

/* ANIMATION */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .zig-row {
    flex-direction: column;
    text-align: center;
  }

  .reverse {
    flex-direction: column;
  }
}


/* SECTION */
/* SECTION */
.three-col-clean {
  padding: 20px 6%;
  text-align: center;
  background: #0B132B;
}

/* TITLE */
.title {
  color: #EAEAEA;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #A7B1C2;
  margin-bottom: 50px;
}

/* ROW */
.row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD (SMALL + CLEAN) */
.card {
  width: 260px; /* chhota kiya */
  background: #1C2541;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s;
  position: relative;
}

/* IMAGE */
.card-top {
  height: 150px; /* compact */
  overflow: hidden;
}

.card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER IMAGE ZOOM */
.card:hover .card-top img {
  transform: scale(1.08);
}

/* CONTENT */
.card-bottom {
  padding: 18px;
  text-align: left;
}

.card-bottom h3 {
  color: #EAEAEA;
  font-size: 17px;
  margin-bottom: 8px;
}

.card-bottom p {
  color: #A7B1C2;
  font-size: 13px;
  line-height: 1.5;
}

/* HOVER EFFECT 🔥 */
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* PREMIUM BORDER GLOW */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #3A86FF, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.3s;
}

.card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }
}


/* SECTION */
.faq-section {
  padding: 80px 8%;
}

/* CONTAINER */
.faq-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.badge {
  background: rgba(58,134,255,0.1);
  color: #3A86FF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.faq-left h2 {
  color: #EAEAEA;
  font-size: 36px;
  margin: 15px 0;
}

.highlight {
  color: #3A86FF;
}

.faq-left p {
  color: #A7B1C2;
  line-height: 1.6;
}

/* POINTS */
.points {
  margin: 20px 0;
}

.points div {
  color: #A7B1C2;
  margin-bottom: 8px;
}

.points i {
  color: #3A86FF;
  margin-right: 8px;
}

/* BUTTON */
.cta button {
  background: #3A86FF;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* RIGHT FAQ */
.faq-right {
  flex: 1;
 
}

.faq {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
}

/* QUESTION */
.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #EAEAEA;
}

.question i {
  color: #3A86FF;
  transition: 0.3s;
}

/* ANSWER */
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.answer p {
  color: #A7B1C2;
  margin-top: 10px;
}

.analysis {
  color: #3A86FF;
  font-size: 13px;
}

/* ACTIVE */
.faq.active .answer {
  max-height: 200px;
}

.faq.active .question i {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
}



/* SECTION */
/* SECTION */
.testimonial-section {
 
  padding: 60px 20px;
  color: #fff;
}



/* FLEX */
.content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* LEFT */
.left {
  flex: 1;
}

.left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #38bdf8;
}

.left p {
  color: #cbd5f5;
  line-height: 1.6;
}

/* RIGHT */
.right {
  flex: 1;
}

.right iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: 2px solid #38bdf8;
}

/* LOGOS */
.logo-navigation {
  margin-top: 30px;
  text-align: center;
}

.logo-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-item {
  padding: 10px 20px;
  border: 1px solid #334155;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.logo-item:hover {
  background: #38bdf8;
  color: #000;
}

.logo-item.active {
  background: #38bdf8;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .right iframe {
    height: 220px;
  }
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0B132B;
}

/* FULL WIDTH SECTION */
.tools-section {
  width: 100%;
  padding: 80px 0; /* side padding hata diya */
  text-align: center;
}

/* OPTIONAL: content ko control karne ke liye inner wrapper feel */
.tools-section h2 {
  color: #EAEAEA;
  margin-bottom: 50px;
  font-size: 32px;
}

/* ROW FULL WIDTH */
.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

/* TOOL DESIGN IMPROVE */
.tool {
  background: #1C2541;
  padding: 12px 22px;
  border-radius: 30px;
  color: #EAEAEA;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER EFFECT 🔥 */
.tool:hover {
  background: #3A86FF;
  transform: translateY(-3px);
}

/* IMAGE */
.tool img {
  width: 22px;
  height: 22px;
}

/* MARQUEE FULL WIDTH */
.marquee {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}

.marquee-content {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 18s linear infinite;
}




.tools-section {
  width: 100%;
  padding: 80px 0; /* side space hata diya */
  text-align: center;
}

/* ROW FULL WIDTH */
.tools-row {
  display: flex;
  flex-wrap: nowrap; /* wrap hatao */
  justify-content: space-between; /* full spread */
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
  padding: 0 40px; /* thoda left-right spacing */
  box-sizing: border-box;
}

/* TOOL SAME */
.tool {
  background: #1C2541;
  padding: 12px 22px;
  border-radius: 30px;
  color: #EAEAEA;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* text break na ho */
}

/* SMOOTH SCROLL */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* SECTION */
.highlight-section {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

/* BOX */
.highlight-box {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  background: #1C2541;
}

/* HEADING */
.highlight-box h2 {
  color: #EAEAEA;
  font-size: 52px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* PARAGRAPH */
.highlight-box p {
  color: #A7B1C2;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* IMAGE */
.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}


.purple-icon {
  color: #7B2CBF;
  font-size: 42px;
 
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .highlight-box {
    padding: 30px 20px;
  }

  .highlight-box h2 {
    font-size: 24px;
  }
}

/* GRID UPDATE: 4 columns instead of 6 */
/* FOOTER STYLING */


/* FOOTER */
.footer {
  color: #ccc;
  padding: 60px 20px 20px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: center;   /* 👈 center hi rahe */
  flex-wrap: wrap;
  gap: 200px;   /* 👈 gap kam */
}

/* column ko shrink hone do */
.footer-col {
  min-width: auto;   /* 👈 important */
  padding: 0 5px;    /* 👈 thoda internal spacing */
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

/* ✅ LIST (Platform / Solutions / Resources) */
.footer-col ul {
  list-style: none;   /* ❌ remove dots */
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #aaa;
  cursor: default;
  transition: 0.3s;
}

/* 🔥 hover effect (non-clickable) */
.footer-col ul li:hover {
  color: #00ffd5;
  transform: translateX(4px);
}

/* ✅ LINKS (Legal section only) */
.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #00ffd5;
}

/* ✅ FOOTER BOTTOM (center fix) */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 15px 0;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  width: 100%;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }
}

.security-image-only {
  
  padding: 30px 15px;
  text-align: center;
}

/* IMAGE RESPONSIVE */
.security-image-only img {
  width: 100%;
  max-width: 1200px; 
   /* desktop me limit */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .security-image-only {
    padding: 20px 10px;
  }

  .security-image-only img {
    max-width: 100%;
  }
}





.contact-pro {
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 80px 20px;
  color: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.subtitle {
  color: #cbd5f5;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #0f172a;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  transition: 0.3s;
}

.feature:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
}

/* CONTACT INFO */
.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #aaa;
}

/* RIGHT */
.contact-right {
  flex: 1;
  background: rgba(15, 23, 42, 0.8);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  backdrop-filter: blur(10px);
}

.contact-right h3 {
  margin-bottom: 20px;
  color: #38bdf8;
}

/* INPUT */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  background: #020617;
  border: 1px solid #334155;
  border-radius: 6px;
  color: #fff;
  outline: none;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #888;
  transition: 0.3s;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #38bdf8;
  background: #020617;
  padding: 0 5px;
}

/* BUTTON */
.contact-right button {
  width: 100%;
  padding: 12px;
  background: #38bdf8;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  background: #0ea5e9;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

/* TOP HEADING */
.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h2 {
  font-size: 2.8rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.contact-heading p {
  color: #cbd5f5;
  font-size: 1rem;
}


body {
  font-family: 'Inter', 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}

/* HEADING */
.contact-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

/* LEFT TITLE */
.contact-left h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* SUBTITLE */
.subtitle {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
}

/* FEATURES TEXT */
.feature p {
  font-size: 14px;
  color: #cbd5f5;
}

/* FORM TITLE */
.contact-right h3 {
  font-weight: 600;
}

/* BUTTON */
.contact-right button {
  font-size: 14px;
  letter-spacing: 0.5px;
}



.pricing-clean {
 
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

.pricing-head h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-head p {
  color: #94a3b8;
  margin-bottom: 60px;
}

/* GRID */
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.plan {
  background: #0f172a;
  padding: 28px 22px;
  border-radius: 14px;
  border: 1px solid #1e293b;
  text-align: left;
  transition: all 0.3s ease;
}

/* HOVER EFFECT ONLY */
.plan:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56,189,248,0.15);
}

/* PRICE */
.price {
  font-size: 28px;
  margin: 10px 0;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
}

/* LIST */
.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #cbd5f5;
}

/* BUTTON */
.plan button {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 8px;
  background: #38bdf8;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.plan button:hover {
  background: #0ea5e9;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-head h2 {
    font-size: 2rem;
  }
}