html {
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* HEADINGS SCALE */
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p  { font-size: clamp(14px, 1.5vw, 16px); }

/* CONTAINER FIX */
.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
}

:root {
  --section-padding: 80px;
  --section-padding-large: 100px;
  --section-padding-small: 60px;

  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 60px;
  --space-xl: 80px;
}


section {
  padding: var(--space-xl) 40px;
}


@media (max-width: 992px) {
  section {
    padding: var(--space-lg) 20px;
  }
}

#header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.hero {
background: url("../images/homenew.jpg") no-repeat center;
  background-size: cover;
color: white;
position: relative;
}

/* REMOVE OVERLAYS */
.hero::before,
.hero::after {
display: none;
}

/* ================= LAYOUT ================= */
.hero-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1400px;
margin: auto;
gap: 60px;
}

/* ================= LEFT ================= */
.hero-left {
flex: 1;
max-width: 700px;
}

.hero-left h1 {
font-size: clamp(32px, 5vw, 52px);
margin-bottom: 18px;
line-height: 1.15;
font-weight: 600;
letter-spacing: -0.8px;

background: linear-gradient(90deg, #ffffff, #c084fc);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-left p {
font-size: 16px;
margin-bottom: 25px;
line-height: 1.7;
color: #ddd;
}

/* ================= BUTTONS ================= */
.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 25px;
flex-wrap: wrap;
}

/* ================= STATS ================= */
.stats {
display: flex;
gap: 25px;
flex-wrap: wrap;
}

.stats h2 {
font-size: 22px;
color: #ffcc00;
}

.stats span {
font-size: 13px;
color: #ccc;
}


.hero-right {
flex: 0.8;
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 0;
margin-left: auto;
align-items: flex-start; 
max-width: 300px;
}

/* ================= SERVICES ================= */
.services {
display: flex;
flex-direction: column;
gap: 18px;
width: 100%;
}

.service-card {
display: flex;
align-items: center;
gap: 12px;
background: transparent; 
border: none;
padding: 8px 0;
font-size: 19px;
color: #f8f8f6;
transform: translateX(5px);
border-bottom: 1px solid rgba(255,255,255,0.2); /* line like design */
transition: 0.3s;
}


/* ================= INSIGHTS ================= */
.insights {
text-align: left;
margin-top: 10px;
}

.dots {
margin-bottom: 8px;
}

.dots span {
width: 6px;
height: 6px;
background: #777;
display: inline-block;
border-radius: 50%;
margin-right: 6px;
}

.dots .active {
background: #ffcc00;
}

.insights p {
color: #ffcc00;
font-size: 19px;
opacity: 0.9;
}

/* ================= BUTTON ================= */
.btn-outline {
border: 1px solid #fff;
padding: 10px 20px;
border-radius: 8px;
color: #fff;
text-decoration: none;
transition: 0.3s;
}

.btn-outline {
background: #fff;
color: #000;
}

/* ================= LARGE SCREENS (1600+) ================= */
@media (min-width: 1600px) {
.hero-content {
max-width: 1500px;
}
}

/* ================= LAPTOP ================= */
@media (max-width: 1200px) {

.hero-content {
gap: 40px;
}

.hero-right {
max-width: 360px;
}

}

/* ================= TABLET ================= */
@media (max-width: 992px) {

.hero {
padding: 60px 20px;
background-position: center;
background-size: cover;
}

.hero-content {
flex-direction: column;
text-align: center;
gap: 40px;
}

.hero-left {
max-width: 100%;
}

.hero-right {
align-items: center;
margin-left: 0;
max-width: 100%;
}

.services {
grid-template-columns: 1fr;
}

.insights {
text-align: center;
}

.stats {
justify-content: center;
}

}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

.hero {
padding: 50px 15px;

background:
  linear-gradient(rgba(20,7,46,0.85), rgba(20,7,46,0.85)),
  url("../images/homenew.jpg") no-repeat center;
background-size: cover;

}

.hero-left h1 {
font-size: 26px;
}

.hero-left p {
font-size: 14px;
}

.hero-buttons {
flex-direction: column;
align-items: center;
}

.stats {
flex-direction: column;
gap: 12px;
align-items: center;
}

section {
    padding: 60px 15px;
  }

}


/* ================= ABOUT SECTION PREMIUM ================= */
.about-section {
  position: relative;
  overflow: hidden;
  text-align: center;

  background:
    radial-gradient(circle at 10% 20%, rgba(106,44,255,0.08), transparent),
    radial-gradient(circle at 90% 80%, rgba(255,0,200,0.06), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
}

/* FULL WIDTH CONTROL */
.about-section .container {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* BADGE */
.about-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14.5px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.3;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;

  box-shadow: 0 10px 30px rgba(106,44,255,0.3);
}

/* HEADING */
.about-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;

  background: linear-gradient(90deg, #000, #6a2cff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-section h2 span {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* SUB HEADING */
.about-section h4 {
  font-size: 22px;
  color: #6a2cff;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.5;
}

/* TEXT */
.about-section p {
  font-size: 18.5px;
  color: #333;
  line-height: 2;
  max-width: 1200px;
  margin: 0 auto 25px;
}

.highlight {
  color: #6a2cff;
  font-weight: 600;
}

/* ================= FEATURES GRID ================= */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.feature-box {
  position: relative;
  padding: 70px 30px 35px;
  border-radius: 22px;

  background: linear-gradient(145deg, #ffffff, #f3f1ff);
  border: 1px solid rgba(106,44,255,0.12);

  box-shadow:
    0 20px 60px rgba(106,44,255,0.12),
    0 5px 15px rgba(0,0,0,0.05);

  transition: all 0.4s ease;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-12px);

  box-shadow:
    0 40px 100px rgba(106,44,255,0.25),
    0 0 40px rgba(255,0,200,0.12);
}

/* ICON */
.about-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);

  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;
  font-size: 28px;

  box-shadow: 0 15px 40px rgba(106,44,255,0.4);
}

/* CARD TEXT */
.feature-box h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.feature-box p {
  font-size: 15.8px;
  margin-top: 8px;
  color: #333;
  line-height: 1.8;
}

/* BACKGROUND GLOW */
.about-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(106,44,255,0.2), transparent);
  top: -80px;
  left: -80px;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,200,0.2), transparent);
  bottom: -80px;
  right: -80px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {

  .about-section {
    padding: 100px 30px;
  }

  .about-section h2 {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 80px 20px;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section h4 {
    font-size: 16px;
  }

  .about-section p {
     font-size: 16.5px;
    line-height: 1.8;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

   .feature-box h3 {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 15px;
  }

   .about-badge {
    font-size: 13px;
  }
  
}

.featured-services-advanced {
    background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.06), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.05), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
  position: relative;
  overflow: hidden;
   padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}


.featured-services-advanced::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106,44,255,0.15), transparent);
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.featured-services-advanced::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,200,0.12), transparent);
  right: -150px;
  bottom: -100px;
  filter: blur(140px);
}

.featured-services-advanced h2 {
  text-align: center;
  font-size: 42px;
  margin: 0 auto 15px;
  font-weight: 700;
  max-width: 800px;

  letter-spacing: -0.5px;
}

.featured-services-advanced h2 span {
  color: #6a2cff;
  position: relative;
}
.subtitle {
  text-align: center;
  color: #333;
  max-width: 1000px;
  font-size: 18px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.featured-services-advanced .container-wide {
  max-width: 1600px;
}


.service-advanced {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffffff, #f8f6ff);
  border: 1px solid rgba(106,44,255,0.1);
  border-left: 4px solid #6a2cff;
  backdrop-filter: blur(12px);
  padding: 60px;
  border-radius: 22px;
  box-shadow: 
    inset 3px 0 10px rgba(106,44,255,0.2),
    0 25px 70px rgba(0,0,0,0.06),
    0 15px 40px rgba(106,44,255,0.08);
  transition: 0.4s;
}

.service-advanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(106,44,255,0.15);
}

.featured-services-advanced h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  margin: 15px auto 0;
  border-radius: 10px;
}

.service-advanced.reverse {
  flex-direction: row-reverse;
}

.service-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  transition: 0.4s;
  box-shadow: 0 20px 60px rgba(106,44,255,0.2);
}

.service-img img:hover {
  transform: scale(1.06);
}


.service-content {
  flex: 1;
  max-width: 800px; 
   text-align: left;
}

.service-content h3 {
  font-size:28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
   letter-spacing: -0.5px;
}


.service-desc {
  color: #333;
  line-height: 2;
  margin-bottom: 30px;
  font-size: 18px;
  
}

.features-list {
  display: grid;
   grid-template-columns: repeat(2, 1fr);
  
  gap: 14px;
  margin-bottom: 30px;
}

.features-list div {
  font-size: 14.5px;
  color: #333;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
    display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(106,44,255,0.08);

  padding: 12px 14px;
  border-radius: 10px;

  transition: all 0.3s ease;
}

.features-list div:hover {
  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;
  transform: translateY(-3px);
}

.tech-stack {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  background: rgba(106,44,255,0.08);
  color: #6a2cff;

  padding: 8px 16px;
  border-radius: 30px;

  font-size: 13px;
  font-weight: 500;

  border: 1px solid rgba(106,44,255,0.15);

  transition: all 0.3s ease;
}

.tech-stack span:hover {
  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(106,44,255,0.3);
}

.explore-btn {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 992px) {

  .service-advanced {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
    max-width: 90%; 
    margin: 0 auto 80px auto;
  }

  .service-advanced.reverse {
    flex-direction: column;
  }

  .service-img img {
    max-width: 350px; 
  }

  .service-content {
    text-align: center;
  }

  .service-desc {
    max-width: 100%; 
  }

  .features-list {
    grid-template-columns: 1fr; 
  }

  .tech-stack {
    justify-content: center; 
  }
}

@media (max-width: 576px) {

  .featured-services-advanced h2 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .service-advanced {
    padding: 20px; 
    gap: 20px;
  }

  .service-content h3 {
    font-size: 22px; 
  }

  .service-desc {
    font-size: 14px;
  }

  .service-img img {
    max-width: 280px;
  }

  .features-list div {
    font-size: 13px;
    padding: 8px 10px;
  }

  .tech-stack span {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ================= HIRE SECTION ================= */
.hire-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(106,44,255,0.08), transparent),
    radial-gradient(circle at 80% 70%, rgba(255,0,200,0.06), transparent),
    linear-gradient(180deg, #f3f1ff, #ffffff);
}

/* LAYOUT */
.hire-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* TEXT AREA */
.hire-content {
  flex: 1;
  max-width: 700px;  /* 🔥 control readability */
}

/* HEADING (MATCH ABOUT) */
.hire-content h2 {
  font-size: 48px;   
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hire-content h2 span {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);

  background-clip: text;              
  -webkit-background-clip: text;      

  color: transparent;                 
  -webkit-text-fill-color: transparent; 
}

/* PARAGRAPH (MATCH ABOUT) */
.hire-content p {
  font-size: 18px;
  color: #444;
  line-height: 2;
  margin-bottom: 30px;
}

/* FEATURES (MATCH SERVICES STYLE) */
.hire-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 35px;
}

.hire-features div {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(106,44,255,0.08);

  padding: 12px 14px;
  border-radius: 10px;

  font-size: 15px;
  color: #333;

  transition: all 0.3s ease;
}

.hire-features div:hover {
  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;
  transform: translateY(-3px);
}

/* BUTTON (already good but polish) */
.btn-primary {
  display: inline-block;
  padding: 15px 32px;
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(106,44,255,0.4);
}

/* IMAGE */
.hire-image {
  position: relative;
  flex: 1;
  text-align: center;
}

.hire-image img {
  width: 100%;
  max-width: 420px;  
  border-radius: 20px;
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }  /* thoda smooth increase */
  100% { transform: translateY(0px); }
}

/* FLOAT ICONS */
.icon {
  position: absolute;
  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;
  padding: 10px;
  border-radius: 50%;
  animation: floatSmooth 4s ease-in-out infinite;
}

.icon1 {
  top: 10%;
  right: 20%;
}

.icon2 {
  bottom: 10%;
  left: 20%;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {

  .hire-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hire-content {
    max-width: 100%;
  }

  .hire-content h2 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .hire-section {
    padding: 80px 20px;
  }

  .hire-content h2 {
    font-size: 28px;
  }

  .hire-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .hire-features {
    grid-template-columns: 1fr;
  }

  .hire-image img {
    max-width: 280px;
  }
}


/* ================= PORTFOLIO SECTION ================= */
.portfolio-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.06), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.05), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);
}

/* HEADING (CONSISTENT) */
.portfolio-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.portfolio-section h2 span {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE (MATCH OTHER SECTIONS) */
.portfolio-section .subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  color: #444;
  line-height: 1.9;
  font-size: 18px;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

/* CARD */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.4s;

  height: 280px;   /* 🔥 increased */

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106,44,255,0.1);

  box-shadow: 0 20px 60px rgba(106,44,255,0.08);
}

/* IMAGE FIX */
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: 0.4s;
}

/* OVERLAY (PREMIUM) */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;

  background: linear-gradient(
    to top,
    rgba(16, 16, 172, 0.9),
    rgba(16, 16, 172, 0.4)
  );

  color: white;

  transform: translateY(100%);
  transition: all 0.4s ease;
}

.portfolio-overlay h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.portfolio-overlay p {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.portfolio-overlay a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER */
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(106,44,255,0.2);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
}

/* ================= TOOLS SECTION ================= */
.tools-section {
  text-align: center;
  margin-top: 80px;
}

.tools-section h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tools-subtitle {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #444;
  line-height: 1.9;
  font-size: 18px;
}


.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.tool-card {
  position: relative;
  padding: 35px;
  text-align: left;
  border-radius: 20px;

  background: linear-gradient(135deg, #ffffff, #f8f6ff);
  border: 1px solid rgba(106,44,255,0.1);

  box-shadow: 
    0 15px 50px rgba(106,44,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: all 0.4s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
}


.tool-icon {
  font-size: 26px;
  margin-bottom: 15px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: #fff;

  box-shadow: 0 10px 25px rgba(106,44,255,0.3);
}

/* TEXT */
.tool-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.tool-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .portfolio-section {
    padding: 80px 20px;
  }

  .portfolio-section h2 {
    font-size: 30px;
  }

  .portfolio-section .subtitle {
    font-size: 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  
  .portfolio-overlay {
    transform: translateY(0);
  }
}

/* ================= WHY SECTION ================= */

.why-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.06), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.05), transparent),
    linear-gradient(180deg, #ffffff, #f3f1ff);

  overflow: hidden; /* 🔥 FIX: horizontal scroll remove */
}

/* WRAPPER */
.why-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

/* CONTENT */
.why-content {
  flex: 1;
  max-width: 650px;
  animation: fadeUp 1s ease forwards;

  margin: 0 auto;      
  text-align: center;   
}

/* HEADING */
.why-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.5px;
  text-align: center;
}

.why-content h2 .icon {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;
  font-size: 24px;

  animation: glow 2s infinite alternate;
}

/* SUB HEADING */
.why-content h3 {
  font-size: 22px;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.why-content p {
  color: #333;
  line-height: 2;
  margin-bottom: 40px;
  font-size: 18px;
}

/* FEATURES GRID */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 16px;
  border-radius: 16px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(106,44,255,0.08);

  transition: all 0.3s ease;
  justify-content: flex-start; 
  text-align: left; 
}

/* ICON */
.why-item span {
  min-width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #6a2cff, #ff00cc);
  color: white;
  font-size: 22px;

  box-shadow: 0 10px 25px rgba(106,44,255,0.25);
}

/* TEXT */
.why-item p {
  font-size: 15.5px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* HOVER */
.why-item:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: 0 20px 50px rgba(106,44,255,0.15);
}

.why-item:hover span {
  transform: scale(1.1);
}

/* ================= IMAGE SIDE ================= */

.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;

  overflow: hidden; /* 🔥 FIX */
}

.why-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;

  animation: float 4s ease-in-out infinite;
}

/* BACK GLOW */
.why-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(106,44,255,0.2), transparent);
  border-radius: 50%;
  z-index: -1;
}

/* ORBITS */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  animation: rotate 25s linear infinite;
  opacity: 0.6;
}

.orbit1 {
  width: 250px;   /* 🔥 FIX */
  height: 250px;
}

.orbit2 {
  width: 300px;   /* 🔥 FIX */
  height: 300px;
  animation-duration: 30s;
}

/* DOTS */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot1 { background: #ff00cc; top: 20%; left: 40%; }
.dot2 { background: #6a2cff; top: 60%; left: 10%; }
.dot3 { background: orange; top: 80%; left: 60%; }

/* ================= ANIMATIONS ================= */

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(106,44,255,0.4); }
  to { box-shadow: 0 0 25px rgba(255,0,200,0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .why-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-content {
    max-width: 100%;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-item {
    justify-content: flex-start;
    text-align: left;
  }

   .why-content h2 {
    text-align: center;
  }
}

@media (max-width: 576px) {

  .why-section {
    padding: 80px 20px;
  }

  .why-content h2 {
    font-size: 30px;
  }

  .why-content h3 {
    font-size: 18px;
  }

  .why-content p {
    font-size: 16px;
  }
}

/* ================= CONTACT PREMIUM ================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 40px;

  background:
    radial-gradient(circle at 20% 20%, rgba(106,44,255,0.10), transparent),
    radial-gradient(circle at 80% 80%, rgba(255,0,200,0.08), transparent),
    linear-gradient(180deg, #f9f7ff, #f1ecff);
}

/* GLOW EFFECT */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.contact-section::before {
  width: 400px;
  height: 400px;
  background: rgba(106,44,255,0.25);
  top: -100px;
  left: -100px;
}

.contact-section::after {
  width: 400px;
  height: 400px;
  background: rgba(255,0,200,0.2);
  bottom: -120px;
  right: -120px;
}

/* ================= HEADING ================= */

.contact-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.contact-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;

  background: linear-gradient(90deg, #6a2cff, #ff00cc);

  background-clip: text;              
  -webkit-background-clip: text;      

  color: transparent;                 
  -webkit-text-fill-color: transparent;
}

.contact-heading p {
  margin-top: 10px;
  color: #6a2cff;
  font-size: 16px;
  opacity: 0.9;
}

/* ================= LAYOUT ================= */

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ================= LEFT SIDE ================= */

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

/* CARD STYLE */
.info-box {
  margin-bottom: 20px;
  padding: 22px;
  border-radius: 16px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 10px 30px rgba(106,44,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(106,44,255,0.2);
}

/* ICON STYLE */
.info-box h4 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #6a2cff;
}

.info-box p {
  color: #555;
  font-size: 14px;
}

/* ================= FORM SIDE ================= */

.contact-form {
  flex: 1;
  padding: 35px;
  border-radius: 20px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 25px 70px rgba(106,44,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* INPUT PREMIUM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 15px;

  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);

  background: rgba(255,255,255,0.8);

  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6a2cff;
  box-shadow: 0 0 0 3px rgba(106,44,255,0.15);
  transform: scale(1.01);
}

/* ROW */
.form-row {
  display: flex;
  gap: 15px;
}

/* TEXTAREA */
.contact-form textarea {
  height: 140px;
  resize: none;
}

/* BUTTON PREMIUM */
.contact-form button {
  background: linear-gradient(90deg, #6a2cff, #ff00cc);
  color: white;
  border: none;

  padding: 14px 30px;
  border-radius: 30px;

  font-weight: 600;
  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(106,44,255,0.3);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255,0,200,0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }
}

.ad-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ad-popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  animation: popup 0.4s ease;
}

@keyframes popup {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ad-popup-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ad-popup-box h2 {
  margin: 15px 0 5px;
}

.ad-popup-box p {
  padding: 0 15px;
}

.popup-btn {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  background: linear-gradient(90deg,#6a2cff,#ff00cc);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.feature-link {
  text-decoration: none;
  color: inherit;
  display: block;
}