    @font-face {
  font-family: "StackSans";
  src: url("../fonts/StackSansHeadline-Medium.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: linear-gradient(135deg, #2e449a 0%, #1d2a61 100%);
        }
/*----------------------------------------------navbar------------------------------------------*/

 .navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 1000;
  margin-bottom: 0;
}

/* LOGO */
.logo { display:flex; align-items:center; text-decoration:none; }
.logo img { height:40px; width:auto; }

/* NAV LINKS (make anchors inline-block so padding works) */
.nav-links {
  display:flex;
  gap:2rem;
  list-style:none;
  align-items:center;
  margin:0;
  padding:0;
}

.nav-links li { margin:0; }

/* IMPORTANT: display:inline-block so padding (vertical + horizontal) is applied */
.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-primary-blue-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;            /* base padding for normal links */
  position: relative;
  transition: color 0.25s ease, transform 0.15s ease;
  line-height: 1;               /* keeps height predictable */
}

/* Hover color */
.nav-links a:hover { color: #667eea; }

/* The underline animation — moved slightly lower so it doesn't collide with padding */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;                 /* <- moved down to avoid collision with padding */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #4b51a2 100%);
  transition: width 0.25s ease;
  pointer-events: none;
}
.nav-links a:hover::after { width: 100%; }

/* ====== Free Quote button styling ====== */
/* Use a selector that is at least as specific as .nav-links a */
.nav-links a.free-quote,
.nav-links .free-quote {
  display: inline-block;              /* ensures padding works */
  padding: 0.45rem 1rem;              /* desired padding — change as needed */
  border-radius: 28px;
  border: 2px solid var(--color-primary-blue-dark);
  background: transparent;
  color: var(--color-primary-blue-dark);
  font-weight: 700;
  box-sizing: border-box;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

/* Option: make it a filled gradient on hover */
.nav-links a.free-quote:hover {
  background: linear-gradient(135deg, #2e449a 0%, #1d2a61 100%);
  color: #fff;
  transform: translateY(-2px);
}

/* Accessibility / touch target — ensure minimum tappable size on mobile */
.nav-links a.free-quote {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE: ensure good spacing and full width if desired */
@media (max-width: 480px) {
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* make the Free Quote full width on very small screens (optional) */
  .nav-links a.free-quote {
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1rem;
  }
}
      
/*----------------------------------------------hero------------------------------------------*/

        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg') center/cover no-repeat;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
             color: var(--color-white);
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-button {
            background: linear-gradient(135deg, #2e449a 0%, #1d2a61 100%);
            color: var(--color-white);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .content {
            padding: 5rem 2rem 5rem 2rem;
             color: var(--color-white);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            
        }

        .content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* ------------------- Services Section ------------------- */
.services-section {
  padding: 5rem 2rem;
  background: #f4f5f9;
  color: var(--color-primary-blue-dark);
  margin-bottom: 5em;
}

.services-container {
  display: flex;
  align-items: stretch; /* <-- makes both columns equal height */
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.services-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column; /* lets text blocks stack vertically */
  justify-content: center; /* vertically center if text is short */
}

.services-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1d2a61;
  text-align: center;
}

.services-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.services-text h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-text ul {
  list-style: disc inside;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-text ul li {
  margin-bottom: 0.75rem;
}

/* Images column */
.services-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-images img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 3px solid var(--color-primary-blue-dark);
}

.services-images img:hover {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .services-container {
    flex-direction: column; /* stack vertically */
    gap: 2rem;
  }

  .services-text {
    order: 1; /* ensure text is on top */
    text-align: center;
  }

  .services-images {
    order: 2; /* images below */
    flex-direction: row; /* optional: display images side by side if small enough */
    flex-wrap: wrap;
    gap: 1rem;
  }

  .services-images img {
    width: 100%; /* images full width on small screens */
  }
  .service-card p {}
}

/*----------------------------------------------reviews------------------------------------------*/
    /*   .reviews-section {
    padding: 4rem 2rem;
    color: #333;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: #4285f4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    max-width: fit-content;
    margin: 0 auto 3rem auto;
}

.google-badge:hover {
    transform: scale(1.05);
}

.google-logo {
    font-weight: bold;
    font-size: 1.4rem;
}

.stars {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #333;
    white-space: normal;
}

.review-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    white-space: normal;
}

.review-stars {
    color: #fbbc05;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
    overflow-wrap: break-word;
}*/

/*--------------------------------------------------------------
# MOBILE FIXES
--------------------------------------------------------------*/

@media (max-width: 480px) {

    .reviews-container {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }

    .review-card {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem;
    }

    .review-header {
        flex-wrap: nowrap;
    }

    .review-avatar {
        min-width: 50px;
        min-height: 50px;
    }

    .review-text {
        font-size: 1rem;
    }
}
/* ------------------- Get in Touch Section ------------------- */
.get-in-touch {
  padding: 5rem 2rem;
  color: #fff;
}

.get-in-touch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap; /* allow stacking on mobile */
}

/* Left text column */
.contact-text {
  flex: 1 1 400px;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-text h3 {
    margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-info {
    list-style: disc;       /* show bullets */
    margin: 0 0 2rem 0;     /* directly below h3, remove auto-centering */
    padding-left: 1.5rem;   /* standard indent for bullets */
    color: #fff;
    text-align: left;       /* aligns text to the left of bullets */
    max-width: none;        /* remove width restriction on desktop */
}

.contact-info li {
    font-size: 1.1rem;
}

/* Contact button */
.contact-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: white;
  color: var(--color-primary-blue-dark);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Right logo column */
.contact-logo {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* ------------------- Responsive ------------------- */
@media (max-width: 768px) {
  .get-in-touch-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .contact-text h2 {
    font-size: 2rem;
  }

  .contact-text p, .contact-info li {
    font-size: 1.1rem;
  }

  .contact-logo img {
    max-width: 150px;
  }
    .contact-info {
        padding-left: 1rem;
        margin: 0 auto 2rem;
        text-align: center;
    }
}

/*----------------------------------------------footer------------------------------------------*/

        .footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #667eea;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #cccccc;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .navbar {
                flex-wrap: wrap;
                padding: 1rem;
                gap: 1.5rem;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            .nav-links a {
                font-size: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-button {
                font-size: 1.1rem;
                padding: 0.8rem 2rem;
            }
             /*.reviews-container {
                gap: 1.5rem;
            }
            
            .review-card {
                max-width: 100%;
                padding: 1.5rem;
            }*/
            
            .footer-container {
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .hero {
                height: 100vh;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .content h2 {
                font-size: 2rem;
            }
            
            .content p {
                font-size: 1.1rem;
            }
       
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
             } 
        