* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
    color: #222;
    line-height: 1.6;
}

.barrow-logo {
    display: block;
    margin: 20px auto;
}

header {
    display: flex;
    justify-content: center; /* FIXED */
    align-items: center;

    padding: 20px 50px;
    background: white;
    width: 100%;
}

/* FIX LOGO */
.barrow-logo {
    width: 100px;
    height: auto;

    display: block;
    margin: 0;
}

/* FIX TITLE */
.site-header h1 {
    font-size: 20px;
    margin: 0;
}

/* IMPORTANT: prevent content hiding under fixed header */
body {
    padding-top: 80px;
}

/* NAV */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #1f5c8b;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover {
    background: lightgreen;
}

.language-btn {
    background: #ffcc00;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* =========================
   PREMIUM HERO SECTION
========================= */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    min-height: 70vh;
    padding: 80px 20px;

    background-image: url("images/Ai pic.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* MOBILE VERSION */
/* 📱 iPhone + small phones fix */
      @media (max-width: 430px) {

    .hero {
        min-height: 100vh;
        padding: 40px 15px;
        background-position: center top;
    }

    .hero h1 {
        .hero h1 {
    color: #128b12 !important;
}
    }

    .hero p {
        font-size: 14px;
        color: rgba(255,255,255,0.9); /* ✅ ensure consistency */
    }
}

    
/* HERO TITLE */
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #128b12;

    text-shadow: 2px 2px 20px rgba(114, 160, 54, 0.7);
}

/* HERO TEXT */
.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 30px;

    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* HERO BUTTON */
.btn {
    display: inline-block;

    font-size: 1rem;
    font-weight: 600;

    padding: 16px 40px;

    background: #7CFC90;
    color: #000;

    border-radius: 50px;

    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* CONTAINER */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    background: white;
    max-width: 850px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* HOURS */
.hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.hour-box {
    background: #eef3f7;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

/* REVIEWS */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.review-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.stars {
    color: gold;
    margin: 5px 0;
}

.review-form input,
.review-form textarea {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.review-form button {
    margin-top: 10px;
    padding: 10px;
    background: #0d2b45;
    color: white;
    border: none;
    cursor: pointer;
}

/* CONTACT */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.contact-btn {
    padding: 10px 15px;
    border-radius: 6px;
    color: gold;
    text-decoration: none;
}

.phone { background: #25d366; }
.email { background: #0d2b45; }

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0d2b45;
    color: white;
    margin-top: 20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
}

/* POPUP */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.popup-content input,
.popup-content textarea {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 20px;
}

/* SERVICES PAGE */
.services-hero {
    text-align: center;
    padding: 80px 20px;
    background: #f5f5f5;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-hero h1 {
    margin: 0 0 15px 0;
    font-size: 3rem;
}

.services-hero p {
    margin: 0;
    font-size: 1.2rem;
    max-width: 700px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* WHY US */
.why-us {
    padding: 80px 20px;
    background: #f9f9f9;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit {
    text-align: center;
}

.benefit span {
    font-size: 2rem;
}

/* CTA */
.services-cta {
    text-align: center;
    padding: 80px 20px;
}

.cta-buttons {
    margin-top: 25px;
}

.cta-buttons a {
    margin: 10px;
}

/* ABOUT PAGE */
.about-hero {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    text-align: center;
    padding: 80px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-history,
.about-details {
    padding: 60px 0;
}

.about-history .container p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-history h2,
.about-details h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #222;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card h3 {
    color: #0077b6;
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.about-cta {
    background: #0077b6;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.about-cta h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-cta .btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #0077b6;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.about-cta .btn:hover {
    background: #e6f4ff;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
/* SERVICES SECTION */
.services-section {
  padding: 70px 20px;
  background: #f6f8fb;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* equal height cards */
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* IMAGE WRAPPER */
.image-placeholder {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #e9ecef;
  position: relative;
}

/* IMAGE */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* IMAGE ZOOM ON HOVER */
.service-card:hover .image-placeholder img {
  transform: scale(1.08);
}

/* TEXT AREA */
.service-card h3 {
  font-size: 1.25rem;
  margin: 18px 16px 8px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 16px 20px;
  line-height: 1.5;
}

/* PLACEHOLDER TEXT (when no image) */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

/* RESPONSIVE TWEAK */
@media (max-width: 600px) {
  .image-placeholder {
    height: 160px;
  }
}
/* 📱💻 TABLET + SMALL LAPTOP FIX (iPad, Zenbook, etc.) */
@media (min-width: 768px) and (max-width: 1200px) {

    .hero {
        min-height: 80vh;
        padding: 60px 40px;

        background-position: center;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }

    /* if you have buttons */
    button {
        font-size: 16px;
        padding: 12px 20px;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    color: white;
    padding: 12px;
    text-align: center;
    z-index: 9999;
    font-size: 14px;
}
