html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }
  .dashboard-container {
    max-width: 100vw;
    overflow-x: hidden;
  }


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: #1a365d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0px;
}

.navbar-logo {
  height: 70px;
  object-fit: contain;
}

.navbar-contact {
  display: flex;
  padding-left: 10px;
  align-items: center;
  gap: 5px;
}

.phone-icon {
  color: #d4af37;
  font-size: 14px;
}
.fax-icon {
  color: #d4af37;
  font-size: 14px;
}

.phone-numbers {
  color: #d4af37;
  font-size: 14px;
}
.fax-numbers {
  color: #d4af37;
  font-size: 14px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-links a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 500;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease-in-out;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a:hover {
  color: #e4bb21; /* Slightly darker gold on hover */
}

.connect-btn {
  color: #1a365d !important;
  background-color: #d4af37 !important;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  font-weight: bold !important;
  text-align: center  !important;
  display: inline-block !important;
}

.hero-section {
  position: relative;
  padding: 100px 5%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

/* Background Image + Overlay */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,35,66,0.85) 0%, rgba(10,35,66,0.7) 100%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.hero-text-container h1 {
  font-size: 3.5rem;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-text-container p {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-text-container p span {
  color: rgb(255, 255, 255);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #d4af37;
  color: #0a2342;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  user-select: none;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #d4af37;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: #d4af37;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s infinite;
}

.why-choose-section {
  background: #fdf9f1;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.why-choose-decor {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #0a2342;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.section-header h2 span.highlight {
  color: rgb(212, 175, 55);
}

.section-header h2 span.underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d4af37;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
}

.section-header p span {
  color: rgb(0, 51, 102);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.stats-cards {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.card {
  background-color: #003366;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10,35,66,0.1);
  border: 1px solid rgba(10,35,66,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.card .number {
  font-size: 3rem;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1;
}

.card p {
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
}

.card .underline {
  width: 40px;
  height: 3px;
  background-color: #d4af37;
  margin: 15px auto 0;
}

.benefits-list {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(10,35,66,0.1);
  border: 1px solid rgba(10,35,66,0.05);
}

.benefits-list h3 {
  color: #0a2342;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.benefits-list h3 span.highlight {
  color: rgb(212, 175, 55);
}

.benefits-list h3 span.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #d4af37;
}

.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(10,35,66,0.05);
  display: flex;
  align-items: flex-start;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li .icon-wrapper {
  background-color: rgba(212,175,55,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefits-list li .icon-wrapper svg path {
  fill: #d4af37;
}

.benefits-list li h4 {
  color: #d4af37;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.benefits-list li p {
  color: #0a2342;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Services Section Styles */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0, 10, 39, 0.8)), url('assets/ServiceBG.jpg') center/cover fixed no-repeat;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-title {
  font-size: 3.2rem;
  color: #d4af37;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 1.5px;
  animation: fadeInDown 1s ease-in-out;
}

.services-intro {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
  opacity: 0.9;
  animation: fadeInUp 1s ease-in-out;
}

/* Cards Grid */
.modern-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 20px 0;
}

/* Individual Card */
.modern-card {
  background: rgba(26, 54, 93, 0.95);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s ease-in-out;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Card Icon */
.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modern-card:hover .card-icon {
  transform: scale(1.1);
}

/* Card Content */
.card-content h3 {
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 15px;
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  transition: width 0.4s ease;
}

.modern-card:hover .card-content h3::after {
  width: 100px;
}

.card-content h4 {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin-bottom: 15px;
  font-weight: 120;
  line-height: 1.4;
  font-style: italic;
}

.card-content p {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Call-to-Action Section */
.modern-cards-grid > h2,
.modern-cards-grid > h3,
.modern-cards-grid > p,
.modern-cards-grid > ul {
  grid-column: 1 / -1;
  text-align: center;
}

.modern-cards-grid > h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin: 60px 0 20px;
  font-weight: 700;
}

.modern-cards-grid > h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  font-style: italic;
}

.modern-cards-grid > p {
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.modern-cards-grid > ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
}

.modern-cards-grid > ul li {
  color: #ffffff;
  font-size: 1.1rem;
  padding: 12px 25px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modern-cards-grid > ul li:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.modern-cards-grid > ul li a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.modern-cards-grid > ul li a:hover {
  color: #f1c40f;
}

/* Call-to-Action Button */
.opt-service-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.opt-service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #003da7, #002e7d);
  color: #ffd700;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 61, 167, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.opt-service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.5s ease;
  transform: skewX(-20deg);
}

.opt-service-btn:hover::before {
  left: 100%;
}

.opt-service-btn:hover {
  background: linear-gradient(135deg, #012667, #001f5b);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2.4rem;
  }

  .modern-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .modern-card {
    padding: 30px;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.opt-service-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}
.opt-service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #003da7, #002e7d); /* Rich professional blue */
  color: #ffd700; /* Classic gold text */
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 61, 167, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Optional hover effect */
.opt-service-btn:hover {
  background: linear-gradient(135deg, #012667, #001f5b);
  box-shadow: 0 10px 24px rgba(0, 61, 167, 0.5);
  transform: translateY(-2px);
}


.opt-service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.5s ease;
  transform: skewX(-20deg);
}

.opt-service-btn:hover::before {
  left: 100%;
}

.opt-service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.full-width-text {
  grid-column: 1 / -1;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
  animation: fadeInUp 1s ease-in-out;
}

.full-width-text h2 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.full-width-text h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  font-style: italic;
  opacity: 0.95;
}

.full-width-text p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.6;
  opacity: 0.9;
}

.full-width-text ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
}

.full-width-text ul li {
  color: #ffffff;
  font-size: 1.1rem;
  padding: 12px 25px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.full-width-text ul li:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.full-width-text ul li a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.full-width-text ul li a:hover {
  color: #f1c40f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .full-width-text h2 {
    font-size: 2.2rem;
  }

  .full-width-text h3 {
    font-size: 1.5rem;
  }

  .full-width-text p {
    font-size: 1rem;
  }

  .full-width-text ul {
    flex-direction: column;
    gap: 15px;
  }

  .full-width-text ul li {
    width: 100%;
    text-align: center;
  }
}



/* Contact Section */

/* 
//For extreme small screen devices */

@media (max-width: 480px) {
  .contact-form-box,
  .contact-info-box {
    padding: 20px 10px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 14px;
    padding: 12px;
  }
}


.footer-container {
  background: linear-gradient(135deg, #0a2342 0%, #1a4b8c 100%);
  color: white;
  padding: 60px 5% 30px;
  font-family: Arial, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-company-info {
  flex: 1;
  min-width: 250px;
}

.footer-logo-img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-company-description {
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

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

.footer-social-link {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-links-column {
  flex: 1;
  min-width: 150px;
}

.footer-column-title {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
  content: "";
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
}

.footer-contact-column {
  flex: 1;
  min-width: 250px;
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: #d4af37;
  flex-shrink: 0;
}

.footer-contact-text {
  margin: 0;
  color: white;
  line-height: 1.4;
}

.footer-contact-text span {
  color: white;
}

.footer-contact-icon svg {
  stroke: #d4af37;
}

.footer-contact-text br {
  line-height: 1.4;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}


/* Scroll wheel animation */
@keyframes scrollIndicator {
  0% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0;
  }
  100% {
    top: 6px;
    opacity: 1;
  }
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #d4af37;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a365d;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    padding: 15px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .navbar-links a:last-child {
    border-bottom: none;
  }

  .connect-btn {
    margin-top: 20px;
    text-align: center !important;
  }

  /* Hamburger Animation */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hide phone numbers on mobile */
  .navbar-contact {
    display: none;
  }

  /* Adjust logo size */
  .navbar-logo {
    height: 50px;
  }

  /* Show phone number inside active mobile menu */
  .navbar-links.active .navbar-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 15px;
  }
  
  .navbar-links.active .navbar-contact .phone-numbers {
    margin-top: 5px;
    font-size: 1rem;
  }
  
  .navbar-links.active .navbar-contact .phone-icon {
    font-size: 1rem;
  }
}

/* Add overlay when menu is open */
@media (max-width: 768px) {
  .navbar-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .navbar-links.active::before {
    opacity: 1;
    visibility: visible;
  }
}

/* Contact Section Base Styles */
.contact-section {
  padding: 80px 5%;
  background: #ecebe7;
}

/* Layout Container */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

/* Contact Form Box */
.contact-form-box {
  flex: 1;
  min-width: 400px;
  background: #fff;
  padding: 45px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* Contact Info Box */
.contact-info-box {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* Title */
.form-title,
.info-title {
  font-size: 32px;
  color: #e4bb21;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  text-align: left;
}

.form-title .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
}

/* Input Group Row */
.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
  width: 100%;
}

.input-row .input-group {
  flex: 1;
  margin-bottom: 0;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #34495e;
  font-size: 1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  background-color: #fdfdfd;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #34495e;
  cursor: pointer;
  font-size: 1rem;
}

.radio-group input[type="radio"] {
  width: auto;
  margin-right: 5px;
}

/* Submit Button */
.submit-btn {
  display: block;
  width: 100%;
  background-color: #d4af37;
  color: #0a2342;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  background-color: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Logo Box */
.logo-box {
  margin-bottom: 20px;
}

.logo-box img {
  max-width: 100%;
  height: 100%;
}

/* Info Card and Items */
.info-card {
  width: 100%;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  width: 40px;
  height: 40px;
  background-color: #d4af37;
  color: #0a2342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
  font-size: 18px;
  color: #0c2441;
  margin: 0 0 5px 0;
}

.info-item p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Social Section */
.social-section h3 {
  font-size: 20px;
  color: #0a2342;
  margin-bottom: 15px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons .icon {
  width: 45px;
  height: 45px;
  background-color: #0a2342;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons .icon:hover {
  background-color: #1a365d;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .contact-form-box,
  .contact-info-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 35px 30px;
  }

  .form-title,
  .info-title {
    font-size: 28px;
    text-align: center;
  }

  .form-title .underline {
    left: 50%;
    transform: translateX(-50%);
  }

  .input-row {
    flex-direction: column;
    gap: 15px;
  }

  .info-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .info-item .icon {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 15px;
  }

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

  .form-title,
  .info-title {
    font-size: 24px;
  }

  .input-group label {
    font-size: 0.9rem;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .logo-box img {
    max-width: 150px;
  }

  .info-item h3 {
    font-size: 16px;
  }

  .info-item p {
    font-size: 14px;
  }

  .social-section h3 {
    font-size: 18px;
  }

  .social-icons .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Smooth Transitions */
.contact-form-box,
.contact-info-box,
.input-group,
.info-item,
.social-icons .icon {
  transition: all 0.3s ease;
}

/* Better Touch Targets */
@media (max-width: 768px) {
  .input-group input,
  .input-group select,
  .input-group textarea,
  .submit-btn,
  .info-item,
  .social-icons .icon {
    min-height: 44px;
  }
}

/* Animation Keyframes */
@keyframes slideInLeft {
  0% { transform: translateX(-80px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(80px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.slide-in-left {
  animation-name: slideInLeft;
}

.slide-in-right {
  animation-name: slideInRight;
}

.about-section {
  background: linear-gradient(135deg, #fffdf6, #fdf9f1);
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.about-left {
  flex: 1.5;
  min-width: 320px;
}

.about-right {
  flex: 1;
  min-width: 300px;
  position: relative;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0a2342;
  position: relative;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: #1a365d;
}

.section-title .underline {
  width: 80px;
  height: 3px;
  background: #1a365d;
  display: block;
  margin-top: 10px;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 20px;
}

.intro-paragraph {
  color: #1a365d;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: #1a365d;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.about-card:nth-child(1) { animation-delay: 0.2s; }
.about-card:nth-child(2) { animation-delay: 0.4s; }
.about-card:nth-child(3) { animation-delay: 0.6s; }

.about-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.about-card .icon {
  font-size: 1.6rem;
  color: #d4af37;
  margin-top: 5px;
}

.about-card h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #d4af37;
}

.about-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.founder-image {
  position: relative;
}

.founder-img {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  margin-bottom: 0px;
}

.founder-bio {
  background: #1a365d;
  padding: 25px;
  border-radius: 0px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
  animation: fadeIn 1s ease-in;
}

.founder-bio h3 {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.founder-bio p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.quote {
  margin-top: 50px;
  padding-left: 25px;
  border-left: 4px solid #d4af37;
  font-style: italic;
  font-size: 1.1rem;
  color: #0a2342;
}

.quote span {
  display: block;
  font-size: 0.95rem;
  color: #888;
  margin-top: 8px;
}

/* New Sections */
.extra-section {
  margin-top: 60px;
}

.extra-section h3 {
  font-size: 1.8rem;
  color: #1a365d;
  margin-bottom: 20px;
  border-left: 5px solid #d4af37;
  padding-left: 15px;
}

.extra-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1a365d;
  margin-bottom: 20px;
}

.extra-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.extra-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 10px;
  color: #0a2342;
  font-size: 1rem;
}

.extra-section ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
  }

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

  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .extra-section h3 {
    font-size: 1.5rem;
  }

  .extra-section ul li {
    font-size: 0.95rem;
  }
}


/* -----------------------------------------------------Why Us------------------------------------------------ */
.why-us-section {
  position: relative;
  padding: 80px 5%;
  background: #f9f8f6;
  overflow: hidden;
}

.why-us-bg-decor {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #e4bb21;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 10px;
  position: relative;
}

.section-header .highlight {
  color: #e4bb21;
}

.section-header .underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e4bb21;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: zoomIn 0.7s ease forwards;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  transform: scale(1); /* Ensure initial scale is 1 */
}

.why-card:hover {
  transform: scale(1.05); /* Hover zoom */
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.why-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #002e7d;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.8s ease;
  will-change: transform;
}

.why-card:hover .icon {
  transform: rotateY(180deg);
}

.why-card h4 {
  font-size: 20px;
  color: #0a2342;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .why-card {
    padding: 30px 20px;
  }

  .why-card h4 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
  }

  .why-card .icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}


/* Footer Social Icons */
.footer-social-icons .icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-social-icons .icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1a365d;
  line-height: 1.6;
}

/* Service Popup Styles */
.service-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.service-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #1a365d;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.service-popup.active .popup-content {
  transform: translateY(0);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.popup-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-title {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.popup-subtitle {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 30px;
}

.popup-body {
  color: #ffffff;
  line-height: 1.8;
}

.popup-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.popup-body ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.popup-body ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.popup-body ul li:before {
  content: "•";
  color: #d4af37;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

/* Scrollbar Styles for Popup */
.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-track {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: #e4bb21;
}

/* Responsive Styles for Popup */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 30px 20px;
  }

  .popup-title {
    font-size: 1.8rem;
  }

  .popup-subtitle {
    font-size: 1.2rem;
  }

  .popup-body p,
  .popup-body ul li {
    font-size: 1rem;
  }
}

/* Add specific styles for cards 4, 5, and 6 */
.modern-card:nth-child(4),
.modern-card:nth-child(5),
.modern-card:nth-child(6) {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.modern-card:nth-child(4):hover,
.modern-card:nth-child(5):hover,
.modern-card:nth-child(6):hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
}


