/* styles.css */
:root {
    --primary: #0056b3; /* Professional Blue */
    --accent: #ffcc00;  /* Construction Yellow/Gold */
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.topbar a { color: var(--white); text-decoration: none; margin-right: 15px; }

.phone-link {
    font-weight: bold;
    color: var(--accent) !important;
}

/* Header & Nav */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img { height: 60px; transition: var(--transition); }

.menu { display: flex; list-style: none; }
.menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 10px 15px;
    transition: var(--transition);
}

.menu li a:hover, .menu li a.active { color: var(--primary); }

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-content { position: relative; z-index: 10; max-width: 700px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.text-accent { color: var(--accent); }

/* Stats Card */
.stats { padding: 50px 0; background: var(--light); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.counter { font-size: 2.5rem; font-weight: 800; color: var(--primary); }

/* Mobile Optimization */
@media (max-width: 768px) {
    .menu {
        display: none; /* Add JS to toggle this */
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .menu.show { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .topbar .contact-links { display: none; } /* Hide email on tiny screens to save space */
}

body {
    margin: 0;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
        display: flex;
      margin-top: -20px;
    margin-bottom: -30px;
}   
          
.logo {
    font-size: 1.5rem;
    font-weight: 700;
}
.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    padding-top: 40px;
}
.nav a {
  color: #fff;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    font-size: larger;
    padding: 8px 15px;
    border-radius: 15px;
}
/* Background color on hover */
.nav a.active,
.nav a:hover {
    color: #fff;
    background-color: #0b3d91;
    transform: scale(1.05);
}
.nav a:hover::after {
    width: 100%;
}



/* Hero Section */
.hero {
    background: url('images/collage6.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}
@media(max-width:500px){
   .hero {
      padding: 1rem 1rem;
 
 
}
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
   
    
    
 
}
@media(max-width:500px){
   .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
 
 
}
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
@media(max-width:500px){
   .hero p {
    font-size: 1.0rem;
    margin-bottom: 1rem;
 
 
}
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #0b3d91;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s;
}
.btn:hover {
    background: #6d9ff5;
}

/* Services Section */
.services {
     background: url('images/collage7.jpg') no-repeat center center/cover;
    padding: 4rem 1rem;
 
    text-align: center;
}
.services h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
   
    
    justify-content: center;
    
}
@media(max-width:500px){
   .services h2  {
    font-size: 1.7rem;
 
 
}
}
.service-grid {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    
}
.service-card img {
    width: 60px;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 1rem;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0b3d91;
    
}
@media(max-width:500px){
   .about h2 {
    font-size: 1.7rem;
 
 
}
}
.about p {
    font-size: 1rem;
    color: #555;
}
.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: #000;
    color: #fff;
    text-align: center;
}
.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-form button {
    border: none;
    cursor: pointer;
}

/* Footer */

.footer {
    position:relative;
    background: #06264d;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 1rem;
    font-size: 0.9rem;
}
.help .wave {
    position:relative;
    top: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.help .wave svg {
    display: block;
    width: 100%;
    height: 140px;
}
/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

   
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    /* background: #25D366; */
    border-radius: 50%;
    padding: 10px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
    transition: transform 0.3s;
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Topbar */
.topbar {
    background: #e6f4fb;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #0b3d91;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.topbar .contact-info {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.topbar .contact-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.topbar a,
.topbar span {
    color: #0b3d91;
    text-decoration: none;
    font-weight: 600;
}
.topbar .call-now {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 2px solid #0b3d91;
    border-radius: 20px;
    font-weight: bold;
    color: #0b3d91;
    animation: pulse 1.5s infinite;
}

/* Animation for call button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 61, 145, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(11, 61, 145, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 61, 145, 0);
    }
}
/* Testimonials Section */
.testimonials {
    padding: 4rem 1rem;
    background: #f0f6ff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0b3d91;
}
@media(max-width:500px){
    .testimonials h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
 
}
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
}
.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.testimonial h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b3d91;
}
/* Dropdown Menu */
.nav ul li {
    position: relative;
}
.dropdown-menu {
    display: block;
    position: absolute;
    background: #000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    top: 100%;
    left: 0;
    width: 180px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.dropdown-menu li {
    text-align: left;
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.dropdown-menu a:hover {
    background: #000;
}
.dropdown-toggle {
    cursor: pointer;
    position: relative;
}
.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.7em;
}
.dropdown-menu li:hover > li {
    display: block; /* Show on hover */
}
/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 999;
    }
    .nav ul li {
        text-align: center;
        padding: 0.5rem 0;
    }
    .nav ul.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
/* Stats Section */
.stats {
    padding: 4rem 1rem;
    background: #fff;
    color: #6d9ff5;
    text-align: center;
}
.stats-grid {
  display: flex;
    grid-template-columns: repeat(auto-fit, minmax(10px, 3fr));
    gap: 3rem;
    justify-content: center;
}
.stat-card h2 {
    font-size: 3rem;
    margin: 0;
    color: #0b3d91;
}
.stat-card p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
/* Being Left High and Dry Section */
.help-section {
background-color:#000;
    padding: 4rem 1rem;
    text-align: center;
    color: #fff;
}
.help-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
@media(max-width:500px){
    .help-section h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

 .help-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    /* padding: 1.5rem; */
    transition: transform 0.3s ease;

}
.help-item:hover {
    transform: translateY(-5px);
}

.help-item img {
    width: 70px;
    height: 70px;
    /* background: #fff; */
    /* border-radius: 50%; */
    padding: 10px;
    margin-bottom: 1rem;
}
.help-item p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
}
/* Fade-in Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.help-item.visible {
    animation: fadeInUp 0.8s ease forwards;
}
/* Mission & Vision */
.mission-vision {
    padding: 4rem 1rem;
    background: #f9f9f9;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.mv-box {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.mv-box img {
    width: 60px;
    margin-bottom: 1rem;
}

/* Values */
.values {
    padding: 4rem 1rem;
}
.values h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0b3d91;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.value-card img {
    width: 50px;
    margin-bottom: 1rem;
}

/* Sustainability */
.sustainability {
    padding: 4rem 1rem;
    background: #e6f4fb;
    text-align: center;
}
.sustainability h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0b3d91;
}
.sustainability p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #06264d;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.contact-hero {
    background: url('images/contact-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    padding: 6rem 1rem;
}

.contact-page {
    padding: 4rem 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info-box,
.contact-form-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-box h2,
.contact-form-box h2 {
    color: #0b3d91;
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-info-box a {
    color: #0b3d91;
    text-decoration: none;
}

.map-section {
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-header {
  text-align: center;
  padding: 3rem 1rem;
  background: #f7faff;
}
.gallery-header h1 {
  color: #0b3d91;
  font-size: 2.5rem;
}
.gallery-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

.gallery-grid {
  padding: 4rem 1rem;
  background: #fff;
}
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-item p {
  padding: 0.8rem;
  font-weight: 600;
  color: #333;
}
