.elementor-241 .elementor-element.elementor-element-cb38762{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8d088e8 *//*====================================
        CONTACT HERO SECTION
=====================================*/

.contact-hero{

    padding:90px 0;

    background:#f8fbff;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-content{

    flex:1;

}

.hero-badge{

    display:inline-block;

    background:#eef2ff;

    color:#4f46e5;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:52px;

    color:#111827;

    line-height:1.2;

    margin-bottom:20px;

}

.hero-content p{

    font-size:18px;

    color:#6b7280;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#4f46e5;

    color:#fff;

    padding:15px 35px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#3730a3;

}

.btn-secondary{

    border:2px solid #4f46e5;

    color:#4f46e5;

    padding:15px 35px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:#4f46e5;

    color:#fff;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

}
/* reset / base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f7fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ----- EXACT FOOTER from Screenshot (100).png ----- */
.footer-exact {
  max-width: 1200px;
  width: 100%;
  background: #0d0d0d;          /* deep black/dark background */
  color: #f0f0f0;
  padding: 3rem 2.5rem 2rem 2.5rem;
  border-radius: 32px;           /* smooth rounded corners */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* main grid: brand + links + categories + connect */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

/* --- column 1: brand & tagline --- */
.brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brand-name {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.95rem;
  color: #b5b5b5;
  line-height: 1.5;
  max-width: 280px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 0.2rem;
}

/* --- column 2: Quick Links --- */
.links-col h4,
.categories-col h4,
.connect-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a9a9a;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.5rem;
}

.links-col ul,
.categories-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.links-col ul li a,
.categories-col ul li a {
  color: #dbdbdb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}

.links-col ul li a:hover,
.categories-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* --- column 4: Connect (with icons) --- */
.connect-col .connect-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.connect-icons a {
  color: #d0d0d0;
  font-size: 1.6rem;
  transition: transform 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  width: 44px;
  height: 44px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}

.connect-icons a:hover {
  color: #ffffff;
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* custom icon labels: we use FontAwesome but also keep the original emoji‑like look 
   (in the screenshot it shows 📩 in 📱 📷, but we use modern icons) */
.connect-icons .icon-label {
  display: none; /* hidden, we use FA icons */
}

/* alternative: if you want the exact emoji style, we provide a fallback 
   but we use FA for consistency. We'll keep both: show emoji as text if needed */
.connect-icons .emoji-fallback {
  display: none;
}

/* ----- copyright line (exact) ----- */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #8a8a8a;
  letter-spacing: 0.01em;
}

.footer-copyright span {
  font-weight: 400;
}

.footer-copyright .rights {
  color: #a0a0a0;
}

/* ----- responsiveness (WordPress friendly) ----- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .brand-col {
    grid-column: 1 / -1;
  }

  .brand-tagline {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-exact {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-col {
    grid-column: auto;
  }

  .connect-col .connect-icons {
    gap: 0.8rem;
  }

  .connect-icons a {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-top: 1.2rem;
  }
}

/* small extra: show emoji if you prefer, but we use FontAwesome */
/* if you want to replace with exact emoji from screenshot: 📩 in 📱 📷 
   we keep them as hidden fallback – but we show FA icons */
.connect-icons .fa-envelope:before { content: "\f0e0"; }   /* 📩 */
.connect-icons .fa-linkedin:before { content: "\f0e1"; }  /* in (linkedin) */
.connect-icons .fa-phone:before { content: "\f095"; }     /* 📱 */
.connect-icons .fa-camera:before { content: "\f030"; }    /* 📷 */

/* we also add a small "in" text as fallback for linkedin */
.connect-icons .fa-linkedin {
  font-size: 1.8rem;
}

/* if you want the exact "in" from the image, we add a small badge */
.connect-icons .linkedin-text {
  display: none; /* we use FA */
}

/* demo note (not part of footer) */
.demo-hint {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #7a7a7a;
  background: rgba(0,0,0,0.02);
  padding: 0.2rem 1.2rem;
  border-radius: 40px;
  border: 1px solid #e2e2e2;
}/* End custom CSS */