/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL SMOOTHNESS */
html {
  scroll-behavior: smooth;
}

/* SECTION FADE ON LOAD (fallback) */
section {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON MICRO ANIMATION */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  left: 0;
  top: 0;
  transition: 0.4s;
}

.btn:hover::after {
  width: 100%;
}

body {
  background: #0b1120;
  color: #e2e8f0;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 50px;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  position: relative;
  font-size: 1.2rem;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #38bdf8;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* CONTACT */
#contact_section {
  padding: 70px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-info,
.contact-form {
  background: rgba(30, 41, 59, 0.7);
  padding: 25px;
  border-radius: 15px;
  width: 320px;
}

.contact-info a {
  color: #38bdf8;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 12px 0;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #020617;
  color: #fff;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #38bdf8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0ea5e9;
}

/* FOOTER */
footer {
  background: #020617;
  text-align: center;
  padding: 25px;
}

.social-links {
  margin-top: 10px;
}

.social-links img {
  width: 30px;
  margin: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
}

/* GLOBAL IMPROVEMENTS */
section {
  margin-bottom: 60px;
}

h2 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CONTAINER CONTROL */
main {
  width: 100%;
  overflow-x: hidden;
}

/* HERO IMPROVE */
#hero_section {
  max-width: 1100px;
  margin: auto;
}

#hero_section img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* BUTTON IMPROVE */
.btn {
  letter-spacing: 0.5px;
}

/* CONTACT IMPROVE */
.contact-info p {
  margin: 10px 0;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* FOOTER UPGRADE */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}

.footer-grid h4,
.footer-grid h3 {
  margin-bottom: 10px;
}

.footer-grid a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #38bdf8;
}

/* ===== PREMIUM SECTION HEADINGS ===== */
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #e2e8f0;
}

/* Underline Accent */
h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #38bdf8, transparent);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 10px;
}

/* Subtle Glow */
h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.15),
    transparent 70%
  );
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}

/* Mobile Adjust */
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* NAVBAR STACK */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* CONTACT */
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 15px 20px;
  }

  .navbar ul {
    gap: 15px;
  }
}

/* ===== REVIEW FORM SECTION ===== */

#review_form_section {
  padding: 100px 20px;
  text-align: center;
}

#review_form_section .section_title {
  margin-bottom: 40px;
}

/* FORM BOX */
#reviewForm {
  max-width: 650px;
  margin: auto;
  padding: 35px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUTS */
#reviewForm input,
#reviewForm select,
#reviewForm textarea {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 14px;

  background: #0f172a;

  color: white;

  font-size: 1rem;

  outline: none;

  transition: 0.3s;
}

/* FOCUS EFFECT */
#reviewForm input:focus,
#reviewForm select:focus,
#reviewForm textarea:focus {
  border: 1px solid #38bdf8;

  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

/* TEXTAREA */
#reviewForm textarea {
  min-height: 140px;
  resize: none;
}

/* BUTTON */
#reviewForm button {
  padding: 16px;

  border: none;

  border-radius: 14px;

  background: linear-gradient(135deg, #38bdf8, #0ea5e9);

  color: #000;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

/* BUTTON HOVER */
#reviewForm button:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

/* ===== REVIEWS DISPLAY ===== */

#reviews_section {
  padding: 100px 20px;

  max-width: 1300px;

  margin: auto;

  text-align: center;
}

/* GRID */
.reviews-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  margin-top: 50px;
}

/* REVIEW CARD */
.review-card {
  position: relative;

  overflow: hidden;

  padding: 35px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: left;

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* TOP GLOW */
.review-card::before {
  content: "";

  position: absolute;

  top: -50px;
  right: -50px;

  width: 140px;
  height: 140px;

  background: rgba(56, 189, 248, 0.12);

  border-radius: 50%;

  filter: blur(30px);
}

/* HOVER */
.review-card:hover {
  transform: translateY(-10px);

  border-color: rgba(56, 189, 248, 0.35);
}

/* STARS */
.stars {
  color: #facc15;

  font-size: 1.2rem;

  margin-bottom: 18px;
}

/* REVIEW TEXT */
.review-card p {
  color: #dbe4ee;

  line-height: 1.8;

  margin-bottom: 22px;

  font-size: 0.98rem;
}

/* CLIENT NAME */
.review-card h4 {
  color: #38bdf8;

  font-size: 1rem;

  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  #reviewForm {
    padding: 25px;
  }

  .review-card {
    padding: 25px;
  }
}

/*See more button*/
.review-btn-container {
  text-align: center;

  margin-top: 40px;
}

#loadMoreBtn {
  padding: 16px 28px;

  border: none;

  border-radius: 14px;

  background: linear-gradient(135deg, #38bdf8, #0ea5e9);

  color: black;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

#loadMoreBtn:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

/* ===== PROJECT SECTION ===== */

#project_section {
  padding: 110px 20px;

  background: linear-gradient(to bottom, #0b1120, #111827);
}

/* HEADING */

.project-heading {
  text-align: center;

  max-width: 800px;

  margin: auto auto 70px;
}

.project-subtitle {
  color: #38bdf8;

  font-size: 0.95rem;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 15px;
}

.project-heading h2 {
  font-size: 3rem;

  margin-bottom: 20px;

  font-weight: 700;
}

.project-description {
  color: #94a3b8;

  line-height: 1.8;

  font-size: 1.05rem;
}

/* GRID */

.projects-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
}

/* CARD */

.project-card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 28px;

  overflow: hidden;

  transition: 0.4s;

  backdrop-filter: blur(10px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

  position: relative;
}

/* CARD HOVER */

.project-card:hover {
  transform: translateY(-12px);

  border-color: rgba(56, 189, 248, 0.35);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* IMAGE CONTAINER */

.project-image {
  width: 100%;

  height: 280px;

  overflow: hidden;

  background: #0f172a;
}

/* IMAGE */

.project-image img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: 0.5s;

  padding: 10px;
}

/* IMAGE HOVER */

.project-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */

.project-content {
  padding: 28px;
}

/* TAG */

.project-tag {
  display: inline-block;

  padding: 8px 14px;

  border-radius: 30px;

  background: rgba(56, 189, 248, 0.12);

  color: #38bdf8;

  font-size: 0.82rem;

  margin-bottom: 18px;

  font-weight: 600;
}

/* TITLE */

.project-content h3 {
  font-size: 1.45rem;

  margin-bottom: 15px;

  color: white;
}

/* DESCRIPTION */

.project-content p {
  color: #cbd5e1;

  line-height: 1.8;

  font-size: 0.96rem;
}

/* MOBILE */

@media (max-width: 768px) {
  #project_section {
    padding: 80px 15px;
  }

  .project-heading h2 {
    font-size: 2.2rem;
  }

  .project-image {
    height: 240px;
  }
}

/* ===== ABOUT SECTION ===== */

#about_section {
  padding: 110px 20px;

  background: linear-gradient(to bottom, #0b1120, #111827);
}

/* MAIN LAYOUT */

.about-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

/* ===== IMAGE SIDE ===== */

.about-image {
  position: relative;
}

/* IMAGE */

.about-image img {
  width: 100%;

  border-radius: 28px;

  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* EXPERIENCE BADGE */

.experience-badge {
  position: absolute;

  bottom: -25px;
  right: -20px;

  background: linear-gradient(135deg, #38bdf8, #0ea5e9);

  color: #000;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.35);
}

.experience-badge h3 {
  font-size: 2.8rem;

  font-weight: 700;
}

.experience-badge p {
  font-size: 0.95rem;

  font-weight: 600;
}

/* ===== CONTENT SIDE ===== */

.about-subtitle {
  color: #38bdf8;

  letter-spacing: 2px;

  font-size: 0.9rem;

  margin-bottom: 15px;

  text-transform: uppercase;
}

/* HEADING */

.about-content h2 {
  font-size: 3rem;

  line-height: 1.2;

  margin-bottom: 25px;

  color: white;
}

/* TEXT */

.about-text {
  color: #cbd5e1;

  line-height: 1.9;

  margin-bottom: 40px;

  font-size: 1.02rem;
}

/* ===== FEATURES ===== */

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 40px;
}

/* FEATURE BOX */

.feature-box {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  padding: 20px;

  border-radius: 18px;

  display: flex;

  gap: 15px;

  align-items: flex-start;

  transition: 0.3s;
}

/* HOVER */

.feature-box:hover {
  transform: translateY(-5px);

  border-color: rgba(56, 189, 248, 0.3);
}

/* CHECK ICON */

.feature-box span {
  color: #38bdf8;

  font-size: 1.3rem;

  font-weight: bold;
}

/* FEATURE TITLE */

.feature-box h4 {
  color: white;

  margin-bottom: 8px;

  font-size: 1rem;
}

/* FEATURE TEXT */

.feature-box p {
  color: #94a3b8;

  font-size: 0.92rem;

  line-height: 1.6;
}

/* ===== SERVICE TAGS ===== */

.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.service-tags span {
  padding: 12px 18px;

  border-radius: 40px;

  background: rgba(56, 189, 248, 0.08);

  border: 1px solid rgba(56, 189, 248, 0.2);

  color: #38bdf8;

  font-size: 0.9rem;

  transition: 0.3s;
}

/* TAG HOVER */

.service-tags span:hover {
  background: #38bdf8;

  color: black;

  transform: translateY(-3px);
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-content h2 {
    font-size: 2.3rem;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -10px;
  }

  .experience-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  #about_section {
    padding: 80px 15px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

/* ===== HERO SECTION ===== */

#hero_section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 20px 100px;
  background: linear-gradient(135deg, #020617, #0f172a, #111827);
}

/* OVERLAY */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(56, 189, 248, 0.12),
    transparent 35%
  );

  z-index: 1;
}

/* GLOW EFFECTS */

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.25;

  animation: floatGlow 8s ease-in-out infinite;
}

.glow1 {
  width: 300px;
  height: 300px;

  background: #38bdf8;

  top: -80px;
  right: -50px;
}

.glow2 {
  width: 250px;
  height: 250px;

  background: #0ea5e9;

  bottom: -50px;
  left: -50px;

  animation-delay: 2s;
}

/* MAIN CONTAINER */

.hero-container {
  position: relative;

  z-index: 2;

  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 1.1fr 1fr;

  gap: 70px;

  align-items: center;
}

/* ===== CONTENT ===== */

.hero-content {
  animation: heroFade 1s ease;
}

/* SUBTITLE */

.hero-subtitle {
  color: #38bdf8;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 0.9rem;

  margin-bottom: 22px;

  font-weight: 600;
}

/* MAIN TITLE */

.hero-content h1 {
  font-size: 4.5rem;

  line-height: 1.1;

  font-weight: 800;

  margin-bottom: 28px;

  color: white;
}

/* DESCRIPTION */

.hero-description {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 1.05rem;

  max-width: 620px;

  margin-bottom: 40px;
}

/* ===== BUTTONS ===== */

.hero-buttons {
  display: flex;

  gap: 20px;

  margin-bottom: 50px;
}

/* BUTTON */

.hero-btn {
  padding: 16px 28px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

/* PRIMARY */

.primary-btn {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);

  color: black;

  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

/* SECONDARY */

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: white;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(10px);
}

/* HOVER */

.hero-btn:hover {
  transform: translateY(-5px);
}

/* ===== STATS ===== */

.hero-stats {
  display: flex;

  gap: 25px;

  flex-wrap: wrap;
}

/* STAT CARD */

.stat-box {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  padding: 22px 26px;

  border-radius: 18px;

  min-width: 160px;

  transition: 0.3s;
}

/* HOVER */

.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.3);
}

/* NUMBER */

.stat-box h3 {
  color: #38bdf8;
  font-size: 2rem;
  margin-bottom: 8px;
}

/* TEXT */

.stat-box p {
  color: #cbd5e1;
  font-size: 0.92rem;
}

/* ===== IMAGE ===== */

.hero-image {
  position: relative;
  animation: heroImage 1.2s ease;
}

/* IMAGE */

.hero-image img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FLOATING CARD */

.floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 22px;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: floatingCard 4s ease-in-out infinite;
}

/* FLOATING CARD TEXT */

.floating-card h4 {
  color: white;
  margin-bottom: 10px;
}

.floating-card p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  position: relative;
}

/* DOT */

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

/* ===== ANIMATIONS ===== */

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImage {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .hero-content h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 768px) {
  #hero_section {
    padding-top: 120px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .stat-box {
    width: 100%;
  }

  .floating-card {
    position: relative;
    margin-top: 20px;
    left: 0;
    transform: none;
    bottom: 0;
    max-width: 100%;
  }
}

/* ===== SERVICES SECTION ===== */

#service_section {
  padding: 110px 20px;

  background: linear-gradient(to bottom, #111827, #0b1120);

  position: relative;

  overflow: hidden;
}

/* ===== HEADING ===== */

.services-heading {
  max-width: 850px;

  margin: auto auto 70px;

  text-align: center;
}

/* SUBTITLE */

.services-subtitle {
  color: #38bdf8;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 0.9rem;

  margin-bottom: 18px;

  font-weight: 600;
}

/* TITLE */

.services-heading h2 {
  font-size: 3rem;

  color: white;

  margin-bottom: 22px;

  line-height: 1.2;
}

/* DESCRIPTION */

.services-description {
  color: #94a3b8;

  line-height: 1.9;

  font-size: 1.05rem;
}

/* ===== GRID ===== */

.services-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

/* ===== CARD ===== */

.service-card {
  position: relative;

  overflow: hidden;

  padding: 35px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(12px);

  transition: 0.4s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* GLOW EFFECT */

.service-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background: rgba(56, 189, 248, 0.08);

  border-radius: 50%;

  top: -80px;
  right: -80px;

  filter: blur(30px);

  transition: 0.4s;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-12px);

  border-color: rgba(56, 189, 248, 0.35);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* HOVER GLOW */

.service-card:hover::before {
  transform: scale(1.2);
}

/* ===== ICON ===== */

.service-icon {
  width: 75px;
  height: 75px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.18),
    rgba(14, 165, 233, 0.08)
  );

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

  margin-bottom: 28px;

  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ===== TITLE ===== */

.service-card h3 {
  font-size: 1.5rem;

  color: white;

  margin-bottom: 18px;
}

/* ===== TEXT ===== */

.service-card p {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 0.97rem;
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {
  .services-heading h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  #service_section {
    padding: 80px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 28px;
  }
}

/* ===== MOBILE NAVBAR FIX ===== */

@media (max-width: 768px) {
  /* HIDE LOGO ON MOBILE */

  .logo,
  .navbar h2,
  .navbar img {
    display: none;
  }

  /* NAVBAR */

  .navbar {
    justify-content: center;

    padding: 12px 10px;
  }

  /* NAV LINKS CONTAINER */

  .nav-links,
  .navbar ul {
    display: flex;

    flex-wrap: nowrap;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 0;

    margin: 0;

    width: 100%;
  }

  /* REMOVE BULLETS */

  .navbar ul li {
    list-style: none;
  }

  /* LINKS */

  .navbar ul li a {
    font-size: 1rem;
    padding: 8px 6px;
    white-space: nowrap;
  }
}

/* =========================================================
   COMPLETE PREMIUM MOBILE RESPONSIVE
   ADD THIS AT VERY END OF YOUR CSS
========================================================= */

@media (max-width: 992px) {
  /* ===== GLOBAL ===== */

  html,
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  h1,
  h2,
  h3 {
    line-height: 1.25;
  }

  p {
    line-height: 1.8;
  }

  /* =========================================================
     NAVBAR
  ========================================================= */

  header {
    padding: 12px 15px !important;
  }

  /* HIDE LOGO */

  .logo,
  .navbar h2,
  .navbar img {
    display: none !important;
  }

  /* =========================================================
     HERO SECTION
  ========================================================= */

  #hero_section {
    min-height: auto;

    padding-top: 120px !important;

    padding-bottom: 80px !important;
  }

  .hero-container {
    grid-template-columns: 1fr !important;

    gap: 45px !important;

    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.4rem !important;

    line-height: 1.15;

    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.96rem;

    max-width: 100%;

    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;

    gap: 14px;

    margin-bottom: 35px;
  }

  .hero-btn {
    width: 100%;

    text-align: center;
  }

  .hero-stats {
    justify-content: center;

    gap: 15px;
  }

  .stat-box {
    width: 100%;

    min-width: auto;
  }

  .hero-image img {
    border-radius: 24px;
  }

  .floating-card {
    position: relative !important;

    left: 0 !important;

    bottom: 0 !important;

    transform: none !important;

    max-width: 100%;

    margin-top: 20px;
  }

  .scroll-indicator {
    display: none;
  }

  /* =========================================================
     ABOUT SECTION
  ========================================================= */

  .about-container {
    grid-template-columns: 1fr !important;

    gap: 50px;
  }

  .about-image img {
    border-radius: 24px;
  }

  .experience-badge {
    width: 120px !important;
    height: 120px !important;

    right: -5px !important;
    bottom: -15px !important;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem !important;
  }

  .about-text {
    font-size: 0.96rem;
  }

  .about-features {
    grid-template-columns: 1fr !important;
  }

  .feature-box {
    text-align: left;
  }

  .service-tags {
    justify-content: center;
  }

  /* =========================================================
     SERVICES SECTION
  ========================================================= */

  .services-heading h2 {
    font-size: 2rem !important;
  }

  .services-description {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr !important;

    gap: 22px;
  }

  .service-card {
    padding: 28px !important;

    border-radius: 24px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.93rem;
  }

  /* =========================================================
     PROJECT SECTION
  ========================================================= */

  #project_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .projects-container,
  #projects_container {
    grid-template-columns: 1fr !important;

    gap: 28px;
  }

  .project-card,
  .projects_card {
    border-radius: 24px;

    overflow: hidden;
  }

  .project-card img,
  .projects_card img {
    height: auto !important;

    aspect-ratio: 4 / 3;

    object-fit: cover;
  }

  .project-info,
  .project_info {
    padding: 20px;
  }

  /* =========================================================
     REVIEW SECTION
  ========================================================= */

  .review-form {
    padding: 28px 20px !important;
  }

  .review-form input,
  .review-form textarea,
  .review-form select {
    font-size: 0.95rem;
  }

  .reviews-container {
    grid-template-columns: 1fr !important;
  }

  .review-card {
    padding: 24px;
  }

  /* =========================================================
     GALLERY SECTION
  ========================================================= */

  #gallery_section {
    padding-top: 70px;
  }

  .gallery-filters {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
  }

  .gallery-filters button {
    font-size: 0.82rem;

    padding: 10px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;

    gap: 22px !important;

    padding: 0 !important;
  }

  .gallery-item img,
  .gallery-item video {
    height: auto !important;

    aspect-ratio: 4 / 3;

    object-fit: cover;
  }

  /* =========================================================
     CONTACT SECTION
  ========================================================= */

  .contact-container {
    grid-template-columns: 1fr !important;

    gap: 35px;
  }

  .contact-info,
  .contact-form {
    padding: 28px 22px !important;
  }

  .contact-form form {
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .contact-form button {
    width: 100%;
  }

  /* =========================================================
     FOOTER
  ========================================================= */

  footer {
    padding: 50px 18px !important;

    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr !important;

    gap: 35px;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem !important;
  }

  .about-content h2,
  .services-heading h2,
  .section_title {
    font-size: 1.7rem !important;
  }

  .hero-subtitle,
  .services-subtitle,
  .about-subtitle {
    font-size: 0.75rem;
  }

  .service-tags span {
    font-size: 0.75rem;

    padding: 10px 14px;
  }
}

/* ===== MOBILE NAVBAR FIX ===== */

@media (max-width: 992px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* BODY TOP SPACE */

  body {
    padding-top: 70px;
  }
}

#progress_bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #38bdf8;
  width: 0%;
  z-index: 9999;
}

/* =====================================
   LOADER
===================================== */

#loader {
  position: fixed;

  inset: 0;

  background: #020617;

  z-index: 999999;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.7s ease;
}

/* CONTENT */

.loader-content {
  text-align: center;
}

/* SPINNER */

.spinner {
  width: 70px;

  height: 70px;

  border: 5px solid rgba(255, 255, 255, 0.15);

  border-top: 5px solid #38bdf8;

  border-radius: 50%;

  animation: spin 1s linear infinite;

  margin: auto;
}

/* TEXT */

.loader-content h2 {
  margin-top: 20px;

  color: white;

  font-size: 1.8rem;

  letter-spacing: 1px;
}

/* SPIN */

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
