@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset / Normalize basic browser styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root variables for easy theming */
:root {
  --primary-color: #1E47A7;
  --secondary-color: #f4f4f4;
  --accent-color: #1b8754;
  /* Added since you use it */
  --text-color: #333;
  --text-light: #666;
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Inter', sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}


#contact-form {
  scroll-margin-top: 100px; /* adjust for your fixed header height */
}

/* Body defaults */
body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: #fff;
  line-height: 1.6;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 0.5em;
}

/* Paragraphs */
p {
  margin-bottom: 1em;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: darken(var(--primary-color), 10%);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Lists */
ul {
  list-style: none;
}

/* Top Bar */
.top-bar {
  background-color: #fff;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
}

.social-link {
  color: #6c757d;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #e67e22;
}

.top-bar i {
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: #fff;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px #697178 solid;
}

.navbar {
  padding: 0;
}

/* Logo */
.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50 !important;
  text-decoration: none;
}

.logo-icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  color: #2c3e50;
  font-weight: 700;
}

/* Navigation */
.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin: 0 15px;
  padding: 31px 0 !important;
  position: relative;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1E47A7 !important;
}

/* Navbar Brand Logo */
.navbar-brand .logo-icon img {
  height: 85px;
  /* Default logo height */
  width: auto;
  /* Keep aspect ratio */
  display: block;
  /* Remove extra space below image */
}

.navbar-brand .logo-icon {
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .navbar-brand .logo-icon img {
    height: 70px;
  }
}

/* CTA Button */
.btn-consultation {
  background: #1E47A7;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 23px 20px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 25px;
}

.btn-consultation:hover {
  color: #fff;
  background: #003d80;
}

.cta-text {
  text-align: left;
}

.cta-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.cta-phone {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.8;
}

/* Hero Section */
.hero-slider {
  width: 100%;
  height: 600px;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
}

/* Zoom animation when slide is active */
.swiper-slide-active.hero-slide {
  animation: zoomInOnce 10s ease-in-out forwards;
}


@keyframes zoomInOnce {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 110%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  margin-left: 40px;
}

.hero-title {
  font-size: 55px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: #1351D8;
  position: relative;
}

.hero-description {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .top-bar {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 36px;
  }

  .cta-button {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }
}

@media (max-width: 575.98px) {

  .hero-title {
    font-size: 24px;
  }

  .btn-consultation {
    width: 100%;
    justify-content: center;
  }

  .hero-slide {
    height: 100%;
  }

  .swiper-slide-active.hero-slide {
    animation: none;
  }


}

.about-section {
  margin-top: 60px;
  background: #fff;
  padding: 0px;
  margin-bottom: 50px;
}

.about-section .col-lg-4 {
  display: flex;
  flex-direction: column;
  max-height: 550px;
  /* cap height if needed */
}

.about-section .col-lg-4 img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about-section .stats-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  top: -40px;
  /* pulls it up towards the image */
  margin: 0 20px;
  /* side gap inside column */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


.about-section .stats-box .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  color: #1E47A7 !important;
  font-size: 40px;
}

.about-section .stats-box h3 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  color: #0c2e60;
  /* Dark navy text */
}

.about-section .stats-box p {
  margin: 0;
  font-size: 1rem;
  color: #6c757d;
}

.about-section h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1E47A7;
  margin-bottom: 10px;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #132848;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #333;
}

.about-section ul li {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: #4a4a4a;
}

.about-section ul li i {
  color: #d29b1d;
  font-size: 16px;
  margin-top: 5px;
}

.about-section .btn {
  background: #1E47A7;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0;
}

.about-section .btn:hover {
  background: #003d80;
}

/* Base Styles */
.experience-section {
  padding: 30px 0;
  background-color: #ffffff;
}

/* Left Column Styles */
.left-column {
  padding-right: 30px;
}

.section-title {
  /* text-align: justify; */
  font-size: 1.5rem;
  color: #003d80;
  margin-bottom: 30px;
  line-height: 1.3;
  font-style: italic;
  letter-spacing: 2px;
}

.contact-box {
  display: inline-flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #1E47A7;
  border-radius: 8px;
  transition: all 0.3s ease;
}


.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #1351D8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
}

.contact-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

.contact-info p {
  color: #333;
  margin: 0;
}

.quote-icon {
  color: #003d80;
  opacity: 0.4;
  font-size: 3.5rem;
  position: relative;
  top: -22px;
}

/* Right Column Styles */
.right-column {
  padding-left: 30px;
}

.text-block {
  margin-bottom: 20px;
}

.text-block p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .experience-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-box {
    padding: 15px;
  }
}

@media (max-width: 767.98px) {
  .experience-section {
    padding: 40px 15px;
  }

  .col-lg-6 {
    width: 100%;
  }

  .left-column,
  .right-column {
    padding: 0;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

.practice-areas-section {
  background-color: #0b2341;
}

.section-header {
  max-width: 800px;
  margin: 0 auto;
}

.practice-areas-section .icon-box {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.practice-areas-section .custom-card .icon-box i {
  color: #003d80;
}

.practice-areas-section .custom-card h5 {
  color: #003d80;
}

.practice-areas-section .card-link {
  text-decoration: none;
}

.practice-areas-section .custom-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.practice-areas-section .custom-card:hover {
  background-color: #003d80;
  /* Bootstrap blue */
  color: #fff;
}

.practice-areas-section .custom-card:hover .icon-box i,
.practice-areas-section .custom-card:hover h5,
.practice-areas-section .custom-card:hover p {
  color: #fff !important;
}

.practice-areas-section .custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.service-highlight {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  /* light transparent */
  color: #fff;
  /* white text */
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
}

.practice-areas-section .btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.practice-areas-section .btn:hover {
  background: #003d80;
  border: 2px solid transparent;
}

/* Section Styling */
.how-we-work-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #1E47A7;
  background-color: rgba(30, 71, 167, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-title1 {
  color: #003d80;
}

/* Process Steps */
.process-steps {
  margin-top: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 0 20px 20px;
  margin-bottom: 20px;
}

.step-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 71, 167, 0.1);
  color: #1E47A7;
  font-size: 1.5rem;
  border-radius: 10px;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #003d80;
  margin-bottom: 10px;
}

.step-description {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Right Column - Image & CTA */
.image-cta-wrapper {
  position: relative;
  margin-left: 30px;
}

.feature-image {
  margin-bottom: -60px;
  z-index: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.feature-image img {
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.cta-box {
  background-color: white;
  padding: 21px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -6rem;
  margin-left: 10rem;
  /* margin-right: 6px; */
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 350px;
}

.cta-box h3 {
  font-size: 1.3rem;
  color: #0c2e60;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #003d80;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  color: #1351D8;
}

.cta-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .how-we-work-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-cta-wrapper {
    margin-left: 0;
    margin-top: 50px;
  }

  .cta-box {
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .how-we-work-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .process-step {
    flex-direction: column;
    gap: 15px;
  }

  .feature-image {
    margin-bottom: -30px;
  }
}

.notarization-hero {
  position: relative;
  padding: 80px 0;
  background-image: url('../assets/images/cta.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.notarization-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(12, 46, 96, 0.7);
  z-index: 0;
}

.notarization-hero .container {
  position: relative;
  z-index: 1;
}

/* Buttons */
.notarization-hero .cta-button {
  background-color: #1E47A7;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 50px;
  color: #fff;
}

.notarization-hero .cta-button:hover {
  background-color: #0c2e60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notarization-hero .secondary-button {
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.notarization-hero .secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Team Section Styling */
.our-team-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}


/* Team Card Styling */
.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-social-links {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  background: rgba(30, 71, 167, 0.9);
  transition: all 0.3s ease;
}

.team-card:hover .team-social-links {
  bottom: 0;
}

.our-team-section .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: #1E47A7;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.our-team-section .social-link:hover {
  background: #0c2e60;
  color: white;
  transform: translateY(-3px);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0c2e60;
  margin-bottom: 5px;
}

.team-position {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .our-team-section {
    padding: 60px 0;
  }

  .team-img-wrapper img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .our-team-section {
    padding: 50px 0;
  }

  .team-card {
    max-width: 350px;
    margin: 0 auto 30px;
  }
}

/* Feedback Section Background */
.feed-back-section {
  position: relative;
  background: #fff !important;
  /* Replace with your image */
  z-index: 0;
}


/* Ensure all content stays above overlay */
.feed-back-section>* {
  position: relative;
  z-index: 2;
}

.feedback-card {
  min-height: 220px;
  position: relative;
  border-radius: 10px;
}

.feedback-card::after {
  content: "\201D";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  color: #fbb034;
  font-family: serif;
}

.swiper-section {
  position: relative;
  margin-bottom: -5rem;
}

.feedback-card {
  border: 1px solid #ddd;
}

/* Footer Styling */
.site-footer {
  background-color: #0c2e60;
  color: #ffffff;
}

.footer-main {
  background-color: #0c2e60;
  padding: 80px 0;
  /* margin-top: 70px; */
}

.footer-bottom {
  background-color: #1E47A7;
  font-size: 0.9rem;
}

/* Footer Logo */
.footer-logo img {
  transition: all 0.3s ease;
  border-radius: 20px;
}

.footer-logo:hover img {
  opacity: 0.8;
}

/* Footer About */
.footer-about {
  color: #fff;
  line-height: 1.6;
}

/* Social Links */
.site-footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.site-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* .site-footer .social-link:hover {
  background-color: #1E47A7;
  transform: translateY(-3px);
} */

/* Footer Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  position: relative;
}

.divider {
  height: 2px;
  width: 50px;
  background-color: #fff;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  margin-right: 10px;
  color: #fff;
}

/* Footer Bottom */
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    padding: 40px 0;
  }

  .footer-heading {
    font-size: 1.1rem;
  }
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background-color: #254370;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.footer-contact-title {
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
  font-weight: 500;
}

.footer-contact-text {
  margin: 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Hover Effects */
/* .footer-contact-item:hover .footer-contact-icon {
  background-color: #1E47A7;
  transform: scale(1.05);
  transition: all 0.3s ease;
} */

/* .footer-contact-item:hover .footer-contact-title {
  color: #1E47A7;
  transition: color 0.3s ease;
} */

/* Mega Menu Styles */
.mega-menu {
  position: static !important;
}

.mega-menu .dropdown-menu {
  width: 100%;
  padding: 0;
  left: 0 !important;
  right: 0 !important;
  max-height: 80vh;
  overflow-y: auto;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  display: none;
}

.mega-menu:hover .dropdown-menu {
  display: block;
}

.mega-menu-content {
  padding: 20px 0;
  background-color: #fff;
}

.mega-menu-title {
  color: #1E47A7;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: capitalize;
  margin: 15px 15px 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 15px 20px;
}

.mega-menu-list .dropdown-item {
  position: relative;
  padding: 8px 15px 8px 25px;
  color: #333;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: normal;
  text-transform: capitalize;
}

.mega-menu-list .dropdown-item::before {
  content: "\f054";
  /* Unicode for "chevron-right" */
  font-family: "Font Awesome 5 Free";
  /* Required */
  font-weight: 900;
  /* Solid icons require this */
  position: absolute;
  left: 10px;
  color: #1E47A7;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.mega-menu-list .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #1E47A7;
  padding-left: 30px;
}

.mega-menu-list .dropdown-item:hover::before {
  left: 15px;
  color: #0c2e60;
}

/* Center content with max-width */
.mega-menu .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .mega-menu .dropdown-menu {
    max-height: 70vh;
  }
}

@media (max-width: 991.98px) {
  .mega-menu .dropdown-menu {
    max-height: 60vh;
  }
}

@media (max-width: 767.98px) {
  .mega-menu .dropdown-menu {
    max-height: 50vh;
  }

  .mega-menu-title,
  .mega-menu-list {
    margin-left: 10px;
    margin-right: 10px;
  }

  .mega-menu-list .dropdown-item {
    padding-left: 22px;
  }

  .mega-menu-list .dropdown-item::before {
    left: 8px;
  }

  .mega-menu-list .dropdown-item:hover {
    padding-left: 25px;
  }

  .mega-menu-list .dropdown-item:hover::before {
    left: 10px;
  }
}

/* Fullscreen loader wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  /* or any background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hide when loaded */
#loader-wrapper.hidden {
  display: none;
}


/* From Uiverse.io by abrahamcalsin */
.dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: .9s;
  --uib-color: #1E47A7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.text-primary {
  color: #003d80 !important;
}

.footer-main .row {
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 100vh;
  }

  .footer-main .row {
    justify-content: left;
  }

  .navbar-nav .nav-link {
    padding: 15px 0 !important;
  }

  /* Offcanvas Style */
  .offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* hidden */
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 2rem 1.5rem;
    z-index: 1050;
    overflow: auto;
  }

  .offcanvas-menu.show {
    right: 0;
    /* slide in */
  }

  /* Close button inside menu */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    display: block !important;
  }

  .navbar-toggler {
    border: none;
    background: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
}

@media (max-width: 500px) {
  .quote-icon {
    top: 50px;
  }
}

.breadcrumb-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  /* adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* dark overlay for text visibility */
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-content {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}


.service-section {
  padding: 80px 0;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  gap: 30px;
  min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
  width: 350px;
  border-radius: 10px;
  padding: 10px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.service-card,
.contact-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  margin-bottom: 30px;
  padding: 10px;
  border: none;
  border-radius: 10px;
}

.contact-card{
    padding: 20px;
}

.service-card .card-title,
.contact-card .card-title {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: bold;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  background-color: #f8f9fa;
  border-color: var(--primary-color);
}

.service-item.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.service-item span {
  font-weight: 500;
  font-size: 16px;
}

.service-item i {
  font-size: 12px;
}

.contact-section h4 {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 2px;
  width: 22px;
  font-size: 18px;
}

/* Main Content Styles */
.main-content {
  flex: 1;
  overflow: hidden;
}

.hero-section {
  position: relative;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px #bdb6b6 solid;
  /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);*/
}

.service-hero-content {
  padding-top: 30px;
}

.service-hero-content h1 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-hero-content1 h4 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-hero-content p {
  line-height: 1.6;
  font-size: 16px;
}

.servcie-section-title {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.benefits-list h5 {
  margin-bottom: 20px;
}

/* OPC Guidelines Section */
.opc-guidelines {
  background: #f9fafc;
  /* light background for readability */
  padding: 50px 25px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.opc-guidelines .servcie-section-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.opc-guidelines p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.opc-guidelines ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.opc-guidelines ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Circle tick icon for list items */
.opc-guidelines ul li::before {
  content: "\f058";
  /* Font Awesome circle check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
}


/* Features Section */
.features-section {
  padding: 0 0 40px;
}

.features-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.features-image {
  position: relative;
  flex: 1;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #007bff;
  transform: translate(-50%, -50%) scale(1.1);
}

.features-list {
  flex: 1;
}

.features-list>p {
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: bold;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #e3f2fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
  padding: 0 30px 40px;
  border-top: 1px solid #cbcbcb;
  padding-top: 40px;
  border-bottom: 1px solid #cbcbcb;
}

.benefits-list p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefits-list ul {
  list-style: none;
  padding-left: 0;
}

.benefits-list ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
}

.benefits-list ul li::before {
  content: "\f058";
  /* fa-check-circle icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* solid style */
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  /* your theme color */
  font-size: 16px;
}

/* Process Section */
.service-process-section {
  padding: 40px 30px;
  border-top: 1px solid #cbcbcb;
}

.service-process-step {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 220px;
}

.service-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.step-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.step-description {
  font-size: 16px;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 40px 30px;
  border-top: 1px solid #eee;
}

.accordion-button {
  background: #f8f9fa;
  border: none;
  font-weight: 700;
  color: #333;
  font-size: 20px;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #dee2e6;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-body {
  line-height: 1.6;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Conclusion Section */
.conclusion-section {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.conclusion-section .servcie-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.conclusion-section .servcie-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px 0 0;
  border-radius: 2px;
}

.conclusion-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
  }

  .features-content {
    flex-direction: column;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-table thead {
  background: var(--primary-color);
  color: #fff;
  text-align: left;
}

.modern-table th,
.modern-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.modern-table tbody tr:hover {
  background: #f9f9f9;
  transition: 0.2s;
}

.modern-table tbody tr:last-child td {
  border-bottom: none;
}

.breadcrumb-nav .fa-chevron-right {
  font-size: 14px;
  margin: 0 6px;
}

.contact-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, rgba(30, 71, 167, 0.03) 0%, transparent 100%);
}

.contact-info {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info .d-flex {
  padding: 1.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-info h5 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #003D80;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

#contactForm {
  background: white;
  border-radius: 8px !important;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: none;
  padding: 2rem;
}

#contactForm:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.form-label {
  font-weight: 600;
  color: #003D80;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(30, 71, 167, 0.2);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .contact-info .d-flex {
    padding: 1rem;
  }
}
/* Features Section */
.about-features-section .about-feature-box {
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.about-features-section .about-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* .about-features-section .about-feature-box.active {
  background: var(--primary-color);
  color: #fff;
  border-color: #fff;
} */

.about-features-section .about-feature-box i {
  font-size: 32px;
  color: var(--primary-color) !important;
}

.about-features-section .about-feature-box.active i {
  color: var(--primary-color);
}

/* Why Choose Us Section */
.about-why-choose-us {
  background: var(--primary-color);
}

.about-why-choose-us h2 {
  line-height: 1.4;
}

.about-why-choose-us .about-stat-box h3 {
  color: #fff;
  margin-bottom: 5px;
}

.about-btn-warning {
  border: 2px solid #fff;   /* white border */
  color: #fff !important;   /* white text */
  background-color: transparent; /* transparent background */
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about-btn-warning:hover {
  background-color: #fff;   /* fill white on hover */
  color: #000 !important;   /* dark text on hover */
}

.about-features-section{
  position: relative;
  margin-top: -90px;
}

.about-why-choose-us{
  padding: 60px 0 80px;
}





/*new 25.09*/

/*new 26.09*/
/* Scrollable Services Section */
/* ================================
   Footer: Services Scroll Section
   ================================ */
.services-scroll {
    height: 220px;              /* fixed height */
    overflow-y: auto;           /* scroll vertically when overflow */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on mobile */
    padding-right: 8px;
}

/* Scrollbar styling (Chrome, Safari, Edge) */
.services-scroll::-webkit-scrollbar {
    width: 6px;
}
.services-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.services-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.services-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Scrollbar styling (Firefox) */
.services-scroll {
    scrollbar-width: thin;
    scrollbar-color: #9BA9BE #0C2E60;
}

/* Lists inside scroll area */
.services-scroll .footer-links {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.services-scroll .footer-links li {
    margin-bottom: 8px;
}
.services-scroll .footer-links a {
    display: inline-block;
    text-decoration: none;
}

/*new 30.09 */
@media (min-width: 768px) and (max-width: 1200px) {
    .features-content {
        display: flex;
        flex-direction: column; /* stack image and features-list vertically */
        align-items: center;    /* center horizontally */
        gap: 20px;              /* space between image and content */
    }

    .features-image img {
        max-width: 100%;
        height: auto;
    }

    .features-list {
        width: 100%; /* take full width under the image */
    }

    .feature-item {
        display: flex;
        flex-direction: row; /* keep icon and content side by side */
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .feature-icon {
        margin-right: 10px;
        flex-shrink: 0;
    }

    .feature-content h5 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}



