
body {
  background-color: #000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: var(--main-blue);
  color: #ffffff;
  height: 70px;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-family: var(--sans-font);
}

.logo-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--main-yellow);
  display: inline-block;
}

/* Nav Links Styling */
.nav-links {
  display: flex;
  list-style: none;
  z-index: 999;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #999; /* Muted color for inactive links */
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #fff; /* Bright white for active/hover */
}


/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.hamburger-btn span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .navbar {
    height: 50px;
    padding: 0.45rem 2%;
    min-height: 50px;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
  }

  .hamburger-btn {
    display: flex;
    flex-shrink: 0;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-text {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--main-blue);
    padding: 1rem 5%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 0.85rem;
    letter-spacing: 0;
  }

  .navbar {
    height: 48px;
    min-height: 48px;
    padding: 0.4rem 4%;
  }
}





/* Hero Section */
/* --- 1. General Setup & Reset --- */
:root {
    /* Define the new Blue & Yellow Palette */
    --main-blue: #0A1931;   /* A deep, professional navy blue */
    --main-yellow: #FFC947; /* A bright, solid golden yellow */
    --pure-white: #FFFFFF;
    
    /* Font definitions for convenience */
    --sans-font: 'Montserrat', sans-serif;
    --serif-font: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    /* Set a dark base for the whole page */
    background-color: #000;
}

/* --- 2. The Hero Container (Layout) --- */
.titan-hero {
    display: flex;
    width: 100%;
    min-height: 100vh; /* Takes full viewport height */
    overflow: hidden; 
}

.hero-text-container {
    flex: 1; 
    background-color: var(--main-blue); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 8%; 
    z-index: 10; 
}

.hero-text-content {
    max-width: 650px; 
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--main-yellow);
    color: var(--main-blue);
    font-family: var(--sans-font);
    font-weight: 800;
    font-size: 1.6rem;
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -1px;
}

.brand-name {
    color: var(--pure-white);
    font-family: var(--sans-font);
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 2px;
}

.hero-heading {
    color: var(--pure-white);
    font-family: var(--serif-font); 
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
}

.highlight {
    color: var(--main-yellow);
    font-family: var(--sans-font);
    font-weight: 800;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.85); 
    font-family: var(--sans-font);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-image-container {
    flex: 1; 
    position: relative; 
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}

/* Gradient overlay connecting text side to image */
.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(10, 25, 49, 1) 0%,
        rgba(10, 25, 49, 0.9) 25%,
        rgba(10, 25, 49, 0.7) 45%,
        rgba(10, 25, 49, 0.4) 65%,
        rgba(10, 25, 49, 0.1) 85%,
        rgba(10, 25, 49, 0) 100%
    );
}



/* --- 7. Responsive Design (Mobile First) --- */
@media (max-width: 992px) {
    .titan-hero {
        flex-direction: column; /* Stacks the text on top of the image */
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-text-container {
        padding: 50px 10%;
        text-align: center;
        justify-content: center;
    }
    
    .brand {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 50vh; /* Set a specific height for the image on mobile */
    }
    
    /* Change gradient on mobile to flow bottom-to-top */
    .image-gradient-overlay {
        background: linear-gradient(to top, rgba(10, 25, 49, 0.8) 0%, rgba(10, 25, 49, 0) 100%);
    }
}

@media (max-width: 768px) {
    .titan-hero {
        min-height: auto;
    }

    .hero-text-container {
        padding: 40px 6%;
        min-height: auto;
    }

    .hero-text-content {
        max-width: 100%;
    }

    .hero-heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .logo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-image-container {
        height: 40vh;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .brand-name {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .brand {
        gap: 10px;
        margin-bottom: 30px;
    }

    .logo-placeholder {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-image-container {
        height: 30vh;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }
}


/* Container & Background */
.legacy-section {
  background-color: #0A1931; /* Your Deep Blue */
  color: #FFFFFF;
  padding: 80px 10%;
  font-family: 'Montserrat', sans-serif;
}

/* Header Layout */
.legacy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Aligns description to bottom of the title */
  margin-bottom: 50px;
  gap: 40px;
}

.legacy-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  flex: 2; /* Takes more space */
}

.highlight {
  color: #FFC947; /* Your Golden Yellow */
}

.legacy-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1; /* Takes less space */
  max-width: 400px;
}

/* Gallery Grid System */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 5; /* Matches the tall rectangular shape in image */
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 201, 71, 0.2); /* Subtle yellow border */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps images from stretching */
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05); /* Smooth zoom effect on hover */
}

/* Decorative Footer Line */
.bottom-accent {
  margin-top: 60px;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #FFC947 30%, rgba(255, 255, 255, 0.1) 30%);
}

/* Responsive for Tablets and Mobile */
@media (max-width: 992px) {
  .legacy-section {
    padding: 60px 5%;
  }
  
  .legacy-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .legacy-title {
    font-size: 2.2rem;
  }
  
  .legacy-desc {
    max-width: none;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .legacy-section {
    padding: 50px 4%;
  }
  
  .legacy-header {
    gap: 25px;
    margin-bottom: 35px;
  }
  
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .legacy-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .legacy-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .gallery-item {
    aspect-ratio: 3 / 4;
  }
  
  .bottom-accent {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .legacy-section {
    padding: 40px 3%;
  }
  
  .legacy-header {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .legacy-title {
    font-size: 1.6rem;
  }
  
  .legacy-desc {
    font-size: 0.85rem;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 5;
    border-radius: 8px;
  }
  
  .bottom-accent {
    margin-top: 35px;
    height: 1.5px;
  }
}

@media (max-width: 480px) {
  .legacy-section {
    padding: 35px 3%;
  }
  
  .legacy-header {
    gap: 18px;
    margin-bottom: 25px;
  }
  
  .legacy-title {
    font-size: 1.5rem;
  }
  
  .legacy-desc {
    font-size: 0.8rem;
  }
  
  .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
  }
  
  .bottom-accent {
    margin-top: 30px;
  }
}

@media (max-width: 360px) {
  .legacy-section {
    padding: 30px 2%;
  }
  
  .legacy-header {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .legacy-title {
    font-size: 1.4rem;
  }
  
  .legacy-desc {
    font-size: 0.75rem;
  }
  
  .gallery-item {
    border-radius: 4px;
  }
  
  .bottom-accent {
    margin-top: 25px;
    height: 1px;
  }
}





/* testimonial section */
/* Container Layout */
.testimonial-section {
  display: flex;
  background-color: #1a3a5a; /* Lighter Blue */
  color: #FFFFFF;
  padding: 80px 10%;
  align-items: center;
  gap: 60px;
  font-family: 'Montserrat', sans-serif;
}

/* Left Column Styling */
.testimonial-content {
  flex: 1;
}

.stat-number {
  font-size: 5rem;
  font-weight: 800;
  color: #FFC947; /* Your Golden Yellow */
  margin-bottom: 0;
}

.stat-label {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 500px;
}

.author-info {
  border-left: 2px solid #FFC947; /* Yellow accent line */
  padding-left: 20px;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Right Column: Image & Video Overlay */
.testimonial-image-wrapper {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.main-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.play-btn {
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  background-color: #FFC947; /* Yellow on hover */
}

.video-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .testimonial-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }
  
  .author-info {
    border-left: none;
    border-top: 2px solid #FFC947;
    padding-left: 0;
    padding-top: 15px;
    display: inline-block;
  }

  .stat-number {
    font-size: 4rem;
  }
}


/* why choose us */
/* Container Layout */
.why-choose-section {
  display: flex;
  background-color: #0A1931; /* Your Deep Blue */
  color: #FFFFFF;
  padding: 80px 10%;
  align-items: center;
  gap: 50px;
  font-family: 'Montserrat', sans-serif;
}

/* Left Column Styling */
.why-choose-content {
  flex: 1.2; /* Slightly wider than the image side */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.highlight {
  color: #FFC947; /* Your Golden Yellow */
}

/* Feature Item Styling */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border: 2px solid #FFC947; /* Yellow border circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* Prevents the circle from squishing */
  font-size: 1.2rem;
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

/* Right Column: Image Styling */
.why-choose-image {
  flex: 1;
}

.rounded-img {
  width: 100%;
  border-radius: 15px; /* Matches the rounded corners in your image */
  display: block;
  object-fit: cover;
}

/* Responsive Scaling for Mobile */
@media (max-width: 992px) {
  .why-choose-section {
    flex-direction: column;
    padding: 60px 5%;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }
}


/* Projects Section */
/* Section Base */
.projects-section {
  background-color: #0A1931; /* Deep Blue */
  color: #FFFFFF;
  padding: 100px 10%;
  font-family: 'Montserrat', sans-serif;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #FFC947; /* Golden Yellow */
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Project Card & Hover Effects */
.project-card {
  position: relative;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 25, 49, 0.9) 10%, rgba(10, 25, 49, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-info {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-info .category {
  color: #FFC947;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.project-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.view-project {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid #FFC947;
  padding-bottom: 2px;
}

/* Hover States */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

/* "View All" Button */
.projects-footer {
  text-align: center;
  margin-top: 60px;
}

.btn-all-projects {
  background-color: transparent;
  color: #FFC947;
  border: 2px solid #FFC947;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-all-projects:hover {
  background-color: #FFC947;
  color: #0A1931;
}

/* Projects Section Responsive Styles */
@media (max-width: 992px) {
  .projects-section {
    padding: 80px 5%;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 60px 4%;
  }
  
  .projects-header {
    margin-bottom: 40px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .project-card {
    height: 380px;
  }
  
  .project-overlay {
    padding: 30px;
  }
  
  .project-info h3 {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .projects-footer {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 50px 3%;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card {
    height: 320px;
  }
  
  .project-overlay {
    padding: 25px;
  }
  
  .project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .view-project {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .btn-all-projects {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 40px 3%;
  }
  
  .projects-grid {
    gap: 15px;
  }
  
  .project-card {
    height: 280px;
  }
  
  .project-overlay {
    padding: 20px;
  }
  
  .project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .project-info .category {
    font-size: 0.75rem;
  }
  
  .view-project {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .projects-header {
    margin-bottom: 30px;
  }
  
  .projects-footer {
    margin-top: 30px;
  }
  
  .btn-all-projects {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .projects-section {
    padding: 30px 2%;
  }
  
  .project-card {
    height: 250px;
  }
  
  .project-overlay {
    padding: 15px;
  }
  
  .project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .project-info .category {
    font-size: 0.7rem;
    margin-bottom: 3px;
  }
  
  .view-project {
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .btn-all-projects {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}
.main-footer {
  background-color: #050E1D; /* Slightly darker blue than the sections */
  color: #FFFFFF;
  padding: 80px 10% 20px 10%;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Custom widths for columns */
  gap: 40px;
  margin-bottom: 60px;
}

/* Logo & About */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFC947; /* Your Golden Yellow */
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #FFC947;
}

/* Links & Lists */
.footer-links, .contact-list {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #FFC947;
  padding-left: 5px;
}

.contact-list li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 10px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #FFC947;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo, .footer-heading::after {
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}




.project-hero {
    background-color: #0A1931; /* Your Deep Blue */
    padding: 120px 10% 60px 10%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 201, 71, 0.1);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #FFC947; /* Yellow */
}

.page-title {
    font-size: 3.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.highlight {
    color: #FFC947;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1rem;
}
 
/* Filter Buttons */
.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #FFC947;
    border-color: #FFC947;
    color: #0A1931;
}





.project-display {
    background-color: #0A1931; /* Deep Blue */
    padding: 60px 10%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #FFC947; /* Yellow border on hover */
}

/* Image Hover Effect */
.image-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-box:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    padding: 10px 20px;
    background: #FFC947;
    color: #0A1931;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

/* Content Styling */
.card-details {
    padding: 20px;
}

.category-tag {
    color: #FFC947;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-details h3 {
    color: #fff;
    margin: 10px 0 5px 0;
    font-size: 1.4rem;
}

.card-details p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}



/* Project Detail Hero */
/* Hero Section */
.project-detail-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Back button fixed top-left for project details */
.btn-exit {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 999;
    background: rgba(10, 25, 49, 0.95);
    color: #FFC947;
    border: 1px solid #FFC947;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

.btn-exit:hover {
    background: #0A1931;
    color: #fff;
}

.detail-category {
    color: #FFC947; /* Yellow */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.project-detail-hero h1 {
    font-size: 4rem;
    margin: 15px 0 30px 0;
}

.detail-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.stat-item .label {
    display: block;
    font-size: 0.8rem;
    color: #FFC947;
    margin-bottom: 5px;
}

.stat-item .value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Content Grid */
.project-info-section {
    background-color: #0A1931;
    padding: 100px 10%;
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.description-text h2 {
    color: #FFC947;
    margin-bottom: 20px;
}

.description-text p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Sidebar Box */
.sidebar-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FFC947;
}

.sidebar-box h3 {
    margin-bottom: 20px;
}

.sidebar-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.sidebar-box li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.sidebar-box li strong {
    color: #FFC947;
}

.cta-yellow {
    width: 100%;
    background-color: #FFC947;
    color: #0A1931;
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}



/* Container & Background */
.portfolio-section {
  background-color: #0A1931; /* Your Deep Blue */
  color: #FFFFFF;
  padding: 100px 10%;
  font-family: 'Montserrat', sans-serif;
}

/* Header Alignment */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.header-left {
  flex: 1;
  max-width: 400px;
}

.section-mission {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.see-all {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #FFFFFF;
  padding-bottom: 5px;
}

.header-right {
  text-align: right;
}

.portfolio-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Year Navigation */
.year-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.year-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: color 0.3s ease;
}

.year-nav a.active, .year-nav a:hover {
  color: #FFC947; /* Your Golden Yellow */
}

/* Mosaic Grid Logic */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr; /* Outer columns are slightly wider */
  gap: 25px;
}

.grid-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The Middle Column Split */
.grid-column-center {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.grid-item.large {
    height: 600px;
}

.grid-column-center .small {
    height: calc(300px - 12.5px); /* Half of large height minus half the gap */
}

/* The White Circular Button Overlay */
.circular-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    color: #0A1931;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .portfolio-header {
    flex-direction: column-reverse;
    text-align: left;
    align-items: flex-start;
  }
  .header-right { text-align: left; margin-bottom: 30px;}
  .year-nav { justify-content: flex-start; }
  
  .portfolio-grid {
    grid-template-columns: 1fr; /* Stack everything on mobile */
  }
}

/* Additional Projects Page Responsive Styles */
@media (max-width: 992px) {
  .project-hero {
    padding: 100px 5% 50px;
  }
  
  .page-title {
    font-size: 2.8rem;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
  }
  
  .filter-wrapper {
    gap: 12px;
  }
  
  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .project-display {
    padding: 50px 5%;
  }
  
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .portfolio-section {
    padding: 80px 5%;
  }
  
  .portfolio-header {
    margin-bottom: 40px;
  }
  
  .portfolio-title {
    font-size: 2.4rem;
  }
  
  .year-nav {
    gap: 15px;
  }
  
  .portfolio-grid {
    gap: 20px;
  }
  
  .grid-item.large {
    height: 500px;
  }
  
  .grid-column-center .small {
    height: calc(250px - 10px);
  }
  
  .circular-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 80px 4% 40px;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  
  .page-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  
  .filter-wrapper {
    gap: 10px;
    justify-content: center;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .project-display {
    padding: 40px 4%;
  }
  
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .image-box {
    height: 220px;
  }
  
  .card-details {
    padding: 18px;
  }
  
  .card-details h3 {
    font-size: 1.3rem;
  }
  
  .portfolio-section {
    padding: 60px 4%;
  }
  
  .portfolio-header {
    margin-bottom: 35px;
  }
  
  .header-left {
    max-width: none;
  }
  
  .section-mission {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .portfolio-title {
    font-size: 2rem;
  }
  
  .year-nav {
    gap: 12px;
    padding-top: 12px;
  }
  
  .portfolio-grid {
    gap: 18px;
  }
  
  .grid-item.large {
    height: 400px;
  }
  
  .grid-column-center .small {
    height: calc(200px - 9px);
  }
  
  .circular-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .project-hero {
    padding: 60px 3% 30px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  
  .filter-wrapper {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .project-display {
    padding: 30px 3%;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .image-box {
    height: 200px;
  }
  
  .card-details {
    padding: 16px;
  }
  
  .card-details h3 {
    font-size: 1.2rem;
  }
  
  .portfolio-section {
    padding: 50px 3%;
  }
  
  .portfolio-header {
    margin-bottom: 30px;
  }
  
  .section-mission {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .portfolio-title {
    font-size: 1.8rem;
  }
  
  .year-nav {
    gap: 10px;
    padding-top: 10px;
  }
  
  .portfolio-grid {
    gap: 15px;
  }
  
  .grid-item.large {
    height: 350px;
  }
  
  .grid-column-center .small {
    height: calc(175px - 7.5px);
  }
  
  .circular-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .project-hero {
    padding: 50px 3% 25px;
  }
  
  .breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .page-title {
    font-size: 1.6rem;
  }
  
  .page-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  
  .filter-wrapper {
    gap: 6px;
  }
  
  .filter-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  
  .project-display {
    padding: 25px 3%;
  }
  
  .grid-container {
    gap: 18px;
  }
  
  .image-box {
    height: 180px;
  }
  
  .card-details {
    padding: 14px;
  }
  
  .card-details h3 {
    font-size: 1.1rem;
  }
  
  .portfolio-section {
    padding: 40px 3%;
  }
  
  .portfolio-header {
    margin-bottom: 25px;
  }
  
  .section-mission {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }
  
  .portfolio-title {
    font-size: 1.6rem;
  }
  
  .year-nav {
    gap: 8px;
    padding-top: 8px;
  }
  
  .portfolio-grid {
    gap: 12px;
  }
  
  .grid-item.large {
    height: 300px;
  }
  
  .grid-column-center .small {
    height: calc(150px - 6px);
  }
  
  .circular-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .project-hero {
    padding: 40px 2% 20px;
  }
  
  .breadcrumb {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  
  .page-title {
    font-size: 1.1rem;
  }
  
  .page-subtitle {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  
  .filter-wrapper {
    gap: 5px;
  }
  
  .filter-btn {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .project-display {
    padding: 20px 2%;
  }
  
  .grid-container {
    gap: 15px;
  }
  
  .image-box {
    height: 160px;
  }
  
  .card-details {
    padding: 12px;
  }
  
  .card-details h3 {
    font-size: 1rem;
  }
  
  .portfolio-section {
    padding: 30px 2%;
  }
  
  .portfolio-header {
    margin-bottom: 20px;
  }
  
  .section-mission {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .portfolio-title {
    font-size: 1.4rem;
  }
  
  .year-nav {
    gap: 6px;
    padding-top: 6px;
  }
  
  .portfolio-grid {
    gap: 10px;
  }
  
  .grid-item.large {
    height: 250px;
  }
  
  .grid-column-center .small {
    height: calc(125px - 5px);
  }
  
  .circular-btn {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Contact Page Styles */
/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--main-blue) 0%, rgba(10, 25, 49, 0.9) 100%);
    color: var(--pure-white);
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .breadcrumb {
    margin-bottom: 30px;
}

.contact-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--sans-font);
    font-size: 0.9rem;
}

.contact-hero .breadcrumb .current {
    color: var(--main-yellow);
}

.contact-hero .page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--serif-font);
}

.contact-hero .page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--sans-font);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background-color: var(--pure-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--main-blue);
    margin-bottom: 15px;
    font-family: var(--serif-font);
    font-weight: 700;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--main-yellow);
    background-color: rgba(255, 201, 71, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--main-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.5;
}

.info-item.email-item p {
    text-align: center;
    color: #333;
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    background-color: var(--pure-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: var(--main-blue);
    margin-bottom: 15px;
    font-family: var(--serif-font);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--main-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--sans-font);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-yellow);
    box-shadow: 0 0 0 3px rgba(255, 201, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
}

.submit-btn {
    background-color: var(--main-yellow);
    color: var(--main-blue);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--sans-font);
    width: 100%;
}

.submit-btn:hover {
    background-color: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 201, 71, 0.3);
}

/* Map Section */
.map-section {
    padding: 80px 5%;
    background-color: var(--main-blue);
    color: var(--pure-white);
}

.map-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--serif-font);
    font-weight: 700;
}

.map-embed {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 201, 71, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.footer {
    background-color: var(--main-blue);
    color: var(--pure-white);
    padding: 60px 5% 20px;
    font-family: var(--sans-font);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--main-yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--main-yellow);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--main-yellow);
    color: var(--main-blue);
    font-family: var(--sans-font);
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pure-white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--main-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    display: block;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form {
        padding: 40px;
    }

    .contact-hero .page-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 5% 60px;
    }

    .contact-hero .page-title {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 5%;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        padding: 60px 5%;
    }

    .map-container h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Contact Page Additional Responsive Styles */
@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 4% 50px;
    }
    
    .contact-hero .page-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .contact-hero .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 50px 4%;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .info-item {
        gap: 15px;
        margin-bottom: 25px;
        padding: 16px 0;
    }
    
    .info-item .icon {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .map-section {
        padding: 50px 4%;
    }
    
    .map-container h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .map-embed {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 70px 3% 40px;
    }
    
    .contact-hero .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .contact-hero .page-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-hero .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 40px 3%;
    }
    
    .contact-info {
        padding: 25px 18px;
    }
    
    .contact-form {
        padding: 25px 18px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .contact-info > p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .info-item {
        gap: 12px;
        margin-bottom: 20px;
        padding: 14px 0;
    }
    
    .info-item .icon {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.88rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 90px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .map-section {
        padding: 40px 3%;
    }
    
    .map-container h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .map-embed {
        height: 300px;
    }
}

@media (max-width: 360px) {
    .contact-hero {
        padding: 60px 2% 35px;
    }
    
    .contact-hero .breadcrumb {
        font-size: 0.7rem;
        margin-bottom: 16px;
        letter-spacing: 0px;
    }
    
    .contact-hero .page-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .contact-hero .page-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-section {
        padding: 35px 2%;
    }
    
    .contact-info {
        padding: 22px 15px;
    }
    
    .contact-form {
        padding: 22px 15px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .contact-info > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .info-item {
        gap: 10px;
        margin-bottom: 18px;
        padding: 12px 0;
    }
    
    .info-item .icon {
        font-size: 1.1rem;
        width: 36px;
        height: 36px;
    }
    
    .info-item h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .info-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .info-item.email-item p {
        font-size: 0.78rem;
    }
    
    .form-row {
        gap: 12px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.88rem;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    .map-section {
        padding: 35px 2%;
    }
    
    .map-container h2 {
        font-size: 1.5rem;
        margin-bottom: 22px;
    }
    
    .map-embed {
        height: 250px;
    }
}

/* Additional Footer Responsive Styles */
@media (max-width: 576px) {
    .footer {
        padding: 40px 3% 15px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .footer-logo {
        gap: 12px;
        margin-bottom: 15px;
        justify-content: center;
    }

    .footer-logo .logo-placeholder {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        justify-content: center;

    }

    .footer-brand {
        font-size: 1.2rem;
        justify-content: center;

    }

    .social-links {
        gap: 12px;
        margin-top: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 2% 10px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-logo {
        gap: 10px;
        margin-bottom: 12px;
        justify-content: center;
         align-items: center;
        text-align: center;
    }

    .footer-logo .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        justify-content: center;
         align-items: center;
        text-align: center;

    }

    .footer-brand {
        font-size: 1.1rem;
        
    }

    .social-links {
        gap: 10px;
        margin-top: 12px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.9rem;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 25px 2% 8px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .footer-logo {
        gap: 8px;
        margin-bottom: 10px;
        justify-content: center;
    }

    .footer-logo .logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;

    }

    .footer-brand {
        font-size: 1rem;
    }

    .social-links {
        gap: 8px;
        margin-top: 10px;
    }

    .social-link {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }

    .footer-section ul li a {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding-top: 10px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}





.page-intro-header-bg {
    /* REPLACE 'services-bg.jpg' with your actual image path */
    background-image: url('Sleek\ Black\ Architecture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a smooth scrolling effect */
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}

/* This creates the Deep Blue tint over the photo */
.overlay-filter {
    background: linear-gradient(
        to bottom, 
        rgba(10, 25, 49, 0.92), 
        rgba(10, 25, 49, 0.85)
    );
    width: 100%;
    height: 100%;
    padding: 120px 10% 80px 10%;
}

.intro-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: #FFC947; /* Yellow for the links */
    text-decoration: none;
}

.page-title {
    font-size: 4rem;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight {
    color: #FFC947;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.header-accent-line {
    width: 60px;
    height: 4px;
    background-color: #FFC947;
    margin: 40px auto 0 auto;
}

/* Tablet & Mobile tweaks */
@media (max-width: 768px) {
    .page-title { font-size: 2.5rem; }
    .page-intro-header-bg { background-attachment: scroll; } /* Better performance on mobile */
}






.services-detail-grid {
    background-color: #0A1931;
    padding: 100px 10%;
    color: white;
}

.services-detail-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 15px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Make the middle card stand out slightly */
.service-card.featured {
    border-color: #FFC947;
    background: rgba(255, 201, 71, 0.05);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: #FFC947;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
}

.service-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features span {
    color: #FFC947; /* Yellow checkmarks */
    font-weight: bold;
}

.service-link {
    text-decoration: none;
    color: #FFC947;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    align-self: flex-start;
}

.service-link:hover {
    border-bottom-color: #FFC947;
    padding-left: 5px;
}

/* Services Detail Grid Responsive Styles */
@media (max-width: 992px) {
    .services-detail-grid {
        padding: 80px 5%;
    }
    
    .services-detail-grid .container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    
    .service-card p {
        margin-bottom: 25px;
        font-size: 0.95rem;
    }
    
    .service-features li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .service-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .services-detail-grid {
        padding: 60px 4%;
    }
    
    .services-detail-grid .container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .service-card p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-features {
        margin-bottom: 30px;
    }
    
    .service-features li {
        margin-bottom: 9px;
        font-size: 0.88rem;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .services-detail-grid {
        padding: 50px 3%;
    }
    
    .services-detail-grid .container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .service-features {
        margin-bottom: 25px;
    }
    
    .service-features li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-detail-grid {
        padding: 40px 3%;
    }
    
    .services-detail-grid .container {
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 18px;
    }
    
    .service-icon {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .service-features {
        margin-bottom: 22px;
    }
    
    .service-features li {
        margin-bottom: 7px;
        font-size: 0.8rem;
        gap: 7px;
    }
    
    .service-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .services-detail-grid {
        padding: 35px 2%;
    }
    
    .services-detail-grid .container {
        gap: 12px;
    }
    
    .service-card {
        padding: 22px 16px;
        border-radius: 10px;
    }
    
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.78rem;
        margin-bottom: 14px;
    }
    
    .service-features {
        margin-bottom: 20px;
    }
    
    .service-features li {
        margin-bottom: 6px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .service-link {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}


.about-section {
    background-color: #0A1931;
    padding: 100px 10%;
    color: #FFFFFF;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.btn-learn {
    background-color: #FFFFFF;
    color: #0A1931;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.about-image {
    flex: 1;
}

.rounded-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Responsive for mobile */
@media (max-width: 992px) {
    .about-container, .legacy-header {
        flex-direction: column;
        text-align: left;
    }
    .legacy-testimonial { text-align: left; margin-top: 20px; }
    .legacy-grid { grid-template-columns: 1fr; }
}



/* whatsapp float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}



.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover::after {
    opacity: 1;
}




/* animation */
/* Animation Base State */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Active State (triggered by JS) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific delay for grid items to create a staggered effect */
.gallery-item, .project-card, .feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.gallery-item.active, .project-card.active, .feature-item.active {
    opacity: 1;
    transform: translateY(0);
}



.stat-block {
    text-align: center;
    min-width: 150px; /* Prevents layout shifting during counting */
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--highlight-color, #ffb400); /* Use your brand's highlight color */
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}






.intro-container {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInHeader 1s forwards ease-out;
}

@keyframes fadeInHeader {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header-accent-line {
    width: 0;
    height: 4px;
    background: #ffb400;
    animation: growLine 1.5s 0.5s forwards ease-in-out;
}

@keyframes growLine {
    to { width: 100px; }
}





/* Container for the projects */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    transition: all 0.5s ease;
}

/* Individual Card Animation State */
.project-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform-origin: center;
}

/* Hero Title Entrance */
.project-hero .page-title {
    opacity: 0;
    transform: translateY(-20px);
    animation: dropDown 0.8s forwards;
}

@keyframes dropDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for the "Circular Button" on the large grid items */
.circular-btn {
    transition: transform 0.3s ease, background 0.3s ease;
}

.grid-item:hover .circular-btn {
    transform: rotate(45deg) scale(1.1);
    background: #ffb400; /* Your brand gold */
}