@charset "utf-8";
/* ================================================
   NEW REDESIGN - STYLE.CSS (HTML & CSS ONLY)
   ================================================ */

/* ---------------------------------------------
   01. CSS Variables & Global Reset
   --------------------------------------------- */
:root {
  --font-primary: 'Poppins', sans-serif;
  
  --color-dark-blue: #36377b;
  --color-accent-purple: #6362ac;
  --color-cta-yellow: #E7BA35;
  --color-text-dark: #212741;
  --color-text-light: #ffffff;
  --color-bg-light-gray: #f9f9f9;
  --color-bg-medium-gray: #D0CECE;
  --color-border: #eeeeee;

  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: var(--color-text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------------------------
   02. Reusable Components (Container, Buttons)
   --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Basic Column System */
.col-lg-4, .col-lg-6, .col-lg-8, .col-lg-12,
.col-md-6, .col-lg-10, .col-lg-3 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Tablet & Up */
@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

/* Desktop & Up */
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .offset-lg-1 { margin-left: 8.3333%; }
  .offset-lg-2 { margin-left: 16.6667%; }
  .offset-lg-3 { margin-left: 25%; }
}

.text-center {
  text-align: center;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  background-color: var(--color-cta-yellow);
  padding: 12px 30px;
  border-radius: 5px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.85;
}

.btn.btn-cta {
  background-color: var(--color-accent-purple);
}
.btn.btn-cta:hover {
  background-color: var(--color-dark-blue);
}

.btn-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-purple);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-text:hover {
  color: var(--color-dark-blue);
  text-decoration: underline;
}

/* Section Heading */
.section-heading {
  margin-bottom: 40px;
}
.section-heading h6 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-accent-purple);
  font-weight: 700;
}
.section-heading h2 {
  margin-top: 10px;
  line-height: 1.3;
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-dark-blue);
}

/* ---------------------------------------------
   03. Header & Navigation
   --------------------------------------------- */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 110px;
  transition: all 0.5s ease;
}
.header-area .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
  position: relative;
  z-index: 101;
}
.header-area .logo img {
  width: 225px;
  height: auto;
}
.header-area .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}
.header-area .nav-links li {
  padding-left: 20px;
  padding-right: 20px;
}
.header-area .nav-links li a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark-blue);
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
}
.header-area .nav-links li a:hover,
.header-area .nav-links li a.active {
  color: var(--color-accent-purple);
}

/* Submenu */
.header-area .nav-links li.has-sub {
  position: relative;
}
.header-area .nav-links li.has-sub ul.sub-menu {
  position: absolute;
  width: 250px;
  background-color: var(--color-text-light);
  box-shadow: var(--shadow-medium);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 101;
  overflow: hidden;
  top: 40px;
  border-top: 3px solid var(--color-cta-yellow);
}
.header-area .nav-links li.has-sub:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .nav-links li.has-sub ul.sub-menu li {
  padding: 0;
}
.header-area .nav-links li.has-sub ul.sub-menu li a {
  display: block;
  background: var(--color-bg-light-gray);
  color: var(--color-text-dark);
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}
.header-area .nav-links li.has-sub ul.sub-menu li:last-child a {
  border-bottom: none;
}
.header-area .nav-links li.has-sub ul.sub-menu li a:hover {
  background: var(--color-text-light);
  color: var(--color-accent-purple);
  padding-left: 25px;
}

/* Sticky Header */
.header-sticky {
  position: fixed;
  height: 90px;
  background-color: var(--color-text-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-sticky .main-nav {
  min-height: 90px;
}

/* Mobile Menu */
.menu-trigger {
  display: none; /* Hidden on desktop */
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 102; /* Above nav links */
}
.menu-trigger span,
.menu-trigger span:before,
.menu-trigger span:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--color-dark-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
  left: 0;
}
.menu-trigger span {
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger span:before {
  top: -10px;
}
.menu-trigger span:after {
  top: 10px;
}

/* Mobile Menu Active State ('X') */
.menu-trigger.nav-active span {
  background-color: transparent;
}
.menu-trigger.nav-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.menu-trigger.nav-active span:after {
  top: 0;
  transform: rotate(-45deg);
}


/* ---------------------------------------------
   04. Hero & Page Header
   --------------------------------------------- */
.hero-banner {
  height: 80vh;
  min-height: 500px;
  position: relative;
  background-color: var(--color-dark-purple);
  background-size: cover;
  background-position: center center;
}
.hero-banner::before,
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-content .container {
  padding-top: 100px; /* Offset for header */
}
.hero-content h1 {
  font-size: 56px;
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--color-cta-yellow);
}
.hero-content .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--color-text-light);
  margin-bottom: 30px;
}
.hero-content p {
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}
.hero-content .buttons .btn {
  background-color: var(--color-cta-yellow);
}

/* Page Header (for About, Contact, etc.) */
.page-header {
  padding: 180px 0px 120px 0px;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
}
.page-header .header-text {
  position: relative;
  z-index: 2;
}
.page-header .header-text h2 {
  font-size: 56px;
  color: var(--color-text-light);
  font-weight: 700;
}
.page-header .header-text .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--color-text-light);
  margin: 20px auto 0 auto;
}

/* ---------------------------------------------
   05. Page Content Sections
   --------------------------------------------- */
section {
  padding: 80px 0;
}
.section-intro {
  padding: 60px 0;
  background-color: var(--color-bg-light-gray);
}
.section-intro h2 {
  color: var(--color-dark-blue);
  font-size: 36px;
  margin-bottom: 20px;
}
.section-intro .lead {
  font-size: 18px;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* Generic Page Content (for About page) */
.section-page-content {
  padding: 80px 0;
}
.content-wrapper h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}
.content-wrapper h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: 30px;
  margin-bottom: 15px;
}
.content-wrapper p {
  margin-bottom: 20px;
}
.content-wrapper ul,
.content-wrapper ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.content-wrapper ul li,
.content-wrapper ol li {
  padding-left: 10px;
  margin-bottom: 10px;
}
.content-wrapper ul {
  list-style-type: disc;
}
.content-wrapper ol {
  list-style-type: decimal;
}

/* Services Page Layout */
.services-list .service-item-row {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}
.services-list .service-item-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.services-list .service-item-row .row {
  align-items: center;
}
.services-list .service-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  width: 100%;
}
.services-list .service-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}
.services-list .service-content ul {
  list-style-type: disc;
  margin-left: 20px;
}
.services-list .service-content ul li {
  margin-bottom: 10px;
  padding-left: 5px;
}

/* Services (Homepage) */
.section-services {
  background-color: var(--color-text-light);
}
.grid-layout-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--color-text-light);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.service-card .card-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
}
.service-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* CTA Bar */
.section-cta-bar {
  background-color: var(--color-dark-blue);
  padding: 60px 0;
}
.section-cta-bar .row {
  align-items: center;
}
.section-cta-bar h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.3;
}
.section-cta-bar p {
  font-size: 18px;
  color: var(--color-text-light);
  opacity: 0.9;
  margin: 0;
}
.section-cta-bar p em {
  font-style: normal;
  font-weight: 600;
  color: var(--color-cta-yellow);
}
.section-cta-bar .btn-container {
  text-align: right;
}
.section-cta-bar .btn {
  background-color: var(--color-cta-yellow);
}

/* Service Area (Homepage) */
.section-service-area {
  background-color: var(--color-bg-light-gray);
}
.map-card {
  display: flex;
  background: var(--color-text-light);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}
.map-card .map-image {
  flex: 0 0 50%;
}
.map-card .map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-card .map-content {
  flex: 0 0 50%;
  padding: 40px;
}
.map-card .map-content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}
.map-card .map-content p {
  font-size: 16px;
}

/* Testimonials (Homepage) */
.grid-layout-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--color-bg-light-gray);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  padding-top: 50px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}
.testimonial-card::before {
  content: '“'; /* Quote icon */
  font-family: 'Times New Roman', Times, serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--color-cta-yellow);
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 25px;
}
.testimonial-card .author-info {
  display: flex;
  align-items: center;
}
.testimonial-card .author-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonial-card .author-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 0;
  line-height: 1.2;
}
.testimonial-card .author-text span {
  font-size: 14px;
  color: var(--color-accent-purple);
  font-weight: 500;
}

/* Project Gallery Page */
.section-project-gallery {
  padding: 60px 0;
  background-color: var(--color-bg-light-gray);
}
.project-item {
  background: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  padding: 30px;
  margin-bottom: 40px;
}
.project-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
}
.project-item p {
  margin-top: 20px;
  font-size: 16px;
}
.project-image-grid {
  display: grid;
  gap: 15px;
}
.project-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid var(--color-border);
}
/* Grid for 4 images */
.project-image-grid.grid-4-images {
  grid-template-columns: repeat(2, 1fr);
}
/* Grid for 2 images */
.project-image-grid.grid-2-images {
  grid-template-columns: repeat(2, 1fr);
}

/* NEW: Contact Page (Original Layout) */
.section-map {
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}
.map-iframe-wrapper {
  position: relative;
  z-index: 1;
}
.info-box-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -80px; /* Pulls info boxes over the map */
}
.info-box {
  background: var(--color-text-light);
  box-shadow: var(--shadow-medium);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px; /* For mobile stacking */
}
.info-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}
.info-box a {
  font-size: 16px;
  color: var(--color-accent-purple);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}
.info-box a:hover {
  color: var(--color-dark-blue);
}

.section-contact-form {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: var(--color-bg-light-gray);
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  height: 50px;
  background-color: #f7f7f7; /* Original gray background */
  color: var(--color-text-dark);
  border-radius: 5px;
  border: none; /* Original borderless style */
  padding: 15px;
  font-size: 14px;
  font-family: var(--font-primary);
  outline: none;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
#contact-form textarea {
  height: 150px;
  min-height: 150px;
  max-height: 250px;
  resize: vertical;
}
#contact-form input:focus,
#contact-form textarea:focus {
  box-shadow: 0 0 5px rgba(99, 98, 172, 0.3);
}
#contact-form button {
  background-color: var(--color-accent-purple);
}
#contact-form button:hover {
  background-color: var(--color-dark-blue);
}


/* ---------------------------------------------
   06. Footer
   --------------------------------------------- */
.site-footer {
  background-color: var(--color-dark-blue);
  color: var(--color-text-light);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col .footer-logo img {
  width: 250px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.footer-col p {
  color: var(--color-text-light);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.8;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
  color: var(--color-cta-yellow);
}
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}
.copyright-bar p {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.7;
  margin: 0;
}

/* ---------------------------------------------
   07. Responsive Media Queries
   --------------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
  .header-area {
    height: 90px;
    background-color: var(--color-text-light);
    box-shadow: var(--shadow-light);
    position: fixed; /* Make header sticky on mobile */
  }
  .header-area .main-nav {
    min-height: 90px;
  }
  .header-area .nav-links {
    position: fixed;
    top: 90px; /* Start below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--color-text-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    
    /* Hide menu off-screen */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 100;
  }
  .header-area .nav-links.nav-active {
    /* Show menu */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-area .nav-links li {
    width: 100%;
    padding: 0;
  }
  .header-area .nav-links li a {
    height: 50px;
    line-height: 50px;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .header-area .nav-links li.has-sub ul.sub-menu {
    /* Mobile submenu styles */
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none; /* Hide by default */
  }
  .header-area .nav-links li.has-sub:hover ul.sub-menu {
    display: block; /* Show on hover/tap */
  }
  .header-area .nav-links li.has-sub ul.sub-menu li a {
    padding-left: 30px; /* Indent sub-items */
    background: #fdfdfd;
  }

  .header-area .btn-cta {
    display: none; /* Hide header CTA */
  }
  .header-area .menu-trigger {
    display: block; /* Show hamburger icon */
  }

  /* Adjust page content to account for fixed header */
  .hero-banner, .page-header {
    padding-top: 90px;
  }
  
  .hero-content h1, .page-header .header-text h2 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }
  .grid-layout-4 {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  .section-cta-bar .row {
    text-align: center;
  }
  .section-cta-bar .col-lg-8 {
    width: 100%;
  }
  .section-cta-bar .col-lg-4 {
    width: 100%;
  }
  .section-cta-bar .btn-container {
    text-align: center;
    margin-top: 20px;
  }
  .map-card {
    flex-direction: column;
  }
  .map-card .map-image,
  .map-card .map-content {
    flex: 0 0 100%;
  }
  .grid-layout-3 {
    grid-template-columns: 1fr; /* 1 column */
  }
  .footer-grid {
    grid-template-columns: 1fr; /* 1 column */
  }
  
  /* Services List Responsive */
  .services-list .service-item-row .row {
    flex-direction: column;
  }
  .services-list .service-item-row .col-lg-6 {
    max-width: 100%;
  }
  .services-list .service-item-row .service-image {
    margin-bottom: 30px;
  }
  .services-list .service-item-row .service-image-col-right {
    order: -1; /* Move image to top on mobile */
  }

  /* Contact Page Responsive */
  .info-box-wrapper {
    margin-top: -60px; /* Adjust for smaller screens */
  }
  .info-box {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  .hero-banner {
    height: 70vh;
  }
  .hero-content h1, .page-header .header-text h2 {
    font-size: 32px;
  }
  .hero-content p {
    display: none; /* Hide subtitle on small screens */
  }
  .section-intro h2 {
    font-size: 28px;
  }
  .section-intro .lead {
    font-size: 16px;
  }
  .grid-layout-4 {
    grid-template-columns: 1fr; /* 1 column */
  }
  .section-cta-bar h4 {
    font-size: 22px;
  }
  .content-wrapper h1 {
    font-size: 26px;
  }
  .content-wrapper h4 {
    font-size: 20px;
  }
  
  /* Project Gallery Responsive */
  .project-image-grid.grid-4-images,
  .project-image-grid.grid-2-images {
    grid-template-columns: 1fr; /* Stack all images in one column */
  }

  /* Contact Form Responsive */
  #contact-form .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .info-box-wrapper {
    margin-top: 30px; /* Stack info boxes below map */
  }
  .section-map {
    padding-bottom: 30px;
  }
  .section-contact-form {
    padding-top: 30px;
  }
}