/* Base Styles */
:root {
  --primary-color: #1e3a8a;
  --accent-color: #f97316;
  --dark-color: #1f2937;
  --light-color: #f3f4f6;
  --gray-color: #6b7280;
  --white: #ffffff;
  --success-color: #10b981;
  --warning-color: #fbbf24;
  --error-color: #ef4444;
  --font-family: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --rounded: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--dark-color);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--rounded);
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn--primary:hover {
  background-color: #15306e;
  color: var(--white);
}

.btn--secondary {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn--secondary:hover {
  background-color: #e45a0f;
  color: var(--white);
}

.btn--full {
  width: 100%;
}

/* Section Styling */
section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--gray-color);
  max-width: 70rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--rounded);
  font-family: var(--font-family);
  font-size: 1.6rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}

textarea {
  resize: vertical;
  min-height: 12rem;
}

.form-error {
  color: var(--error-color);
  font-size: 1.4rem;
  margin-top: 0.4rem;
  display: block;
}

/*                                                  Toolbar Styles                                                  */

.toolbar {
  background-color: #2b4591;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001; /* Higher than header to ensure it stays on top */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.small_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.toolbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar__contact {
  display: flex;
  gap: 20px;
}

.toolbar__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar__contact-item i {
  font-size: 14px;
  color: #f4f2ef; /* Accent color */
}

.toolbar__social {
  display: flex;
  gap: 15px;
}

.toolbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.toolbar__social-link:hover {
  background-color: #e18452; /* Accent color */
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Social icon hover colors */
.toolbar__social-link:hover .fa-facebook-f,
.toolbar__social-link:hover .fa-instagram,
.toolbar__social-link:hover .fa-linkedin-in,
.toolbar__social-link:hover .fa-youtube {
  color: #1a1a1a;
}

/*                                      Header Styles                                       */

.header {
  position: fixed;
  top: 40px; /* Height of the toolbar */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header_wrapper {
  display: flex;
  justify-content: flex-start; /* Shift content left */
  align-items: center; /* Vertical alignment */
  padding: 1.6rem 0;
  position: relative; /* For absolute positioning of h1 */
}

/* Logo styling */
.logo_img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 0; /* Remove left margin */
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.logo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo_img img:hover {
  transform: scale(1.05);
}

.header_wrapper h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color, #2b4591);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 0;
  margin: 0; /* Remove default margins */
  position: absolute; /* Position absolutely */
  left: calc(
    85px + 1.5rem + 1rem
  ); /* logo width + logo right margin + extra space */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Perfect vertical centering */
  max-width: calc(
    100% - 85px - 1.5rem - 1rem - 300px
  ); 
}

.header_nav {
  display: flex;
  align-items: center;
  margin-left: auto; /* Push to right */
}

.header_menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header_menu-item {
  position: relative;
}

.header_menu-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-color, #1a1a1a);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.header_menu-link:hover {
  color: var(--accent-color, #e18452);
}

.header_menu-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color, #e18452);
  transition: all 0.3s ease;
}

.header_menu-link:hover::after {
  width: 100%;
}

/* Hamburger menu */
.header_hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.header_hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color, #2b4591);
  border-radius: 3px;
  transition: all 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

/* Active link styling */
.header_menu-link.active {
  color: var(--accent-color, #e18452);
}

.header_menu-link.active::after {
  width: 100%;
}

/* Hamburger menu active state */
.header_hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header_hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*                                      Header Styles                                       */
.header {
  position: fixed;
  top: 40px; /* Height of the toolbar */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header_wrapper {
  display: flex;
  justify-content: flex-start; /* Shift content left */
  align-items: center; /* Vertical alignment */
  padding: 1.6rem 0;
  position: relative; /* For absolute positioning of h1 */
}

/* Logo styling */
.logo_img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 0; /* Remove left margin */
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.logo_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo_img img:hover {
  transform: scale(1.05);
}

.header_wrapper h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color, #2b4591);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 0;
  margin: 0; /* Remove default margins */
  position: absolute; /* Position absolutely */
  left: calc(85px + 1.5rem + 1rem); /* logo width + logo right margin + extra space */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Perfect vertical centering */
  max-width: calc(100% - 85px - 1.5rem - 1rem - 300px);
}

.header_nav {
  display: flex;
  align-items: center;
  margin-left: auto; /* Push to right */
}

.header_menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header_menu-item {
  position: relative;
}

.header_menu-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-color, #1a1a1a);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.header_menu-link:hover {
  color: var(--accent-color, #e18452);
}

.header_menu-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color, #e18452);
  transition: all 0.3s ease;
}

.header_menu-link:hover::after {
  width: 100%;
}

/* Hamburger menu */
.header_hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.header_hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color, #2b4591);
  border-radius: 3px;
  transition: all 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

/* Active link styling */
.header_menu-link.active {
  color: var(--accent-color, #e18452);
}

.header_menu-link.active::after {
  width: 100%;
}

/* Hamburger menu active state */
.header_hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header_hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/*                                              Hero Section Styles                                       */

.hero {
  position: relative;
  height: 120vh;
  min-height: 60rem;
  /* background-image: url("https://images.unsplash.com/photo-1688398658165-9f404b8617d3?q=80&w=3087&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); */
  background-image: url("https://images.unsplash.com/photo-1732812606620-76b62e4f263e?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTk2fHxzaW1wbGUlMjBkYWlseSUyMHVzYWdlcyUyMGluZGlhbiUyMGNhcnxlbnwwfHwwfHx8Mg%3D%3D");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: calc(
    40px + 85px + 3.2rem
  ); /* toolbar height + header height + header padding */
  margin-top: 0; /* Remove any default margin */
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.4rem;
  color: var(--white, #ffffff);
}

.hero__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  animation: fadeInDown 1s ease;
}

.hero__subtitle {
  font-size: 2rem;
  margin-bottom: 3.2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero .btn {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger menu active state */
.header_hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header_hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*                                       Services Section Styles                              */

.services {
  background-color: #f8fafc;
  padding: 8rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 3px;
  background-color: var(--accent-color);
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--gray-color);
  max-width: 60rem;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.service-card {
  background-color: var(--white, #ffffff);
  border-radius: var(--rounded, 8px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 6px rgba(0, 0, 0, 0.1));
  transition: var(--transition, all 0.3s ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card__image {
  height: 25rem;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition, all 0.3s ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__content {
  padding: 2.4rem;
}

.service-card__title {
  font-size: 2.4rem;
  color: var(--primary-color, #1e3a8a);
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.service-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.4rem;
  height: 3px;
  background-color: var(--accent-color, #3b82f6);
}

.service-card__list {
  margin-bottom: 2.4rem;
  padding-left: 0;
  list-style: none;
}

.service-card__list li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: var(--dark-color, #1f2937);
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--accent-color, #3b82f6);
  border-radius: 50%;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: var(--rounded, 8px);
  transition: var(--transition, all 0.3s ease);
  cursor: pointer;
  border: none;
}

.btn--secondary {
  background-color: var(--accent-color, #3b82f6);
  color: var(--white, #ffffff);
  margin-right: 1rem;
}

.btn--secondary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*                                   About Section Styles                                   */

.about {
  background-color: #f8fafc;
  padding: 8rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3.6rem;
  color: var(--primary-color, #1e3a8a);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  display: block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 3px;
  background-color: var(--accent-color, #3b82f6);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--gray-color, #64748b);
  font-weight: 500;
  margin-bottom: 6rem;
}

.about__wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4.8rem;
  align-items: center;
}

.about__content {
  padding-right: 2.4rem;
}

.about__text {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  color: var(--dark-color, #1f2937);
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__image {
  position: relative;
  height: 100%;
  min-height: 40rem;
  border-radius: var(--rounded, 8px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 6px rgba(0, 0, 0, 0.1));
}

.about__image::after {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -1.6rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color, #3b82f6);
  border-radius: var(--rounded, 8px);
  z-index: -1;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image img {
  transition: transform 0.7s ease;
}

/*                                    Staff Section Styles                                    */

.staff-section {
  text-align: center;
  padding: 60px 0;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.staff-intro {
  max-width: 800px;
  margin: 0 auto 50px;
}

.staff-intro h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;

}

.staff-intro h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f97316;
}

.staff-intro p {
  font-size: 1.8rem;
  color: #555;
}

.staff-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  margin-top: 40px;
}

.stat-card {
  background-color: white;
  border-radius: 50%; /* Make cards circular */
  padding: 0; /* Remove padding */
  width: 220px;
  height: 220px; /* Equal height for perfect circle */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
  z-index: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.stat-title {
  font-size: 1.6rem;
  color: #f97316;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/*                                    Testimonials Section Styles                                    */

.testimonials {
  background-color: var(--white);
}

.testimonials__slider {
  max-width: 76.8rem;
  margin: 0 auto;
  position: relative;
}

.testimonials__container {
  position: relative;
  height: 30rem;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  border-radius: var(--rounded);
  padding: 3.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card--active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.testimonial-card__content {
  flex-grow: 1;
}

.testimonial-card__content p {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding: 0 2.4rem;
}

.testimonial-card__content p::before,
.testimonial-card__content p::after {
  content: '"';
  font-size: 4.8rem;
  color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-card__content p::before {
  top: -2rem;
  left: 0;
}

.testimonial-card__content p::after {
  bottom: -4rem;
  right: 0;
}

.testimonial-card__author {
  margin-top: 2.4rem;
  text-align: right;
}

.testimonial-card__author h4 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.testimonial-card__author p {
  font-size: 1.4rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.testimonials__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.2rem;
}

.testimonials__btn {
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.8rem;
  transition: var(--transition);
}

.testimonials__btn:hover {
  color: var(--accent-color);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0 1.6rem;
}

.testimonials__dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot--active {
  background-color: var(--primary-color);
}

/*                                      Company Details Styles                                      */

.emergency-services {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

/* Carousel Container */
.emergency-carousel-container {
  position: relative;
  padding: 0 50px;
  margin-top: 30px;
  overflow: hidden;
}

.emergency-carousel {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 -15px;
  will-change: transform;
}

.emergency-card {
  min-width: calc(33.333% - 30px);
  flex: 0 0 calc(33.333% - 30px);
  margin: 0 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 380px; /* Fixed height for rectangular shape */
}

.emergency-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.emergency-card-top {
  position: relative;
  height: 10px;
  margin-bottom: 40px;
}

.shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.number {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  top: 0px;
  left: 30px;
  border: 3px solid;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.emergency-card-content {
  padding: 17px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.icon {
  display: inline-block;
  margin-bottom: 20px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.card-title a:hover {
  color: #ff5722;
}

.text {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #7e22ff;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}

.link-btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.link-btn:hover i {
  transform: translateX(5px);
}

#banner3 {
  height: 250px;
  width: 420px;
}
#banner4 {
  height: 218px;
  width: 420px;
  max-width: none;
  max-height: none;
  position: relative;
  top: 52px;
}

/* Color Variations */

.bg-primary {
  background-color: #7e22ff;
}

.bg-primary2 {
  background-color: #2196f3;
}

.bg-primary3 {
  background-color: #c52311;
}
.bg-primary4 {
  background-color: #4caf50;
}

.text-primary {
  color: #7e22ff;
}

.text-primary2 {
  color: #2196f3;
}

.text-primary3 {
  color: #c52311;
}

.text-primary4 {
  color: #4caf50;
}

.border-primary {
  border-color: #ff5722;
}

.text-white {
  color: #fff;
}

.border-white {
  border-color: #fff;
}

/* Navigation Arrows */
.emergency-carousel-arrows {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.emergency-prev-btn,
.emergency-next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ff5722;
  color: #ff5722;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
  padding: 0;
}

.emergency-prev-btn:hover,
.emergency-next-btn:hover {
  background-color: #ff5722;
  color: #fff;
}

.emergency-prev-btn:disabled,
.emergency-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* #banner4 {
  height: 220px;
  width: 402px;
  max-width: none;
  max-height: none;
  position: relative;
  top: 12px;
  margin-left: 12px;
} */

/*                                     Contact Section Styles                                     */

.contact {
  background-color: var(--white);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4.8rem;
}

.contact__info {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3.2rem;
  border-radius: var(--rounded);
  height: fit-content;
}

.contact__info-item {
  margin-bottom: 2.4rem;
}

.contact__info-item:last-child {
  margin-bottom: 0;
}

.contact__info-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-color);
}

.contact__info-item p {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.contact__form-container {
  background-color: #f8fafc;
  padding: 3.2rem;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group:nth-child(5) {
  grid-column: span 2;
}

.contact__form .btn {
  grid-column: span 2;
  margin-top: 1.6rem;
}

/*                                      Map Styles                                      */

.map-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/*                                      floating styles                                      */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-btn i {
  font-size: 24px;
  color: white;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.floating-btn--call {
  background-color: #ff5722;
}

#call {
  background-color: var(--primary-color);
}

.floating-btn--whatsapp {
  background-color: #25D366;
}

/* Glowing animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

.floating-btn--whatsapp {
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  padding: 20px 0;
  background: rgba(17, 180, 245, 0.17) !important;
}

.carousel-track {
  display: flex;
  width: max-content;
  /* Animation will be applied via JavaScript */
}

.carousel-track img {
  width: auto;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0
}

/* Pause on hover (optional) */
.carousel-container:hover .carousel-track {
  animation-play-state: paused !important;
}


/*                                      Footer Styles                                      */

.footer {
  background-color: #1E3A8A;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: #ffed00;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ccc;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 10px;
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1da1f2;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon.facebook {
  background-color: #3b5998;
}

.social-icon.instagram {
  background-color: #e1306c;
}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #333;
  color: var(--white);
  font-size: 14px;
  width: 100%;
}

.payment-logo {
  max-width: 80px;
  margin-top: 10px;
}