:root {
  --bg-dark: #12141d;
  --screen-bg: #1a1f2e;
  --accent-blue: #1e3a8a;
  --white-border: #ffffff;
  --neon-glow: 0 0 20px rgba(255, 255, 255, 0.4);
  --primary: #0b1f44;
  --accent: #2563eb;
  --light: #f8fafc;
  --muted: #64748b;
  --dark: #020617;
  --radius: 16px;
  /* FIX: Removed max-width, margin, text-align — invalid in :root, caused layout bugs */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= NAVBAR ================= */
header {
  background: linear-gradient(135deg, #0b1f44, #12306b);
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  /* FIX: Removed flex-direction:column from base styles — caused logo/hamburger to always stack */
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: white; /* FIX: Ensure logo is always white */
}

.logo span {
  color: #60a5fa;
}

.nav-links a {
  margin-left: 1.6rem;
  font-weight: 500;
  opacity: 0.9;
  text-decoration: none;
  color: white; /* FIX: Replaced undefined --text-white variable */
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #00d4ff;
  text-shadow: 0 0 5px rgba(0, 212, 255, 0.6),
               0 0 10px rgba(0, 212, 255, 0.4),
               0 0 20px rgba(0, 212, 255, 0.2);
  opacity: 1;
}

.nav-btn {
  margin-left: 2rem;
  background: var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white; /* FIX: Always white, visible on dark header */
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0b1f44, #12306b);
  color: white;
  padding: 5.5rem 0;
  overflow: hidden; /* FIX: Clips the workspace so it never bleeds outside the section */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero p {
  max-width: 550px;
  margin-bottom: 2rem;
  color: #c7d2fe;
}

.btn {
  display: inline-block;
  background: transparent;
  color: #00d4ff;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
              inset 0 0 10px rgba(0, 212, 255, 0.4);
  color: #fff;
}

/* ================= SECTIONS ================= */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2.5rem;
  color: var(--dark);
  text-transform: capitalize;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  height: 1px;
  background: #cbd5e1;
  flex: 1;
  max-width: 100px;
}

.section-title p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ================= CARDS ================= */
.grid {
  display: grid;
  gap: 2rem;
}

/* FIX: Removed duplicate display:grid (was declared twice) */
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #00d4ff;
  padding: 2.4rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #3b82f6;
  transform: translateY(-10px);
}

.card i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  display: block;
}

.card h3 {
  margin-bottom: 0.6rem;
}

/* ================= SERVICES ================= */
.service-card {
  background: linear-gradient(135deg, #0b1f44, #12306b);
  color: white;
}

/* ================= PORTFOLIO ================= */
/* FIX: Portfolio <a> tags now wrap items individually, so we style them as block */
.grid-3 > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  height: 100%; /* Ensures equal height in grid */
}

.portfolio-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-thumb:hover img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 1.4rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: white;
  padding: 5rem 0;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  /* FIX: Use min-height instead of fixed height so content never clips on mobile */
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 0 1rem; /* FIX: Added padding so text doesn't touch edges on mobile */
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-dots {
  text-align: center;
  /* FIX: Enough margin-top to clear the absolutely-positioned slides */
  margin-top: 240px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #1e3a8a;
  transform: scale(1.2);
}

.quote-icon {
  display: block;
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 4rem;
  color: #1a2a4c;
  opacity: 0.9;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #0b1f44, #12306b);
  color: white;
  text-align: center;
  padding: 4.5rem 0;
}

.cta p {
  color: #c7d2fe;
  margin-bottom: 1.6rem;
}

/* ================= CONTACT FORM ================= */
form {
  max-width: 720px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

/* ================= FOOTER ================= */
.main-footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 60px 5% 20px; /* FIX: Reduced horizontal padding for better responsiveness */
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #00d4ff;
}

.contact-list {
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  justify-content: center; /* FIX: Centers icon+text when footer-col is centered */
}

.contact-item i {
  color: #00d4ff;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-logo {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #60a5fa;
}

/* ================= WORKSPACE / DEVICE ANIMATION ================= */
.workspace {
  position: relative;
  width: 600px;
  height: 400px;
  max-width: 100%;
  overflow: hidden; /* FIX: Clips any device that bleeds outside the workspace box */
  flex-shrink: 0;   /* FIX: Prevents it from squishing in flex/grid context */
}

.device {
  position: absolute;
  background: var(--screen-bg);
  border: 10px solid var(--white-border);
  box-shadow: var(--neon-glow);
  animation: bob 4s ease-in-out infinite;
}

.monitor {
  width: 450px;
  height: 280px;
  border-radius: 30px;
  top: 20px;
  left: 75px;
  z-index: 1;
}

.stand {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: var(--white-border);
  z-index: -1;
}

.base {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 12px;
  background: var(--white-border);
  border-radius: 20px;
}

.phone {
  width: 110px;
  height: 230px;
  border-radius: 25px;
  bottom: 20px;
  left: 30px;
  z-index: 3;
  animation-delay: -1s;
}

.tablet {
  width: 160px;
  height: 210px;
  border-radius: 25px;
  top: 50px;
  right: 10px;
  z-index: 2;
  animation-delay: -2s;
}

.monitor-inner, .phone-inner, .tablet-inner {
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
}

.content-box {
  background: var(--accent-blue);
  border-radius: 4px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.monitor-grid { display: flex; gap: 15px; margin-top: 30px; }
.monitor-grid .content-box { flex: 1; height: 120px; }
.top-nav { height: 10px; width: 60%; background: var(--accent-blue); }

.phone .content-box { height: 70px; }
.speaker { width: 30%; height: 5px; background: var(--accent-blue); margin: 0 auto 20px; border-radius: 10px; }

.tablet .content-box.large { height: 100px; margin-top: 20px; }
.tab-nav { height: 8px; width: 40%; background: var(--accent-blue); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
  color: white;
}

/* ================= RESPONSIVE — TABLET (max 1024px) ================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  /* FIX: Scale workspace down and centre it; height keeps vertical space correct */
  .workspace {
    transform: scale(0.75);
    transform-origin: top center;
    margin: 0 auto;
    height: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* ================= RESPONSIVE — MOBILE (max 768px) ================= */
@media (max-width: 768px) {
  /* FIX: Keep nav as row so logo stays left and hamburger stays right */
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  /* FIX: nav-links hidden by default, shown as column when .active is toggled */
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b1f44;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 0;
    padding: 0.9rem 1rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
  }

  /* FIX: Hero switches to single column, full width, with proper padding */
  .hero {
    padding: 3.5rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0; /* Remove gap — workspace hidden below */
  }

  .hero h1 {
    font-size: 2.2rem;
    /* FIX: Ensure the heading wraps inside the container — no overflow */
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero p {
    font-size: 0.97rem;
    padding: 0 0.5rem;
    max-width: 100%;
  }

  /* FIX: Hide the workspace device illustration on mobile.
     It's a decorative element that causes overflow at small widths.
     The hero text content stands alone cleanly. */
  .workspace {
    display: none;
  }

  .section-title h2 {
    font-size: 1.9rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* FIX: Testimonial dots margin adjusts for mobile */
  .testimonial-dots {
    margin-top: 260px;
  }

  .mission-vision-flex {
    flex-direction: column;
  }
}

/* ================= RESPONSIVE — SMALL MOBILE (max 480px) ================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .btn {
    padding: 0.8rem 1.4rem;
  }

  .card {
    padding: 1.8rem;
  }

  /* workspace is already display:none from 768px — no entry needed here */

  .section-title h2 {
    font-size: 1.6rem;
    gap: 10px;
  }

  .section-title h2::before,
  .section-title h2::after {
    max-width: 40px;
  }

  .testimonial-dots {
    margin-top: 280px;
  }
}

/* ================= ABOUT PAGE ================= */
.about-hero-dark {
  background-color: #020617;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.about-hero-dark h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-hero-dark h1 span {
  color: #3b82f6;
}

.about-hero-dark p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.mission-vision-section {
  background-color: #f8faff;
  padding: 100px 0;
}

.mission-vision-flex {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.about-card {
  flex: 1;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.icon-box {
  width: 65px;
  height: 65px;
  background: #eef2ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.stats-bar {
  background: var(--primary);
  color: white;
  padding: 80px 0;
  margin: 60px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.stat-item p {
  opacity: 0.8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mini-card {
  padding: 30px;
  border: 1px solid transparent;
}

.mini-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  transition: 0.3s;
}

.icon-small {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.why-choose-section {
  background-color: #020617;
  color: white;
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 30px;
}

.why-list li {
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  padding-left: 30px;
  color: #94a3b8;
}

.why-list li::before {
  content: '●';
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.why-cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: #0f172a;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wide-card {
  grid-column: span 2;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-content p {
  color: #94a3b8;
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #cbd5e1;
}

.check-list i {
  color: #3b82f6;
  margin-right: 15px;
}

.grid-2-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.why-card i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 15px;
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.full-width {
  width: 100%;
}

.final-cta {
  background: radial-gradient(circle at center, #1e3a8a 0%, #0a0f1c 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #cbd5e1;
}

.cta-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: #2563eb;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ================= SERVICES PAGE ================= */
.services-detailed {
  padding: 100px 0;
  background-color: #f8faff;
}

.services-detailed .grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-10px);
}

.s-icon {
  width: 60px;
  height: 50px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto 20px auto;
  font-size: 1.4rem;
}

.service-box h3 { margin-bottom: 15px; color: #0f172a; }
.service-box p { color: #64748b; font-size: 0.95rem; margin-bottom: 20px; }

.service-box ul {
  list-style: none;
  padding: 0;
}

.service-box ul li {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.service-box ul li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.process-dark {
  background: #050a18;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.process-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.process-header p { color: #94a3b8; margin-bottom: 60px; }

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .services-detailed .grid-3 {
    grid-template-columns: 1fr;
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-cards-layout {
    grid-template-columns: 1fr;
  }
  .wide-card {
    grid-column: span 1;
  }
  .about-hero-dark h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

.p-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.p-step h4 { font-size: 1.3rem; margin-bottom: 10px; color: #3b82f6; }
.p-step p { color: #94a3b8; font-size: 0.9rem; }

/* ================= PORTFOLIO PAGE ================= */
.portfolio-section {
  padding: 80px 0;
  background-color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.overlay-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-card:hover .overlay-content h3,
.portfolio-card:hover .overlay-content p {
  transform: translateY(0);
}

.view-btn {
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.portfolio-cta {
  background: #050a18;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-blue {
  background-color: #2563eb;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  margin-top: 20px;
}

/* ================= CONTACT PAGE ================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.info-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.icon-sq {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.info-text p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 18px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  margin-bottom: 20px;
}

.send-btn {
  width: 100%;
  background: #3b82f6;
  color: white;
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact-socials {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 1.2rem;
}