

/* RESET */

* {
  caret-color: transparent;
}

/* Prevent focus cursor on sections */
section {
  outline: none;
}

/* Remove focus styles that cause cursor */
:focus {
  outline: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 90px;
  padding-left: 8px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
  transform: translateY(5px);
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #0b6efd;
}

/* CALL BUTTON */
.call-btn {
  background: linear-gradient(135deg, #0b6efd, #3b82f6);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 110, 253, 0.25);
}

.call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 110, 253, 0.35);
  background: linear-gradient(135deg, #0a58ca, #2563eb);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* PAGE SECTIONS */
section:not(.hero) {
  min-height: auto;
  padding: 120px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 16px;
}

h2 {
  margin-bottom: 16px;
}

section p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 800px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(180deg, #eaf6ff 0%, #dff1ff 100%);
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: flex-start;
  padding: 100px 24px 40px;

  border-radius: 40px;   /* 👈 rounded corners */
  margin: 20px;          /* 👈 REQUIRED so corners show */
  overflow: hidden;      /* 👈 keeps content inside curve */
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 1;
  padding-left: 200px;
  padding-right: 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.08;
  color: #0f172a;
  max-width: 800px;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #334155;
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-quote-btn {
  background: linear-gradient(135deg, #ffd54a, #ffb703);
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 183, 3, 0.3);
  transition: all 0.25s ease;
}

.hero-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 183, 3, 0.4);
}

.hero-call-link {
  color: #0b6efd;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 6px;
  transition: color 0.2s ease;
}

.hero-call-link:hover {
  color: #084db3;
}

.hero-services-btn {
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid #0b6efd;
  color: #0b6efd;
  transition: all 0.25s ease;
}

.hero-services-btn:hover {
  background: #0b6efd;
  color: #fff;
  transform: translateY(-1px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 520px; /* was 420px */
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 110px 40px 90px;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.services-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  border-color: #bfdbfe;
}

.featured-service {
  background: linear-gradient(135deg, #0b6efd 0%, #3b82f6 100%);
  border-color: transparent;
}

.featured-service h3,
.featured-service, .service-icon {
  color: #ffffff;
}

.featured-service p {
  color: #ffffff !important;
}



.service-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: none;
}

.services-extra {
  margin-top: 55px;
  text-align: center;
}

.services-extra h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 22px;
}

.services-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.services-pill-list span {
  background: #ffffff;
  border: 1px solid #dbeafe;
  color: #1e3a8a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(11, 110, 253, 0.06);
}

.services-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 45px;
}

/* ABOUT US */
.about {
  padding: 110px 40px 90px;
  background: linear-gradient(180deg, #f0f7ff 0%, #dbeeff 100%);
  max-width: none;

  border-radius: 40px;   /* 👈 rounded corners */
  margin: 40px 20px;     /* 👈 pulls it in so corners are visible */
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  max-width: 520px;
}

.about-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #0f172a;
  margin-bottom: 18px;
}

.about-content p {
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: none;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 700px; /* was 380px */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}



/*REVIEWS*/
.reviews {
  padding: 110px 40px 90px;
  background: #ffffff;
}

.reviews-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.reviews-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}

.reviews-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.review-stars {
  font-size: 1.2rem;
  color: #ffb703;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: none;
}

.review-card h4 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b6efd, #3b82f6);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 110, 253, 0.25);
  transition: all 0.25s ease;
}

.reviews-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 110, 253, 0.35);
}





/*SERVICE AREA*/

.areas {
  padding: 110px 40px 90px;

  background: linear-gradient(180deg, #eaf4ff 0%, #dbeeff 100%);
  position: relative;
  overflow: hidden;

  border-radius: 40px;   /* 👈 matches About section */
  margin: 40px 20px;     /* 👈 REQUIRED so corners show */
}

.areas::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(11,110,253,0.08) 0%, transparent 70%);
  z-index: 0;
}

.areas::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;

  background: radial-gradient(circle, rgba(11,110,253,0.06) 0%, transparent 70%);
  z-index: 0;
}

.areas-wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.areas-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.areas-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.areas-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}

.areas-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.areas-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.areas-map {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.areas-map img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: linear-gradient(135deg, #0b6efd, #3b82f6);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 110, 253, 0.25);
}

.areas-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-card {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.area-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
}

.area-card p {
  color: #475569;
  line-height: 1.6;
  max-width: none;
}

.areas-note {
  margin-top: 8px;
}

.areas-note p {
  color: #475569;
  margin-bottom: 16px;
}

.contact {
  padding: 110px 40px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 40px;
  margin: 40px 20px;
}

.contact-wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.contact-tag {
  display: inline-block;
  background: rgba(11, 110, 253, 0.1);
  color: #0b6efd;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact-card p {
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.6;
  max-width: none;
}

.contact-card a {
  color: #0b6efd;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  color: #084db3;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0b6efd;
  box-shadow: 0 0 0 4px rgba(11, 110, 253, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #0b6efd, #3b82f6);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11, 110, 253, 0.25);
  transition: all 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 110, 253, 0.35);
}

/*FOOTER*/
.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 60px 40px 30px;
}

.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.footer-column a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 20px 70px;
    margin: 20px 10px;
    border-radius: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    align-self: center;
  }





@media (max-width: 768px) {
  .areas {
    padding: 80px 20px 70px;
  }

  .areas-content {
    flex-direction: column;
    gap: 30px;
  }

  .areas-header {
    margin-bottom: 35px;
  }

  .areas-map img {
    max-width: 100%;
  }

  .areas-info {
    width: 100%;
  }

  



@media (max-width: 768px) {
  .reviews {
    padding: 80px 20px 70px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 24px 22px;
  }




@media (max-width: 768px) {
  .services {
    padding: 80px 20px 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px 22px;
  }

  .services-pill-list {
    gap: 10px;
  }

  .services-pill-list span {
    width: 100%;
    text-align: center;
  }

  .services-cta {
    flex-direction: column;
    align-items: center;
  }

}



/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.open {
    max-height: 500px;
  }

  .nav-menu li {
    width: 100%;
    border-top: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
    padding: 16px 20px;
  }

  .call-btn {
    border-radius: 0;
  }

  .hero {
    padding: 20px 20px 40px;
    min-height: auto;
    align-items: center;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-buttons {
    align-items: center;
    justify-content: center;
  }

  .hero-quote-btn,
  .hero-call-link {
    width: fit-content;
  }

  .hero-image {
    padding-right: 0;
  }

  .hero-image img {
    max-height: 300px;
  }

.about {
    padding: 80px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image img {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  .nav-menu.open {
    max-height: 700px;
  }

  .nav-menu .call-btn {
    display: block;
    background: linear-gradient(135deg, #0b6efd, #3b82f6) !important;
    color: #ffffff !important;
    text-align: center;
    margin: 12px 20px;
    padding: 14px 20px;
    border-radius: 999px !important;
    box-shadow: 0 4px 12px rgba(11, 110, 253, 0.25);
  }
}

