   body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    /* Glass Menu Bar */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(30, 90, 168, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px;
        padding: 14px 20px;
    }

    .navbar a {
        font-family: 'Teko', sans-serif;
        font-size: 26px;
        letter-spacing: 1px;
        font-weight: bold;
        color: #ffffff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 12px 34px;
        border-radius: 14px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.25);
        transition: all 0.25s ease;
    }

    .navbar a:hover,
    .navbar a:focus {
        background: rgba(255, 211, 77, 0.9);
        color: #1e5aa8;
        border-color: #ffd34d;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .navbar a.selected {
        background: #ffd34d;
        color: #1e5aa8;
        border-color: #ffd34d;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    }

    @media (max-width: 768px) {
        .navbar {
            gap: 10px;
            padding: 12px 10px;
        }

        .navbar a {
            font-size: 20px;
            padding: 10px 20px;
            flex: 1 1 40%;
            text-align: center;
        }
    }


	.navbar-toggle {
		display: none;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.3);
		color: #ffffff;
		font-size: 22px;
		width: 46px;
		height: 46px;
		border-radius: 12px;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.navbar-links {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 18px;
	}

	.navbar-links a {
		/* same styles you already have under .navbar a */
	}

	.navbar-links a:hover,
	.navbar-links a:focus {
		/* same as your .navbar a:hover */
	}

	.navbar-links a.selected {
		/* same as your .navbar a.selected */
	}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
        margin-top: 14px;
        flex-basis: 100%;
    }

    .navbar-links.open {
        display: flex;
    }

    .navbar-links a {
        font-size: 22px;
        padding: 12px 20px;
        text-align: center;
    }
}

    /* Top blue section */
    .header {
        background-color: #1e5aa8;
        color: white;
        padding: 40px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }
	
	.triangle-overlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
	  clip-path: polygon(0 0, 20% 0, -70% 100%);   /* Triangle shape pointing down */
	  pointer-events: none;                        /* So it doesn’t block clicks */
	}
	
	.triangle-overlay2 {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(83,114,163,0.30); /* Semi-transparent white */
	  clip-path: polygon(0 0, 20% 0, -50% 100%);   /* Triangle shape pointing down */
	  pointer-events: none;                        /* So it doesn’t block clicks */
	}

    .logo img {
        max-width: 220px;
    }

    .title {
		font-family: 'Teko', sans-serif;
        font-size: 42px;
        line-height: 1.3;
        font-weight: bold;
    }

    .title span {
        color: #ffd34d;
    }

    /* Bottom section */
    .contact-section {
        background-color: #FFFFFF;
        text-align: center;
        padding: 50px 20px;
        position: relative;
    }

    .contact-text {
        font-size: 48px;
        color: #1e5aa8;
        margin-bottom: 20px;
    }

    .phone-number {
        font-size: 56px;
        font-weight: bold;
        color: #1e5aa8;
        letter-spacing: 5px;
    }

    /* 24/7 badge */
.badge-outer {
    position: absolute;
    top: -45px; /* slightly offset to include outer border */
    right: 35px;
    border: 5px solid #ffffff; /* outer border color */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge {
    background-color: #ffd34d;
    border: 5px solid #1e5aa8; /* inner border */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1e5aa8;
    font-size: 22px;
}

.brokencar {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;              /* instead of width:100% */
    height: 100px;

    background-image: url(brokencar.png);
    background-repeat: no-repeat;
    background-position: left 40px center;

}


	
.map-viewport {
  background-color: rgb(245,245,245);
  width: 100%;        /* size of the visible area */
  height: 500px;
  overflow: hidden;    /* hide the rest of the map */
  position: relative;
  border: 1px solid #E1D1D1;
}

.map-inner {
  width: 100%;       /* actual map size */
  height: 900px;
  background-size: cover;       /* scale the image */
  background-position: top left; /* start position */
  position: absolute;
  cursor: grab;        /* indicate it’s draggable */
}
	
	
	
    /* Responsive */
    @media (max-width: 768px) {
        .title {
				
            font-size: 30px;
            text-align: center;
			
        }

        .contact-text {
            font-size: 32px;
        }

        .phone-number {
            font-size: 30px;
        }
		
		.badge{
			font-size: 16px;
			width: 50px;
			height: 50px;
			border: 3px solid #1e5aa8; /* inner border */
		}
		
		.brokencar{
			width: 100%;
			height: 60px;
			background-size: contain;
			background-position: left 20px center;
		}
		
		

		  .map-inner {
			width: 150%;   /* more width so drag works */
			height: 400px; /* scale down height */
		  }

		  .map-viewport {
			height: 300px; /* smaller viewport on phone */
		  }

    }
	

	
.vehicle-recovery-banner {
  background-color: #ffd34d;          /* White background */
  color: #1a1a1a;                     /* Dark text for contrast */
  text-align: center;                  /* Center text */
  padding: 10px 20px;                  /* Spacing inside */
  border-radius: 10px;                 /* Rounded corners */
  max-width: 800px;                    /* Optional max width */
  margin: 40px auto;                   /* Center horizontally */
  font-family: 'Arial', sans-serif;   /* Clean font */
}
	

.vehicle-recovery-banner h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.vehicle-recovery-banner p {
  font-size: 18px;
  line-height: 1.5;
}
	

.banner-content {
  display: flex;
  align-items: center;  /* vertically center the image with text */
  justify-content: center; /* center content horizontally in the banner */
  gap: 15px; /* space between image and text */
}
	
.towtruck {
  width: 80px;       /* adjust as needed */
  height: 80px;
  background-image: url('towtruck.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
	
	
	
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center; 
  align-items: center;
  margin: 20px 0;
}

.social-links a svg {
  width: 40px;
  height: 40px;
  fill: #1a1a1a;
  transition: fill 0.3s;
}

/* TikTok */
.social-links a:nth-child(1):hover svg {
  fill: #FE2C55;
}

/* Instagram */
.social-links a:nth-child(2):hover svg {
  fill: #E1306C;
}

	
/* Facebook */
.social-links a:nth-child(3):hover svg {
  fill: #1877f2;
}

	
	
.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

/* ============================
   Shared: buttons
============================ */
.btn {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 12px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1e5aa8;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #17457f;
    transform: translateY(-2px);
}

.btn-gold {
    background-color: #ffd34d;
    color: #1e5aa8;
}

.btn-gold:hover {
    background-color: #ffc61a;
    transform: translateY(-2px);
}

/* ============================
   Shared: sub-page banner
   (Gallery / Reviews / Contact headers)
============================ */
.page-banner {
    background-color: #1e5aa8;
    color: white;
    padding: 55px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    font-family: 'Teko', sans-serif;
    font-size: 54px;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-banner h1 span {
    color: #ffd34d;
}

.page-banner p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    margin-top: 10px;
    color: #e9f0fb;
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 36px;
    }
}

/* ============================
   Home: Services section
============================ */
.services-section {
    background-color: #f5f7fa;
    padding: 30px 20px;
    text-align: center;
}

.services-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: 44px;
    color: #1e5aa8;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.services-section > p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 22px;
    box-shadow: 0 4px 16px rgba(30, 90, 168, 0.12);
    border: 1px solid #e6ecf5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(30, 90, 168, 0.2);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px auto;
    background-color: #1e5aa8;
    color: #ffd34d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 26px;
    letter-spacing: 0.5px;
    color: #1e5aa8;
    margin: 0 0 10px 0;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ============================
   Coverage / CTA strip
============================ */
.coverage-strip {
    background-color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

.coverage-strip .contact-text {
    margin-bottom: 15px;
}

.coverage-strip p.sub {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

/* ============================
   Gallery page
============================ */
.gallery-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    background: repeating-linear-gradient(
        45deg,
        #eef2f8,
        #eef2f8 10px,
        #e4ebf5 10px,
        #e4ebf5 20px
    );
    border: 2px dashed #1e5aa8;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1e5aa8;
    text-align: center;
    padding: 20px;
}

.gallery-item i {
    font-size: 34px;
    margin-bottom: 10px;
    color: #7d9dc7;
}

.gallery-item span {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.gallery-item small {
    color: #6b7a90;
    font-size: 12px;
    margin-top: 4px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ============================
   Gallery lightbox popup
============================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 30px;
    box-sizing: border-box;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-placeholder {
    background: #eef2f8;
    border: 2px dashed #1e5aa8;
    color: #1e5aa8;
    border-radius: 14px;
    width: min(90vw, 420px);
    height: min(60vh, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.lightbox-placeholder i {
    font-size: 46px;
    margin-bottom: 12px;
    color: #7d9dc7;
}

.lightbox-placeholder span {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    background: #ffd34d;
    color: #1e5aa8;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 14px;
}

@media (max-width: 480px) {
    .lightbox-close {
        top: -14px;
        right: 0;
    }
}

/* ============================
   Reviews page
============================ */
.reviews-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    text-align: center;
}

.reviews-summary .score {
    font-family: 'Teko', sans-serif;
    font-size: 60px;
    color: #1e5aa8;
    line-height: 1;
}

.reviews-summary .stars {
    color: #ffd34d;
    font-size: 24px;
}

.reviews-summary .count {
    color: #666;
    font-size: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e6ecf5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(30, 90, 168, 0.08);
}

.review-card .stars {
    color: #ffd34d;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-card p.quote {
    color: #444;
    font-size: 15px;
    line-height: 1.55;
    min-height: 60px;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.review-card .reviewer .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e5aa8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
}

.review-card .reviewer .name {
    font-weight: bold;
    color: #1e5aa8;
    font-size: 14px;
}

.review-card .reviewer .date {
    color: #999;
    font-size: 12px;
}

.reviews-cta {
    text-align: center;
    margin-top: 45px;
}

/* ============================
   Contact page
============================ */
.contact-page-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 10px 0;
}

.contact-detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1e5aa8;
}

.contact-detail-card i {
    font-size: 30px;
}

.contact-detail-card span {
    font-size: 15px;
    color: #444;
}

/* ============================
   Footer
============================ */
.site-footer {
    background-color: #10315c;
    color: #cfe0f5;
    text-align: center;
    padding: 30px 20px 20px 20px;
    font-size: 14px;
}

.site-footer .footer-phone {
    font-family: 'Teko', sans-serif;
    font-size: 26px;
    color: #ffd34d;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.site-footer .footer-phone a {
    color: #ffd34d;
    text-decoration: none;
}

.site-footer .footer-whatsapp a {

    font-size: 26px;
    color: #01A300;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.site-footer .social-links {
    margin: 10px 0;
}

.site-footer .social-links a svg {
    fill: #cfe0f5;
}

.site-footer small {
    display: block;
    margin-top: 10px;
    color: #7f9bc2;
}

.site-footer .footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.site-footer .footer-whatsapp a {
    color: #01A300;
    text-decoration: none;
    font-size: 24px;
}