:root {
  --bg: #0f172a;
  --bg-alt: #f5f7fb;
  --fg: #0b1120;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-soft: #e0ecff;
  --accent: #22c55e;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.15);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f1f5f9;
  color: var(--fg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-ghost-light {
  border: 1px solid rgba(226, 232, 240, 0.7);
  color: var(--white);
  background: transparent;
}

.full-width {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top left, #e0ecff, #f5f7fb 40%, #ffffff);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

.hero-text {
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-image {
  justify-self: center;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.3rem;
}

.section-header h2 {
  margin-bottom: 0.4rem;
  font-size: 1.7rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* Layout helpers */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.card-list {
  margin: 0.9rem 0 0.3rem;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--fg);
}

.card-list li + li {
  margin-top: 0.25rem;
}

.card-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--primary);
}

/* Highlight / stats box */

.highlight-box {
  background: linear-gradient(135deg, #1e293b, #020617);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.highlight-box p {
  color: rgba(241, 245, 249, 0.9);
}

.mini-stats {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.1rem;
}

.mini-stats .stat-value {
  color: var(--accent);
}

/* Quotes */

.card-quote {
  position: relative;
}

.card-quote::before {
  content: "“";
  font-size: 2.4rem;
  line-height: 1;
  color: var(--primary-soft);
  position: absolute;
  top: -0.4rem;
  left: 0.2rem;
}

.card-quote p {
  margin-left: 0.8rem;
}

.quote-author {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: var(--white);
  padding: 3rem 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: center;
}


.cta h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.cta p {
  margin: 0 0 0.8rem;
}

.cta-list {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
}

.cta-list li + li {
  margin-top: 0.2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

//Icons related css CTA
/* CTA Section List – Replace bullets with green ticks */
.cta-inner ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.cta-inner ul li {
  position: relative;
  padding-left: 28px;               /* space for icon */
  margin-bottom: 0.6rem;
  line-height: 1.4;
list-style-type: none;

}

/* Green tick icon before each li */
.cta-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("images/check.png");
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(140%); 
}


/* Page hero */

.page-hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.page-hero.gradient {
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 40%, #ffffff);
}

.page-hero h1 {
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* Services page */

.services-grid .service h3 {
  margin-bottom: 0.35rem;
}

/* Pricing */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  text-align: left;
}

.pricing-card .plan-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin: 0;
}

.plan-period {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.plan-desc {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.pricing-card.featured {
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
  transform: translateY(-6px);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */

.contact-grid {
  align-items: flex-start;
}

.contact-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 1.5rem 1.7rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.form-row {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

input,
textarea {
  width: 100%;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.6rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.bullet-list {
  list-style: disc;
  padding-left: 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.bullet-list li + li {
  margin-top: 0.3rem;
}

/* Footer */

.site-footer {
  background: var(--bg);
  color: #cbd5f5;
  margin-top: 2rem;
  padding-top: 2.2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 2rem;
  padding: 0 1.5rem 1.5rem;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-col ul li + li {
  margin-top: 0.3rem;
}

.footer-col a {
  color: #e5e7eb;
}

.footer-contact {
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  text-align: center;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

//Footer 

.footer-phone {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.footer-phone img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
  background:#9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .cta-inner,
  .footer-inner,
  .card-grid.three-col,
  .card-grid.two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-image {
    order: -1;
  }

  .cta-actions {
    align-items: stretch;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.95rem;
  }

  .header-inner {
    justify-content: space-between;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section {
    padding: 3rem 0;
  }
}


.brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px; /* optional, remove if you want square */
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
}


/* additional styes dec 5 9.50am  */
//Discover section styles

.discover-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.discover-content p {
  color: var(--muted);
}

.check-list li {
  list-style: none;
  position: relative;
  padding-left: 1.3rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.discover-visual {
  position: relative;
  min-height: 260px;
}

.discover-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.discover-card-main img,
.discover-card-overlay img {
  display: block;
  width: 100%;
  height: auto;
}

.discover-card-main {
  position: absolute;
  top: 0;
  right: 0;
  left: 15%;
}

.discover-card-overlay {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 80%;
}

//Testimonial css

.testimonials-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.testimonial-top {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-stars {
  color: #fbbf24; /* gold */
  font-size: 0.9rem;
}

.testimonial-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

//Carousel style

/* Carousel section padding a bit tighter */
.section-carousel {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Smaller, centered carousel */
.carousel {
  position: relative;
  max-width: 550px;           /* was 960px – shrinks width */
  margin: 0 auto;
  
}

/* Window + shadow still nice but not huge */
.carousel-window {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Track + slides */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

/* KEY PART: limit height so it doesn’t dominate */
/* Images scale to width but won’t exceed this height */
.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;          /* adjust to taste: 260–360 is nice */
  object-fit: contain;    /* <-- key change */
  //background: #020617;    /* dark background behind if there are empty areas */
  background: #f1f5f9;
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  width: 30px;                /* a bit smaller */
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control.prev {
  left: -10px;
}

.carousel-control.next {
  right: -10px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #cbd5f5;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--primary);
  width: 18px;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .carousel {
    max-width: 100%;
  }

  .carousel-slide img {
    max-height: 240px;        /* smaller on phones */
  }

  .carousel-control.prev {
    left: 6px;
  }
  .carousel-control.next {
    right: 6px;
  }
}



//Additional footer payment and social css
.footer-payments-text {
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.payment-icons img {
  border-radius: 4px;
  background: #0f172a;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social img {
  border-radius: 999px;
  background: #020617;
  padding: 3px;
}

.footer-payment img {
    width: 42px;               /* Forces consistent size */
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    display: inline-block;
}

/* Social media icons */
.footer-social img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    margin-right: 12px;
    //filter: brightness(0) invert(1); /* Makes them white if dark footer */
    transition: 0.2s ease-in-out;
}

.footer-social img:hover {
    opacity: 0.7;
}

/* Align the container */
.footer-payment,
.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;     /* Prevents breaking layout on mobile */
    gap: 8px;
}


/* Responsive tweaks */
@media (max-width: 900px) {
  .discover-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .discover-visual {
    margin-top: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-control.prev {
    left: 6px;
  }
  .carousel-control.next {
    right: 6px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

//discover

/* Layout of the 2-column Discover section */
.discover-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Right side visual container */
.discover-visual {
  position: relative;
  min-height: 260px;
}

/* Cards that hold the images */
.discover-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #fff;
}

/* Main card (back) */
.discover-card-main {
  top: 0;
  right: 0;
  left: 15%;
  max-width: 380px;        /* max width on desktop */
}

/* Overlay card (front, smaller) */
.discover-card-overlay {
  bottom: -10%;
  left: 0;
  max-width: 260px;
}

/* Images themselves – auto-resize to fit card */
.discover-img-main,
.discover-img-overlay {
  display: block;
  width: 100%;             /* scale down to card width */
  height: auto;            /* keep aspect ratio */
  object-fit: cover;       /* crop nicely if proportions differ */
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .discover-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .discover-visual {
    margin-top: 1.5rem;
    min-height: 220px;
  }

  .discover-card-main {
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 320px;
  }

  .discover-card-overlay {
    bottom: -12%;
    left: 8%;
    max-width: 200px;
  }
}

