/* =========================================================
   RA INFOTECH — CUSTOM STYLESHEET
   Theme: Deep Navy + Vibrant Orange + Electric Teal
========================================================= */

:root {
  --navy: #0b1b33;
  --navy-2: #122a4a;
  --orange: #ff6a00;
  --orange-light: #ff914d;
  --teal: #00c2a8;
  --off-white: #f7f8fa;
  --text-dark: #1c2431;
  --text-muted: #5c6879;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(11, 27, 51, 0.1);
  --shadow-strong: 0 20px 45px rgba(11, 27, 51, 0.22);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand, .btn {
  font-family: var(--font-display);
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; }

.section-padding { padding: 90px 0; }

.bg-navy { background-color: var(--navy); }

.text-light-muted { color: rgba(247, 248, 250, 0.7); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.section-eyebrow-light { color: var(--teal); }

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}
.section-title.text-white { color: #fff; }

.section-text { color: #abb7c7; font-size: 1.02rem; line-height: 1.75; }

.btn-primary-solid {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
  transition: var(--transition);
}
.btn-primary-solid:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11, 27, 51, 0.35);
}

/* =========================== FLOATING ACTION BUTTONS =========================== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
}
.fab-whatsapp { background: #25D366; animation: pulse-green 2.4s infinite; }
.fab-call { background: var(--orange); animation: pulse-orange 2.4s infinite; }
.fab:hover { transform: scale(1.12); color: #fff; }

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(255, 106, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* =========================== TOP BAR =========================== */
.top-bar {
  background: var(--navy);
  color: #cfd6e2;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a { color: #cfd6e2; }
.top-bar a:hover { color: var(--orange); }
.social-icons a {
  color: #cfd6e2;
  margin-left: 12px;
  font-size: 0.95rem;
}
.social-icons a:hover { color: var(--teal); }

/* =========================== NAVBAR =========================== */
.main-navbar {
  background: #fff;
  padding: 12px 0;
  transition: var(--transition);
}
.main-navbar .nav-link {
  color: #000;
  font-weight: 500;
  margin: 0 6px;
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 100%; }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--orange); }

.btn-call-now {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-call-now:hover { background: var(--teal); color: var(--navy) !important; }

/* =========================== HERO CAROUSEL =========================== */
.hero-section { position: relative; }
.hero-section .carousel-item img {
  height: 92vh;
  min-height: 560px;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-section .carousel-caption {
  text-align: left;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid var(--orange);
  color: var(--orange-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  max-width: 780px;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}
.hero-section p {
  color: #dfe4ec;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 30px;
}
.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.4);
}
.btn-hero-primary:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }
.btn-hero-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.btn-hero-outline:hover { background: #fff; color: var(--navy); }

.hero-section .carousel-indicators [data-bs-target] {
  background-color: var(--orange);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next { width: 5%; }

/* =========================== ROAD ANIMATION (SIGNATURE ELEMENT) =========================== */
.road-strip {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, #16324f 100%);
  padding: 14px 0 0;
  overflow: hidden;
}
.road-strip__label {
  text-align: center;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.road-strip__label i { color: var(--orange); margin-right: 6px; }
.road-lane {
  position: relative;
  height: 56px;
  background: #26364a;
  border-top: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.road-dashes {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 4px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, #fff 0, #fff 40px, transparent 40px, transparent 80px);
  opacity: 0.5;
  animation: dash-move 2.2s linear infinite;
}
@keyframes dash-move {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(-50%) translateX(-80px); }
}
.service-van {
  position: absolute;
  top: 50%;
  left: -140px;
  width: 120px;
  transform: translateY(-50%);
  animation: drive-across 7s linear infinite;
}
.service-van svg { width: 100%; height: auto; filter: drop-shadow(0 6px 8px rgba(0,0,0,0.4)); }
@keyframes drive-across {
  0% { left: -140px; }
  100% { left: 105%; }
}
.service-van--reverse {
  animation-name: drive-across-reverse;
  animation-duration: 8s;
}
@keyframes drive-across-reverse {
  0% { left: 105%; transform: translateY(-50%) scaleX(-1); }
  100% { left: -140px; transform: translateY(-50%) scaleX(-1); }
}
.road-strip--alt .road-lane { background: #1c2f43; }

@media (prefers-reduced-motion: reduce) {
  .road-dashes, .service-van, .fab-whatsapp, .fab-call { animation: none !important; }
}

/* =========================== ABOUT =========================== */
.about-image-wrap { position: relative; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -10px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge i { color: var(--orange); font-size: 1.8rem; }
.about-badge strong { display: block; color: var(--navy); font-size: 1.05rem; }
.about-badge span { font-size: 0.8rem; color: var(--text-muted); }

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(11,27,51,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(11,27,51,0.05);
  height: 100%;
}
.about-point i { color: var(--teal); font-size: 1.3rem; flex-shrink: 0; }

/* =========================== SERVICES =========================== */
.service-card {
  background: #142c4c;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.service-card-img { overflow: hidden; }
.service-card-img img { width: 100%; /*height: 210px;*/ object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 28px; }
.service-card-body h3 { color: #fff; font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.service-card-body p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; min-height: 95px; }
.btn-service-call {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}
.btn-service-call:hover { background: var(--orange); color: #fff; }

/* =========================== SPECIALIZED IN (CALL ONLY) =========================== */
.specialized-section { padding: 40px 0 0px; }
.specialized-box {
  background: linear-gradient(120deg, var(--orange) 0%, #ff8c3c 100%);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  box-shadow: 0 24px 50px rgba(255, 106, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.specialized-box::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: -160px; right: -80px;
}
.specialized-icon {
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 2.4rem;
  color: #fff;
  z-index: 1;
}
.specialized-text { flex: 1; min-width: 250px; z-index: 1; }
.specialized-text .section-eyebrow-light { color: var(--navy); }
.specialized-text .section-eyebrow::before { background: var(--navy); }
.specialized-text h2 { color: #fff; font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.specialized-text p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0; }
.specialized-cta { display: flex; flex-direction: column; gap: 12px; z-index: 1; }
.btn-specialized-call {
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11,27,51,0.35);
}
.btn-specialized-call:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }

/* =========================== WHY CHOOSE US =========================== */
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.why-card:hover { border-bottom-color: var(--orange); transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.why-icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--teal);
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =========================== COUNTER =========================== */
.counter-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 70px 0;
}
.counter-item i { font-size: 2rem; color: var(--orange); margin-bottom: 12px; display: inline-block; }
.counter-item h3 { color: #fff; font-size: 2.6rem; font-weight: 800; margin-bottom: 6px; }
.counter-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================== HOW IT WORKS =========================== */
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.step-number {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(11,27,51,0.07);
}
.step-icon { font-size: 2.4rem; color: var(--teal); margin-bottom: 16px; display: inline-block; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =========================== GALLERY =========================== */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(255, 106, 0, 0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* =========================== TESTIMONIALS =========================== */
.testimonial-card {
  background: #142c4c;
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 720px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { color: #e5e9f0; font-size: 1.08rem; font-style: italic; line-height: 1.8; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal); }
.testimonial-author strong { display: block; color: #fff; font-size: 0.98rem; }
.testimonial-author span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel-dots button {
  width: 11px; height: 11px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.25);
  padding: 0;
}
.carousel-dots button.active { background: var(--orange); }

/* =========================== FAQ =========================== */
.accordion-item { border: none; margin-bottom: 14px; border-radius: var(--radius-md) !important; overflow: hidden; box-shadow: var(--shadow-soft); }
.accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) { background: var(--navy); color: #fff; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1); }
.accordion-body { padding: 20px 24px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; background: #fff; }

/* =========================== CONTACT =========================== */
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.contact-info-card:hover { background: rgba(255,255,255,0.09); transform: translateX(6px); }
.contact-info-card i { font-size: 1.6rem; color: var(--orange); margin-bottom: 10px; display: inline-block; }
.contact-info-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; line-height: 1.6; }
.contact-info-card a:hover { color: var(--teal); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-strong);
}
.contact-form .form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 6px; }
.contact-form .form-control, .contact-form .form-select {
  border-radius: 10px;
  border: 1.5px solid #e3e7ee;
  padding: 12px 16px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}
.form-success-msg {
  margin-top: 18px;
  background: rgba(0, 194, 168, 0.1);
  border: 1px solid var(--teal);
  color: #0a7a68;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 500;
}
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); line-height: 0; }

/* =========================== FOOTER =========================== */
.footer { background: #081527; color: rgba(255,255,255,0.6); padding: 70px 0 24px; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 20px;background: orange;
    border-top-right-radius: 20px;
    padding: 4px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px;
    font-size: 0.9rem;
    border-bottom: 1px solid;
    padding-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.social-icons-footer a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px; margin-left: 0;
}
.social-icons-footer a:hover { background: var(--orange); }

/* =========================== BACK TO TOP =========================== */
.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-strong);
  z-index: 1050;
  transition: var(--transition);
}
.back-to-top:hover { background: var(--orange); transform: translateY(-4px); }
.back-to-top.show { display: flex; }
.cu-lg-wdth{
	width:270px;
}
.navbar-toggler{
	    background: #0b1b33;
}
#enu-st{
	  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
  transition: var(--transition);
  display:block;
  width:100%;

}
/* =========================== RESPONSIVE =========================== */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-section h1 { font-size: 2.2rem; }
  .hero-section .carousel-item img { height: 80vh; min-height: 480px; }
  .main-navbar .navbar-collapse { background: var(--navy); margin-top: 12px; border-radius: 12px; padding: 16px; }
  .specialized-box { flex-direction: column; text-align: center; }
  .specialized-cta { align-items: center; width: 100%; }
  .btn-specialized-call { width: 100%; justify-content: center; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content: center !important;
	}
  .hero-section h1 { font-size: 1.7rem; }
  .hero-section p { font-size: 0.98rem; }
  .hero-section .carousel-item img { height: 72vh; min-height: 440px; }
  .about-badge { position: static; margin-top: -30px; margin-left: 16px; display: inline-flex; }
  .fab { width: 50px; height: 50px; font-size: 1.3rem; }
  .back-to-top { width: 40px; height: 40px; }
}

@media (max-width: 575.98px) {
  .section-padding { padding: 48px 0;overflow-x: hidden; }
  .hero-section .carousel-caption { padding-bottom: 30px; }
  .hero-section h1 { font-size: 1.45rem; }
  .btn-hero-primary, .btn-hero-outline { padding: 11px 22px; font-size: 0.85rem; }
  .counter-item h3 { font-size: 2rem; }
  .contact-form { padding: 24px; }
  .specialized-box { padding: 30px 22px; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}
@media(max-width:360px)
{
	.cu-ds-nnbt{
		display:none
	}
}