/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header Styles */
.site-header {
    background: url('https://images.unsplash.com/photo-1581091870622-df7e18c8e86b') center/cover no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding: 7px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: brightness(0.1);
}



.logo {
    font-size: 28px;
    font-weight: bold;
}


.logo img {
  width: 70px;   /* control the width */
  height: auto;   /* keeps proportions */
  object-fit: contain; /* prevents stretching */
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffc107;
}







/* CTA Button */
.cta-btn {
    background-color: #f02626c6;
    color: #000;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: bold;
    background: linear-gradient(to right, #f9b000, #f12711);
}



.cta-btn:hover {
    background-color: #e2ecee;
  }


  /* Dropdown */
.dropdown {
    position: relative;
}


/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(to right, #00416a, #e4e5e6);
  min-width: 220px;
  top: 100%; /* appear directly under button */
  left: 0;
  z-index: 10;
  flex-direction: column;
  border-radius: 5px;
}

/* Links inside dropdown */
.dropdown-content a {
  padding: 10px;
  text-align: left;
  color: white;
  text-decoration: none;
  display: block;
}

/* Hover styles */
.dropdown-content a:hover {
  background-color: #94e8b0;
}

/* Show dropdown when hovering */
.dropdown:hover .dropdown-content {
  display: flex;
}



  /* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #002244;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
  }

  

  .dropdown .dropbtn::after {
    content: ' ▼';
  }

  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero-2.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}



/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 2s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background: #ff6600;
  padding: 14px 28px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background: #e65c00;
  transform: translateY(-3px);
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Contact Form Styles */
.contact-form {
  position: relative;
  z-index: 2;
  max-width: 400px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  margin-left: auto;
}

.contact-form h2 {
  margin-bottom: 1rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.8rem;
  background-color: #f7b733;
  color: #000;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #ff9f1c;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
  }

  .contact-form {
    margin-left: 0;
    margin-top: 2rem;
  }

  .slide-content {
    background-color: rgba(0, 0, 0, 0.7);
  }
}


.about-us {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #f7b733;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff9f1c;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

.about-us {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.about-us.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

.service-card {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #fefefe;
  padding: 4rem 2rem;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.why-subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: translateY(30px);
}

.why-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.why-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Animation visibility */
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
}



/* Projects Section */
.projects-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.projects-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Swiper */
.swiper {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 360px;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #0077b6;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-info p {
  color: #555;
  font-size: 1rem;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0077b6;
}

/* Responsive */
@media (max-width: 1024px) {
  .project-card {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .projects-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .project-card {
    max-width: 90%;
  }
  .projects-section h2 {
    font-size: 1.8rem;
  }
}




















/* General Section */
.pricing-section {
  padding: 60px 20px;
  background: #fff8f5;
  font-family: Arial, sans-serif;
}

.pricing-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  padding: 20px;
  color: #fff;
  text-align: center;
}

.card-header h3 {
  margin: 0;
  font-size: 20px;
}

.card-header p {
  margin: 10px 0 0;
  font-size: 16px;
}

.card-header span {
  font-size: 14px;
  color: #f9f9f9;
}

.basic { background: #f25c54; }
.standard { background: #f77f00; }
.premium { background: #0077b6; }

.card-body {
  padding: 20px;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.accordion-header::after {
  content: '+';
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 8px;
  color: #444;
}

































/* Metrics Section */
.metrics-section {
  background: #0077b6;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.metric h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.metric p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}




















.latest-videos {
  padding: 4rem 2rem;
  background: #f4f4f4;
  text-align: center;
}

.latest-videos h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.video-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card img {
  width: 100%;
  display: block;
}

.video-card h3 {
  margin: 0;
  padding: 1rem;
  background: white;
  font-size: 1rem;
  color: #333;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #f7b733;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 0.4rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.lightbox-inner iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


.catalogue-banner {
  background: url('images/catalogue/JCB\ cover.jpg') center/cover no-repeat;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.catalogue-banner-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-banner-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.catalogue-banner-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: bold;
}

.catalogue-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.catalogue-banner-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}

.btn {
text-decoration: none;
padding: 0.8rem 1.6rem;
border-radius: 5px;
font-weight: 600;
transition: background 0.3s ease;
}

.primary-btn {
background-color: #f7b733;
color: white;
}

.secondary-btn {
background-color: transparent;
border: 2px solid #fff;
color: white;
}

.primary-btn:hover {
background-color: #e0a425;
}

.secondary-btn:hover {
background-color: white;
color: #222;
}

@media (max-width: 768px) {
.catalogue-banner-content h2 {
font-size: 1.8rem;
}

.catalogue-banner-content p {
font-size: 1rem;
}
}


/* General Reset/Base Styles (For better presentation) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Section Styling */
.testimonials-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #0077b6; /* White background for the section */
}

.testimonials-section h2 {
    color: #333; /* Dark text */
    margin-bottom: 40px;
    font-size: 2.2em;
    border-bottom: 3px solid #ff9900; /* Construction-themed accent color */
    display: inline-block;
    padding-bottom: 5px;
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    /* Grid layout: 4 columns for large screens */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Space between cards */
    max-width: 1200px;
    margin: 0 auto; /* Center the grid */
}

/* Testimonial Card Styling */
.testimonial-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column; /* Stacks content vertically */
    justify-content: space-between;
    min-height: 250px; /* Ensures consistent card height */
}

.testimonial-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Star Rating Styling */
.rating {
    margin-bottom: 15px;
    color: #ff9900; /* Accent color for stars */
    font-size: 1.1em;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    /* This class is targeted by JS to potentially hide/show content */
}

/* Client Info Styling */
.client-info {
    border-top: 1px solid #eee;
    padding-top: 10px;
    text-align: right;
}

.client-name {
    font-weight: bold;
    color: #333;
    margin: 0;
}

.client-title {
    font-size: 0.9em;
    color: #888;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Two columns for medium screens (e.g., tablets) */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* Single column for small screens (e.g., phones) */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-section h2 {
        font-size: 1.8em;
    }
}


/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus, textarea:focus {
  border-color: #2196f3;
  outline: none;
}

.btn {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  font-size: 1rem;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0d6efd;
}


/* Success Message */
.success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.success-message.show {
  display: block;
  opacity: 1;
}



/* Footer Styles */
.footer {
  background: #222;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer h3, 
.footer h4 {
  color: #fff;
  margin-bottom: 5px;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00c4cc;
}

.social-icons a {
  color: #ccc;
  font-size: 1.3rem;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00c4cc;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #aaa;
}


/* WhatsApp Floating Button */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#whatsapp-button a {
  position: relative;
  display: inline-block;
}

#whatsapp-button img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-button img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 70px; /* position tooltip left of the button */
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
#whatsapp-button a:hover .tooltip {
  opacity: 1;
}



/* About Us Hero Section */
.about-hero {
  background: url('images/about-banner.jpg') center/cover no-repeat;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090000;
}



.about-hero-content {
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.about-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
}
.breadcrumb a {
  color: #f4a300;
  text-decoration: none;
}
.breadcrumb span {
  color: #fff;
}



/* === General Styles === */
body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.7;
  background-color: #fff;
}

/* === About Section === */
.about-section {
  padding: 80px 10%;
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00aaff;
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 16px;
  color: #444;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Gradient Overlay */
.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to bottom right, rgba(0, 51, 102, 0.45), rgba(0, 102, 153, 0.35));
}

/* === Mission and Vision === */
.mission-vision {
  padding: 80px 10%;
  text-align: center;
  background-color: #f2f8ff;
}

.mission-vision h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.mv-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.mv-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.08);
  padding: 40px 30px;
  max-width: 450px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.mv-icon {
  font-size: 40px;
  color: #00aaff;
  margin-bottom: 15px;
}

.mv-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #003366;
}

.mv-box p {
  font-size: 15px;
  color: #555;
}

/* === Animations === */
.animate-left, .animate-right, .animate-up, .animate-fade {
  opacity: 1;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.animate-left { transform: translateX(-50px); }
.animate-right { transform: translateX(50px); }
.animate-up { transform: translateY(50px); }
.animate-fade { transform: scale(0.95); }

.animate-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .mv-container {
    flex-direction: column;
  }
}



/* === Core Values Section === */
.core-values {
  background: linear-gradient(to bottom, #ffffff, #f2f8ff);
  padding: 80px 10%;
  text-align: center;
}

.core-values h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 50px;
  position: relative;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  width: 260px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 40px;
  color: #00aaff;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #555;
}

/* === Animations === */
.animate-left, .animate-right, .animate-up, .animate-fade {
  opacity: 1;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.animate-left { transform: translateX(-50px); }
.animate-right { transform: translateX(50px); }
.animate-up { transform: translateY(50px); }
.animate-fade { transform: scale(0.95); }

.animate-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .values-container {
    flex-direction: column;
    align-items: center;
  }
}





/* ===== Hero Section ===== */
.projects-hero {
  position: relative;
  height: 70vh;
  background: url('images/hero-3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(6, 0, 0);
}



.projects-hero .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.projects-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.projects-hero p {
  font-size: 18px;
  color: #000000;
}

/* ===== Projects Section ===== */
.projects-list {
  padding: 80px 10%;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #003366;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.project-row.reverse {
  flex-direction: row-reverse;
}

.project-image img {
  width: 100%;
  max-width: 500px;
  height: 320px;
  object-fit: cover;
}

.project-content {
  padding: 30px;
  flex: 1;
}

.project-content h3 {
  font-size: 26px;
  color: #003366;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.status-badge {
  display: inline-block;
  margin-top: 15px;
  background: #00aaff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

/* ===== Animations ===== */
.project-row {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.project-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .project-row, .project-row.reverse {
    flex-direction: column;
  }

  .project-image img {
    max-width: 100%;
    height: 250px;
  }

  .project-content {
    text-align: center;
  }
}




/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero Section */
.hero-gallery {
  position: relative;
  height: 75vh;
  background: url('images/workgallery-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}



.hero-content {
  color: #fff;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #eef5f9);
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #004c91;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Filter Buttons */
.filter-buttons {
  margin-bottom: 40px;
}

.filter-btn {
  background: #004c91;
  color: #fff;
  border: none;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
  background: #0077cc;
  transform: translateY(-3px);
}

.filter-btn.active {
  background: #0099ff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

#lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #ff4c4c;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.hero-blog {
  position: relative;
  height: 75vh;
  background: url('images/blog-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #090000;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Blog Section */
.blog-section {
  padding: 80px 10%;
  text-align: center;
}

.blog-header h2 {
  font-size: 2.5rem;
  color: #004c91;
  margin-bottom: 10px;
}

.blog-header p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: #004c91;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #004c91;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .blog-section {
    padding: 60px 6%;
  }
}



.blog-card {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
}




/* Reset */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.contact-hero {
  position: relative;
  height: 70vh;
  background: url('images/cont-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}



.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 80px 10%;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Contact Info */
.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  color: #004c91;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.8rem;
  color: #004c91;
  background: #e6f0fa;
  padding: 15px;
  border-radius: 50%;
}

/* Contact Form */
.contact-form {
  flex: 1 1 50%;
  background: #f4f8fc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.btn-submit {
  background: #004c91;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #0077cc;
}

/* Map */
.map-section iframe {
  border: none;
  width: 100%;
  height: 400px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  max-width: 450px;
  animation: fadeInScale 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

#quickContactBtn {
  background: #004c91;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}

#quickContactBtn:hover {
  background: #0077cc;
  transform: scale(1.1);
}

/* Floating Contact Popup */
.quick-contact-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  width: 320px;
  padding: 20px;
  z-index: 1001;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.popup-header h3 {
  color: #004c91;
}

.popup-header span {
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
}

.quick-contact-popup input,
.quick-contact-popup textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}





/* ✅ FIX: Dropdown display for mobile and desktop */
.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(to right, #00416a, #e4e5e6);
  min-width: 220px;
  top: 100%;
  left: 0;
  z-index: 100;
  flex-direction: column;
  border-radius: 5px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* ✅ For mobile: allow JS to open it */
.dropdown.open .dropdown-content {
  display: flex !important;
  position: static; /* ensures it sits properly in mobile layout */
}























