/* =============================================
   Guidex Technologies
   Backgrounds: #0dcaf0 (Cyan) | #ffffff (White) ONLY
   Text: #000000 (Black) ONLY
   NO BLACK BACKGROUNDS ANYWHERE
   ============================================= */

:root {
  --cyan:      #0dcaf0;
  --cyan-d:    #0aa8cc;
  --cyan-dd:   #0787a3;
  --cyan-l:    #67e0f5;
  --cyan-ll:   #d0f5fc;
  --cyan-lll:  #eafafd;
  --white:     #ffffff;
  --black:     #000000;
  --gray-50:   #f8fdfe;
  --gray-100:  #f0fbfd;
  --gray-200:  #e0f7fa;
  --gray-300:  #b2ebf2;
  --gray-500:  #555555;
  --gray-700:  #333333;
  --font-h:    'Poppins', sans-serif;
  --font-b:    'DM Sans', sans-serif;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,202,240,0.18);
  --shadow-lg: 0 12px 48px rgba(13,202,240,0.25);
  --tr:        all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== BASE ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--black); background: var(--white); line-height: 1.7; font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.25; color: var(--black); }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; font-size: 1.2rem; }
p { color: var(--gray-700); margin-bottom: 1rem; }
a { text-decoration: none; transition: var(--tr); }
img { max-width: 100%; }
ul { padding: 0; margin: 0; list-style: none; }

/* ===== UTILITIES ===== */
.section-label {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan-dd); display: block; margin-bottom: 10px;
}
.section-title { color: var(--black); margin-bottom: 16px; font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.section-title span { color: var(--cyan-dd); }
.lead-text { font-size: 1.05rem; color: var(--gray-700); max-width: 640px; }

/* ===== BUTTONS ===== */
.btn-cyan {
  background: var(--cyan); color: var(--black);
  border: 2px solid var(--cyan); font-weight: 700;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-h); font-size: 14px;
  display: inline-block; transition: var(--tr);
}
.btn-cyan:hover {
  background: var(--cyan-d); border-color: var(--cyan-d);
  color: var(--black); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,202,240,0.45);
}
.btn-outline-cyan {
  background: transparent; border: 2px solid var(--black);
  color: var(--black); font-weight: 700;
  padding: 11px 28px; border-radius: var(--radius);
  font-family: var(--font-h); font-size: 14px;
  display: inline-block; transition: var(--tr);
}
.btn-outline-cyan:hover { background: var(--black); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--black);
  border: 2px solid var(--white); font-weight: 700;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-h); font-size: 14px;
  display: inline-block; transition: var(--tr);
}
.btn-white:hover { background: var(--cyan-ll); color: var(--black); border-color: var(--cyan-ll); }
.btn-outline-white {
  background: transparent; border: 2px solid var(--black);
  color: var(--black); font-weight: 700;
  padding: 11px 28px; border-radius: var(--radius);
  font-family: var(--font-h); font-size: 14px;
  display: inline-block; transition: var(--tr);
}
.btn-outline-white:hover { background: var(--cyan); color: var(--black); border-color: var(--cyan); }
/* alias */
.btn-blue { background: var(--cyan); color: var(--black); border: 2px solid var(--cyan); font-weight: 700; padding: 13px 30px; border-radius: var(--radius); font-family: var(--font-h); font-size: 14px; display: inline-block; transition: var(--tr); }
.btn-blue:hover { background: var(--cyan-d); border-color: var(--cyan-d); color: var(--black); transform: translateY(-2px); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--cyan); color: var(--black);
  font-size: 13px; padding: 8px 0;
  border-bottom: 2px solid var(--cyan-d);
}
.topbar a {
  color: var(--black); font-weight: 700;
  border: 1.5px solid var(--black);
  padding: 3px 14px; border-radius: 4px;
}
.topbar a:hover { background: var(--black); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white) !important;
  border-bottom: 3px solid var(--cyan);
  padding: 0 !important;
  box-shadow: 0 2px 20px rgba(13,202,240,0.14);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(13,202,240,0.25); }
.navbar-brand { padding: 4px 0; }
.navbar-brand img { height: 100px; width: auto; object-fit: contain; }
.navbar-nav .nav-link {
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  color: var(--black) !important; padding: 10px 14px !important;
  border-radius: 8px; transition: var(--tr);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--black) !important; background: var(--cyan-ll);
}
.nav-cta {
  background: var(--cyan) !important; color: var(--black) !important;
  border-radius: 8px !important; margin-left: 8px; font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--cyan-d) !important; color: var(--black) !important;
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(13,202,240,0.45);
}
.dropdown-menu {
  border: 1.5px solid var(--gray-200);
  border-top: 3px solid var(--cyan);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 32px rgba(13,202,240,0.15);
  min-width: 260px; padding: 8px; margin-top: 0 !important;
  background: var(--white);
}
.dropdown-item {
  font-size: 13.5px; padding: 10px 16px; border-radius: 8px;
  transition: var(--tr); color: var(--black);
  font-weight: 500; font-family: var(--font-b);
}
.dropdown-item:hover { background: var(--cyan-ll); color: var(--black); padding-left: 22px; }

/* ===== HERO — CYAN background ===== */
.hero {
  background: var(--cyan);
  padding: 110px 0 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute;
  bottom: -100px; right: -100px;
  width: 420px; height: 420px;
  border: 70px solid rgba(255,255,255,0.15);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--black); padding: 7px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700; margin-bottom: 24px;
  font-family: var(--font-h);
}
.hero h1 { color: var(--black); font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 20px; }
.hero h1 span { color: var(--white); }
.hero-desc { color: rgba(0,0,0,0.78); font-size: 1.1rem; margin-bottom: 36px; }
.hero-stat-num { font-family: var(--font-h); font-size: 2.2rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 12px; color: rgba(0,0,0,0.60); margin-top: 2px; }
.hero-stats-wrap { border-top: 2px solid rgba(255,255,255,0.5); padding-top: 32px; margin-top: 44px; }
.hero-glass-card {
  background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-glass-card h3 { color: var(--black); font-family: var(--font-h); margin-bottom: 20px; font-size: 1.1rem; }
.hero-glass-card li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--black); font-size: 14px; font-weight: 500;
}
.hero-glass-card li:last-child { border-bottom: none; }
.hero-glass-card li::before { content: ''; width: 7px; height: 7px; background: var(--black); border-radius: 50%; flex-shrink: 0; }

/* ===== PAGE HEADER — CYAN background ===== */
.page-header {
  background: var(--cyan);
  padding: 65px 0; text-align: center;
  border-bottom: 3px solid var(--cyan-d);
}
.page-header h1 { color: var(--black); font-size: 2.4rem; margin-bottom: 12px; }
.page-header p { color: rgba(0,0,0,0.72); max-width: 600px; margin: 0 auto; }
.breadcrumb-bar {
  display: flex; justify-content: center; gap: 8px;
  font-size: 13px; margin-top: 16px; flex-wrap: wrap;
  color: rgba(0,0,0,0.50);
}
.breadcrumb-bar a { color: var(--black); font-weight: 700; }
.breadcrumb-bar span { color: rgba(0,0,0,0.40); }

/* ===== CHIPS STRIP ===== */
.chips-strip { background: var(--cyan-dd); padding: 14px 0; }
.chips-strip span { font-size: 13px; font-weight: 700; color: var(--white); font-family: var(--font-h); letter-spacing: 0.5px; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--tr); position: relative; overflow: hidden; height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--cyan-ll); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; transition: var(--tr); }
.service-card:hover .service-icon { background: var(--cyan); }
.service-card h3 { color: var(--black); margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 14px; color: var(--gray-700); }
.service-card .read-more { color: var(--cyan-dd); font-weight: 700; font-size: 13px; font-family: var(--font-h); }
.service-card .read-more:hover { color: var(--black); }

/* ===== WHY US — CYAN background ===== */
.bg-dark-section { background: var(--cyan); }
.bg-dark-section h2, .bg-dark-section h3 { color: var(--black); }
.bg-dark-section p { color: rgba(0,0,0,0.70); }
.bg-dark-section .section-label { color: var(--black); opacity: 0.75; }
.feature-circle {
  width: 64px; height: 64px; background: var(--white);
  color: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 1.3rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ===== STATS — White bg, cyan accents ===== */
.stats-banner { background: var(--white); padding: 60px 0; border-top: 4px solid var(--cyan); border-bottom: 4px solid var(--cyan); }
.stat-num { font-family: var(--font-h); font-size: 2.8rem; font-weight: 800; color: var(--cyan-dd); line-height: 1; }
.stat-label { font-size: 14px; color: var(--gray-700); margin-top: 6px; font-weight: 600; }

/* ===== PUB CARDS ===== */
.pub-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 16px; text-align: center; transition: var(--tr); height: 100%; cursor: pointer; }
.pub-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-lg); transform: translateY(-6px); background: var(--cyan-lll); }
.pub-card-icon { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; min-height: 70px; }
.pub-card-icon img { width: 64px; height: 64px; object-fit: contain; transition: var(--tr); }
.pub-card:hover .pub-card-icon img { transform: scale(1.1); }
.pub-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 6px; font-family: var(--font-h); }
.pub-card p { font-size: 12px; color: var(--gray-500); margin: 0; }
.service-icon img { width: 36px; height: 36px; object-fit: contain; transition: var(--tr); }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; position: relative; height: 100%; transition: var(--tr); }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--cyan); }
.testimonial-card::before { content: '"'; font-family: var(--font-h); font-size: 90px; color: var(--cyan-ll); position: absolute; top: -15px; left: 20px; line-height: 1; }
.testimonial-text { font-style: italic; padding-top: 24px; margin-bottom: 20px; font-size: 14px; color: var(--gray-700); }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--cyan); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 700; color: var(--black); font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--black); }
.testimonial-role { font-size: 12px; color: var(--gray-500); }
.stars { color: var(--cyan-dd); font-size: 15px; margin-bottom: 8px; }

/* ===== CTA BANNER — CYAN background ===== */
.cta-banner {
  background: var(--cyan); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--black); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(0,0,0,0.72); margin-bottom: 32px; font-size: 1.05rem; position: relative; }

/* ===== CONTACT ===== */
.contact-info-icon { width: 50px; height: 50px; background: var(--cyan-ll); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; transition: var(--tr); }
.contact-info-item:hover .contact-info-icon { background: var(--cyan); }
.contact-info-item h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); margin-bottom: 4px; font-family: var(--font-h); }
.contact-info-item p { margin: 0; font-weight: 600; color: var(--black); font-size: 15px; }
.contact-info-item a { color: var(--black); }
.contact-info-item a:hover { color: var(--cyan-dd); }

/* Why Box — cyan bg ===== */
.why-box {
  background: var(--cyan); border-radius: var(--radius-lg);
  padding: 28px; border: 2px solid var(--cyan-d);
}
.why-box h5 { color: var(--black); font-family: var(--font-h); margin-bottom: 16px; font-size: 1.05rem; font-weight: 700; }
.why-box li { display: flex; align-items: center; gap: 10px; color: var(--black); font-size: 14px; font-weight: 500; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.10); }
.why-box li:last-child { border-bottom: none; }
.why-box .dot { width: 7px; height: 7px; background: var(--black); border-radius: 50%; flex-shrink: 0; }

.form-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border-top: 4px solid var(--cyan); }
.form-control, .form-select { border: 1.5px solid var(--gray-300); border-radius: var(--radius); padding: 12px 16px; font-size: 15px; font-family: var(--font-b); background: var(--gray-50); transition: var(--tr); color: var(--black); }
.form-control:focus, .form-select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(13,202,240,0.20); background: var(--white); }
.form-label { font-weight: 600; font-size: 14px; color: var(--black); margin-bottom: 6px; }

/* ===== FAQ ===== */
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; transition: var(--tr); }
.faq-item:hover { border-color: var(--cyan); }
.faq-item.open { border-color: var(--cyan); border-left: 4px solid var(--cyan); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-h); font-weight: 600; font-size: 15px; color: var(--black); display: flex; justify-content: space-between; align-items: center; text-align: left; }
.faq-item.open .faq-question { color: var(--cyan-dd); }
.faq-icon { width: 30px; height: 30px; background: var(--cyan-ll); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--cyan-dd); transition: var(--tr); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan); color: var(--black); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 14px; color: var(--gray-700); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== UNI PILLS ===== */
.uni-pill { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 16px 12px; text-align: center; font-size: 12.5px; font-weight: 600; color: var(--black); transition: var(--tr); }
.uni-pill:hover { border-color: var(--cyan); color: var(--black); box-shadow: var(--shadow); transform: translateY(-3px); background: var(--cyan-ll); }

/* ===== STEP CARDS ===== */
.step-card { background: rgba(255,255,255,0.45); border: 1.5px solid rgba(255,255,255,0.7); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; backdrop-filter: blur(8px); }
.step-num { width: 60px; height: 60px; background: var(--white); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 800; font-size: 1.4rem; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

/* ===== FOOTER — CYAN background ===== */
.site-footer {
  background: var(--cyan);
  color: var(--black);
  padding: 70px 0 0;
  border-top: 4px solid var(--cyan-d);
}
.footer-logo img { height: 100px; width: auto; object-fit: contain; }
.footer-tagline { font-size: 14px; color: rgba(0,0,0,0.65); margin: 18px 0 24px; line-height: 1.7; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.40); border: 1.5px solid rgba(0,0,0,0.20);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 700; font-size: 15px;
  margin-right: 8px; transition: var(--tr);
}
.footer-social a:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--black); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(0,0,0,0.20); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(0,0,0,0.70); font-size: 14px; transition: var(--tr); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--black); font-size: 16px; font-weight: 700; }
.footer-links a:hover { color: var(--black); padding-left: 4px; font-weight: 700; }
.footer-contact li { font-size: 14px; color: rgba(0,0,0,0.70); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact a { color: rgba(0,0,0,0.70); }
.footer-contact a:hover { color: var(--black); font-weight: 700; }
.footer-bottom { border-top: 2px solid rgba(0,0,0,0.15); padding: 22px 0; font-size: 13px; color: rgba(0,0,0,0.55); margin-top: 48px; }
.footer-bottom a { color: rgba(0,0,0,0.55); margin-left: 20px; }
.footer-bottom a:hover { color: var(--black); font-weight: 700; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9999; box-shadow: 0 4px 16px rgba(37,211,102,0.45); transition: var(--tr); }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }

.alert-success-custom { background: var(--cyan-ll); color: var(--black); border: 1px solid var(--cyan); border-radius: var(--radius); padding: 14px 20px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) { .hero { padding: 70px 0 60px; } .hero-card-col { display: none; } .hero h1 { font-size: 2.2rem; } }
@media (max-width: 767px) { .topbar-email { display: none; } .form-card { padding: 24px; } .navbar-brand img { height: 80px; } }
@media (max-width: 576px) { .hero h1 { font-size: 1.9rem; } .footer-logo img { height: 80px; } }
