/* Base Styles */
/* :root {
  --primary-color: #9a8c98;
  --secondary-color: #4a4e69;
  --accent-color: #c9ada7;
  --light-color: #f2e9e4;
  --dark-color: #22223b;
  --text-color: #333333;
  --light-gray: #f8f8f8;
  --medium-gray: #e0e0e0;
  --dark-gray: #666666;
  --font-primary: 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Montserrat', Arial, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
} */

:root {
  --primary-color: #2052E9FA;         /* Deep Blue */
  --secondary-color: #072e61;       /* Navy Blue */
  --accent-color: #00b4d8;          /* Sky Blue */
  --light-color: #072e61;           /* Very Light Blue */
  --dark-color:  #030000 ;            /* Indigo Navy */
  --text-color: #3d0a0a;            /* Neutral Dark */
  --light-gray: #04e4d6;
  --medium-gray: #7ccef7cc;
  --dark-gray: #ffffff;
  --font-primary: 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Montserrat', Arial, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
}
.logo-text {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between logo and text */
}

.logo-img {
  width: 40px;  /* adjust as needed */
  height: auto;
}

.logoe-img{
  width: 250px;  /* adjust as needed */
  height: auto;
}
.company-name {
  font-size: 1.5rem;
  color: #1a2b57;
  margin: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
  color: #030000;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 2px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* .logoo{ 
  width: 60px; 
  height: auto;
  margin-right: 5px;
  margin-inline-start: 10px;
}*/ */
/* .branding {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between logo and name 
}

.logo {
  width: 50px; /* adjust as needed 
  height: auto;
}

.company-name {
  font-size: 30px;
  color: #1e3a5f; /* or your existing title color 
  margin: 0;
}
 */

.section-title .h3{
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  color: #ffffff;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

.text-center {
  text-align: center;
}


/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.logoo{ 
  width: 60px; 
  height: auto;
  margin-right: 5px;
  padding-left: 10px;
}
.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--secondary-color);
}


/* .branding {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between logo and name 
}

.logo {
  width: 50px; /* adjust as needed 
  height: auto;
}

.company-name {
  font-size: 30px;
  color: #1e3a5f; /* or your existing title color 
  margin: 0;
} */

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  }
  

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--dark-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}


/* Hero Section */
.hero {
  height: 80vh;
  background-image: url('images/hero-interior.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 81, 230, 0.981);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

/* Intro Section */
.intro {
  padding: 5rem 0;
}

.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
  color: black;
}

.intro-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.portfolio-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.portfolio-preview .text-center {
  margin-top: 3rem;
}

/* Testimonial Section */
.testimonial {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
}

/* Page Header */
.page-header {
  background-color: var(--light-color);
  padding: 3rem 0;
  text-align: center;
}

.page-header h2 {
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.about-content {
  padding: 5rem 0;
}

.about-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 3rem;
  align-items: start;
}

.about-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-image {
  display: flex;
  justify-content: flex-end; /* push image to the right */
  align-items: flex-start;
  padding-top: 2rem;
}

.about-image img {
  max-width: 150px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* About Page */
/*.about-content {
  padding: 5rem 0;
}

.about-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.about-image
{
  margin-top: 2rem;
  margin-bottom: 1rem;
  align-items: end;
}
.about-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.values-list li {
  margin-bottom: 0.5rem;
}
/* .hero-img img{
  width: 500px;
  height: 450px;
}
img {
  overflow-clip-margin: content-box;
  overflow: clip;
} */
.about-image {
  flex: 1;
  text-align: left;
}

.about-image img {
  max-width: 70%;
  height: 300px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  
}*/


/* CEO Profile */
.ceo-profile {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.ceo-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.ceo-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.ceo-bio h3 {
  margin-bottom: 0.5rem;
}

.ceo-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.ceo-quote {
  margin: 2rem 0;
  padding: 2rem;
  background-color: white;
  border-left: 4px solid var(--primary-color);
}

.ceo-quote blockquote {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 0;
}

.ceo-achievements {
  margin-top: 2rem;
}

.ceo-achievements h4 {
  margin-bottom: 1rem;
}

.ceo-achievements ul {
  margin-bottom: 0;
}

.ceo-achievements li {
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-overview {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid white;
}

.team-member h4 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* Services Page */
.services-intro {
  padding: 3rem 0;
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #000000e0;
}

.service-categories {
  padding: 5rem 0;
}

.service-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-category.reverse .service-image {
  order: 2;
}

.service-category.reverse .service-details {
  order: 1;
}

.service-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.service-details h3 {
  margin-bottom: 1rem;
}

.service-details ul {
  margin-bottom: 1.5rem;
}

.service-details li {
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-overview {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 18%;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

/* Client Logos */
.client-logos {
  padding: 5rem 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5.5rem;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  padding: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--light-color);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--secondary-color);
  color: white;
}

.cta-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background-color: white;
  color: var(--secondary-color);
}

.cta-section .btn:hover {
  background-color: var(--light-color);
}

/* Portfolio Page */
.portfolio-filter {
  padding: 2rem 0;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--medium-gray);
  border-radius: 30px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.portfolio-gallery {
  padding: 3rem 0 5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  color: white;
}

.overlay-content h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.view-project {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

.view-project:hover {
  color: var(--primary-color);
}

/* Project Modal */
.project-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1200;
}

.modal-body {
  padding: 2rem;
}

/* Locations Page */
.locations-intro {
  padding: 3rem 0;
  text-align: center;
}

.office-locations {
  padding: 5rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.location-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-details {
  padding: 1.5rem;
}

.location-details h4 {
  margin-bottom: 1rem;
}

.location-details address {
  font-style: normal;
  margin-bottom: 1.5rem;
}

.location-details address p {
  margin-bottom: 0.5rem;
}

.office-hours h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.office-hours p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.service-areas {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.service-regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.region h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.service-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
}

.map-section {
  padding: 5rem 0;
}

.map-container {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.virtual-consultations {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.virtual-consultations .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.virtual-content h3 {
  margin-bottom: 1.5rem;
}

.virtual-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* Contact Page */
.contact-intro {
  padding: 3rem 0;
  text-align: center;
}

.contact-content {
  padding: 5rem 0;
}

.contact-content .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form-container h3,
.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.contact-form .btn {
  grid-column: span 2;
  margin-top: 1rem;
}

.info-section {
  margin-bottom: 2rem;
}

.info-section h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.info-section address {
  font-style: normal;
}

.info-section address p,
.info-section p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
      padding: 0 2rem;
  }
  
  .hero h2 {
      font-size: 3rem;
  }
  
  .process-steps {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .process-steps:before {
      display: none;
  }
  
  .process-step {
      width: 45%;
      margin-bottom: 2rem;
  }
  
  .ceo-content {
      grid-template-columns: 1fr;
  }
  
  .ceo-image {
      max-width: 400px;
      margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.8rem;
  }
  
  h3 {
      font-size: 1.5rem;
  }
  
  .hero {
      height: 70vh;
  }
  
  .hero h2 {
      font-size: 2.5rem;
  }
  
  .menu-toggle {
      display: block;
  }
  
  .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      align-items: flex-start;
      padding: 5rem 2rem 2rem;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      z-index: 1000;
  }
  
  .nav-menu.active {
      right: 0;
  }
  
  .nav-menu li {
      margin: 0 0 1.5rem;
      width: 100%;
  }
  
  .nav-menu a {
      display: block;
      padding: 0.5rem 0;
  }
  
  .intro .container,
  .about-content .container,
  .service-category,
  .service-category.reverse,
  .contact-content .container,
  .virtual-consultations .container {
      grid-template-columns: 1fr;
  }
  
  .service-category.reverse .service-image,
  .service-category.reverse .service-details {
      order: 0;
  }
  
  .process-step {
      width: 100%;
  }
  
  .contact-form {
      grid-template-columns: 1fr;
  }
  
  .form-group.full-width,
  .contact-form .btn {
      grid-column: span 1;
  }
  
  .filter-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .filter-btn {
      width: 80%;
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 1rem;
  }
  
  .hero h2 {
      font-size: 2rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .logo h1 {
      font-size: 1.5rem;
  }
  
  .testimonial blockquote {
      font-size: 1.3rem;
  }
  
  .portfolio-grid {
      grid-template-columns: 1fr;
  }
}
/* Contact Page Specific Styles */
.contact-intro {
  padding: 3rem 0;
  background-color: var(--light-color);
}

.intro-content h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.highlight-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: 8px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Office Locations */
.office-locations {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.registered-office {
  margin-bottom: 3rem;
}

.office-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-office {
  border-left: 4px solid var(--primary-color);
}

.office-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--medium-gray);
}

.office-header h4,
.office-header h5 {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.office-header i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.office-badge {
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.office-details h5 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.office-details address {
  font-style: normal;
}

.office-details address p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.office-details address i {
  margin-right: 0.5rem;
  color: var(--primary-color);
  min-width: 15px;
}

.other-offices h4 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--secondary-color);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Service Areas / Zones */
.service-areas {
  padding: 5rem 0;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.zone-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.zone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zone-card.west {
  border-top: 4px solid #e74c3c;
}

.zone-card.north {
  border-top: 4px solid #3498db;
}

.zone-card.east {
  border-top: 4px solid #f39c12;
}

.zone-card.south {
  border-top: 4px solid #27ae60;
}

.zone-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--medium-gray);
}

.zone-header i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.zone-header h4 {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.zone-states ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.zone-states li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-color);
  position: relative;
  padding-left: 1.5rem;
}

.zone-states li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.zone-office {
  background-color: var(--light-color);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.zone-office p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* CTA Section Updates */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer Updates */
.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.5rem;
  min-width: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.footer-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Responsive Updates for Contact Page */
@media (max-width: 768px) {
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .office-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
