:root {
  --main-color: #641404;
  --dark-bg-color: #373838;
  --active-dot: #050505;
  --swiper-theme-color: #641404;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9fc;
  color: #222;
  margin: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 250px;
  height: auto;
}

.tagline {
  font-size: 14px;
  color: #333;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-item a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.icon {
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.swiper {
  width: 100%;
  height: 80vh;
  background-color: var(--dark-bg-color);
}

.swiper-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: left;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-content {
  max-width: 800px;
  min-width: 70%;
  color: #fff;
  padding: 4rem 2rem 4rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.slide-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.slide-content h3 {
  font-weight: 300;
  line-height: 1.2;
}

.slide-content a {
  display: inline-block;
  margin-top: 2rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.slide-content a:hover {
  background-color: #fff;
  color: #000;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: unset;
  }

  .hide {
    display: none;
  }

  .navbar {
    padding: 20px !important;
  }

  .contact {
    align-items: flex-start;
  }

  .scroll-banner-swiper .swiper-slide img {
    width: 80vw !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-color);
  padding: 20px 100px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-btn span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: end;
  }

  .toggle-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 30px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 500px;
    /* Enough to fit all items */
    opacity: 1;
    padding: 15px 30px;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

.features-section {
  display: flex;
  justify-content: space-around;
  padding: 60px 60px;
  flex-wrap: wrap;
  text-align: center;
}

.feature {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 20px;
}

.feature h3 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5f1c0d;
}

.feature .dot {
  width: 6px;
  height: 6px;
  background-color: #007f4f;
  border-radius: 50%;
  display: inline-block;
}

.feature p {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
}

.section-green {
  background-color: var(--main-color);
}

.expertise-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.section-heading .subheading {
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  filter: hue-rotate(90deg);
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: "Arial Black", sans-serif;
}

.card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.card a i {
  margin-left: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 30%;
  height: 90%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 24px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid #a93546;
  padding-bottom: 5px;
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.dot.active {
  background: #007f3f;
}

.contact-cta {
  text-align: center;
  padding: 60px 20px 40px;
}

.contact-cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--main-color);
  border-radius: 40px;
  color: var(--main-color);
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button i {
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.cta-button:hover {
  background-color: var(--main-color);
  color: #fff;
}

.cta-button:hover i {
  margin-left: 12px;
}

.contact-cta h2 {
  margin-top: 50px;
  font-size: 32px;
  font-weight: 900;
  font-family: "Arial Black", sans-serif;
}

@media (max-width: 600px) {
  .contact-cta h2 {
    font-size: 24px;
  }

  .cta-button {
    font-size: 13px;
    padding: 10px 22px;
  }
}

footer {
  background-color: #c5c5c5;
  color: #5f1c0d;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 200px;
}

.footer-logo img {
  width: 500px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: "Arial Black", sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
}

.contact-info i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #000000;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0df29b;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #000000;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column,
  .footer-logo {
    flex: 1 1 100%;
  }

  .footer-column ul {
    padding: 0;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.contact-banner {
  background-image: url("assets/your-background-image.jpg");
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: left;
  position: relative;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5f1c0d;
  /* dark overlay */
  z-index: 1;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-banner .init {
  font-size: 2rem;
  margin: 0;
  font-weight: 300;
}

.contact-banner .biggie {
  font-size: 3rem;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form-section {
  /*padding: 60px 20px;*/
  /*background-color: #fff;*/
  /*font-family: 'Arial', sans-serif;*/

  margin: 40px auto;
  font-family: Arial, sans-serif;
  width: 60%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.form-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.6;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #5f1c0d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #5f1c0d;
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #444;
}

/* blog-banner.css */
.blog-banner {
  position: relative;
  background-color: #5f1c0d;
  height: 250px;
  display: flex;
  align-items: center;
  padding-left: 80px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  z-index: 2;
  font-family: "Oswald", sans-serif;
}

.solutions {
  /*max-width: 1000px;*/
  /*margin: 40px auto;*/
  /*padding: 20px;*/
  /*font-family: Arial, sans-serif;*/
  /*color: #333;*/
  /*line-height: 1.7;*/
  /*text-align: left;*/

  margin: 40px auto;
  font-family: Arial, sans-serif;
  width: 80%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.solutions h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #800000;
  /* maroon */
}

.solutions h3 {
  margin-top: 30px;
  font-size: 24px;
  color: #5f1c0d;
}

.solutions ul {
  padding-left: 20px;
  margin-top: 10px;
}

.solutions ul li {
  margin-bottom: 5px;
}

.solutions,
.solutions * {
  text-align: left !important;
}

.footer {
  background-color: #ccc;
  color: #3a1d1d;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.footer-logo img {
  max-width: 220px;
  margin-bottom: 10px;
}

.footer-logo .tagline {
  font-weight: bold;
  margin-top: 5px;
}

.footer-logo .arabic {
  font-weight: bold;
  font-size: 14px;
  margin-top: 5px;
  direction: rtl;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  margin-top: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #5e1f0e;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #2a2a2a;
  text-decoration: none;
}

.footer-column p {
  margin: 8px 0;
}

.footer-column i {
  margin-right: 8px;
  color: #222;
}

.social-icons a {
  /* display: inline-block; */
  display: none;
  margin-right: 10px;
  font-size: 18px;
  color: #222;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #999;
  font-size: 14px;
}

.gd-intro {
  /* background-color: #fff;
  padding: 40px 20px;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  text-align: left; */

  margin: 40px auto;
  font-family: Arial, sans-serif;
  width: 80%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.gd-intro .container {
  max-width: 1000px;
  margin: 0 auto;
}

.gd-intro h2 {
  font-size: 28px;
  color: #800000;
  /* Maroon */
  margin-bottom: 20px;
}

.gd-intro p {
  margin-bottom: 16px;
}

.swiper.scroll-banner-swiper {
  width: 100%;
  height: 70vh;
  padding: 10px 0;
  background: #fff;
}

.scroll-banner-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-banner-swiper .swiper-slide img {
  height: 100%;
  width: 20vw;
  max-width: 100%;
  object-fit: cover;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 90%;
  width: 80%;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .modal-content {
    width: 90%;
    padding: 1.5rem;
    height: 90dvh;
    overflow: auto;
  }
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #800000;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.advisory-section {
  /*padding: 60px 20px;*/
  /*background-color: #fdfdfd;*/
  /*font-family: 'Segoe UI', sans-serif;*/
  margin: 40px auto;
  font-family: Arial, sans-serif;
  width: 80%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.advisory-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.advisory-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #800000;
  text-align: center;
}

.advisory-section .intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advisory-section .service {
  margin-bottom: 40px;
}

.advisory-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #800000;
}

.advisory-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.advisory-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.advisory-section li {
  margin-bottom: 8px;
  color: #444;
}

@media (max-width: 768px) {
  .advisory-section h2 {
    font-size: 1.7rem;
  }

  .advisory-section h3 {
    font-size: 1.3rem;
  }

  .advisory-section p,
  .advisory-section li {
    font-size: 0.95rem;
  }

  .advisory-section .intro {
    font-size: 0.95rem;
  }
}

h1 {
  text-align: center;
  color: #0a2e5d;
  margin-bottom: 2rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
}

.company {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  margin-bottom: 20px;
}

.company:hover {
  transform: translateY(-5px);
}

.company h2 {
  color: #5f1c0d;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.company p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #555;
  line-height: 1.5;
}

.company ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
}

.company ul li {
  font-size: 0.92rem;
  margin: 0.2rem 0;
  color: #333;
}

.company span {
  color: #5f1c0d;
  font-weight: 700;
}

/* Responsive tweak */
@media (max-width: 600px) {
  h1 {
    font-size: 1.3rem;
  }

  .company h2 {
    font-size: 1rem;
  }

  .company p,
  .company ul li {
    font-size: 0.9rem;
  }
}

.modal-description {
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  color: #333;
}

.modal-description-class {
  height: 70dvh;
  overflow-y: auto;
}

.modal-description ul {
  padding-left: 20px;
  margin: 0;
  list-style: disc;
}

.modal-description .highlight-box {
  background-color: #f9f9f9;
  border-left: 4px solid #007bff;
  padding: 12px 16px;
  border-radius: 5px;
}

/* === About Section With Image - Scoped Styles === */
.about-section-with-image {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.about-section-with-image .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  align-items: stretch;
}

.about-section-with-image .text-column {
  width: 60%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.about-section-with-image .text-column h2 {
  color: #5b1a1a;
  /* Dark maroon */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.about-section-with-image .text-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  text-align: justify;
}

.about-section-with-image .text-column .highlight {
  color: #007f4f;
  font-weight: bold;
}

.about-section-with-image .image-column {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.about-section-with-image .image-column img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section-with-image .container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-section-with-image .text-column,
  .about-section-with-image .image-column {
    width: 100%;
    padding: 0;
  }

  .about-section-with-image .text-column {
    padding: 25px 20px;
  }

  .about-section-with-image .text-column h2 {
    font-size: 1.7rem;
  }

  .about-section-with-image .text-column p {
    font-size: 1rem;
  }

  .about-section-with-image .image-column {
    position: relative;
    height: 200px;
    /* fixed height for mobile */
  }

  .about-section-with-image .image-column img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .contact-form-section,
  .solutions,
  .gd-intro,
  .advisory-section {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .blog-banner {
    width: 100%;
    display: grid;
    place-items: center;
    height: 20vh;
    padding-left: unset;
    margin-bottom: unset;
  }
}

.mb-1r {
  margin-bottom: 1rem;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.column h4 {
  margin-bottom: 1rem;
}

.column ul li {
  margin-bottom: 0.5rem;
}
.logo-text-position {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  max-height: 100px;
  margin-bottom: 8px;
}

/* === ADDRESS CARD STYLES - SEPARATE FROM EXISTING CSS === */
.address-card-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #800000 0%, #764ba2 100%);
}

.address-business-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.address-business-card:hover {
    transform: translateY(-5px) rotateX(5deg);
}

.address-business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 100%;
    animation: address-shimmer 3s ease-in-out infinite;
}

@keyframes address-shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.address-company-logo {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.address-business-card:hover .address-company-logo {
    transform: scale(1.1) rotate(5deg);
}

.address-section-heading {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
}

.address-section-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
}

.address-details-container {
    margin-bottom: 30px;
}

.address-detail-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.address-detail-block:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(8px);
    border-color: rgba(102, 126, 234, 0.3);
}

.address-detail-block .address-symbol {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-detail-block .address-content {
    color: #4a5568;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

.address-phone-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-phone-line {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.address-phone-line:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.address-phone-line .address-symbol {
    font-size: 18px;
    flex-shrink: 0;
}

.address-phone-line .address-number {
    color: #2d3748;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Responsive Design for Address Card */
@media (max-width: 768px) {
    .address-business-card {
        padding: 40px 30px;
        margin: 15px;
    }
    
    .address-section-heading {
        font-size: 24px;
    }
    
    .address-detail-block, .address-phone-line {
        padding: 16px;
    }
    
    .address-detail-block .address-content, .address-phone-line .address-number {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .address-business-card {
        padding: 30px 20px;
    }
    
    .address-section-heading {
        font-size: 22px;
    }
    
    .address-detail-block {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .address-phone-container {
        gap: 12px;
    }
    
    .address-company-logo {
        font-size: 40px;
    }
}