/* Fonts */
/* :root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 
  "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Nunito", sans-serif;
}  */

:root {
  --default-font: Georgia, serif;
  --heading-font: Georgia, serif;
  --nav-font: Georgia, serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #D72638;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following colo variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #D72638;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #D72638;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #252525;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #D72638;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #D72638;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding-top: 70px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #D72638;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #D72638;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 30px;
  padding-bottom: 30px;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

.footer .footer-about .logo {
  line-height: 1;
  /* margin-bottom: 25px; */
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# whatsapp and scroll-top
--------------------------------------------------------------*/
.floating-btn {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

/* WhatsApp button appears first (higher) */
.whatsapp-btn {
  background-color: #25D366;
  bottom: 70px;
  /* Reduced from 90px */
  right: 20px;
}

/* Scroll-to-top appears below WhatsApp */
.scroll-top-btn {
  background-color: #dc3545;
  bottom: 20px;
  /* Reduced from 30px */
  right: 20px;
  font-size: 24px;
}

/* Hover effect */
.floating-btn:hover {
  transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .floating-btn {
    width: 40px;
    height: 40px;
    right: 15px;
  }

  .whatsapp-btn {
    bottom: 60px;
    /* Reduced from 80px */
  }

  .scroll-top-btn {
    bottom: 10px;
    /* Reduced from 20px */
    font-size: 20px;
  }

  .floating-btn img {
    width: 20px;
    height: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  /*transition: all 0.6s ease-out;*/
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  /*padding-bottom: 40px;*/
  position: relative;
}

.section-title h2 {
  text-transform: uppercase;
  /* padding-bottom: 20px; */
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 10%;
  height: 4px;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  border-radius: 4px;
  animation: animateLine 2s ease-in-out infinite alternate;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  gap: 20px;
}

.about-text,
.about-image {
  flex: 1 1 360px;
  z-index: 1;
}

.about-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
}

.about-text h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  border-radius: 4px;
  animation: animateLine 2s ease-in-out infinite alternate;
}

@keyframes animateLine {
  0% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.6;
  }

  100% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: 1;
  }
}

.about-text p {
  margin-bottom: 18px;
  /* font-size: ; */
  line-height: 1.5;
}

.download-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  font-weight: bold;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(215, 38, 56, 0.3);
}

.download-btn:hover {
  background: linear-gradient(135deg, #a61d2b, #911725);
  transform: scale(1.07);
  box-shadow: 0 12px 24px rgba(215, 38, 56, 0.5);
  color: #fff;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: floatImg 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23D72638" width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><polygon points="50,0 93,25 93,75 50,100 7,75 7,25" opacity="0.15"/></svg>') no-repeat center;
  background-size: contain;
  z-index: 1;
  animation: rotateHex 18s linear infinite;
}

.about-image::before {
  top: -30px;
  left: -30px;
}

.about-image::after {
  bottom: -30px;
  right: -30px;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateHex {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.background-blur {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #D72638;
  filter: blur(120px);
  opacity: 0.2;
  animation: moveBlur 12s ease-in-out infinite alternate;
  z-index: 0;
}

.background-blur.one {
  top: 20%;
  left: 10%;
}

.background-blur.two {
  bottom: 20%;
  right: 10%;
}

@keyframes moveBlur {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, -30px);
  }
}

@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    /* text-align: center; */
  }
}
@media (max-width: 768px) {
  .about-section {
    /*flex-direction: column;*/
    text-align: center;
  }

  .about-image::before,
  .about-image::after {
    width: 60px;
    height: 60px;
  }

  .background-blur {
    display: none;
  }
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* .team .team-member {
  background-color: var(--surface-color); 
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
  height: 311px;
   background: #f9f9f9 url('https://www.transparenttextures.com/patterns/cubes.png');
  background-repeat: repeat;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 15px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 19px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
} */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-container {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 4px;
  font-weight: 400;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 8px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.form-group textarea {
  height: 120px;
}

button[type="submit"] {
  width: 100%;
  background-color: #D72638;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #D72638;
}

@media (max-width: 320px) {
  .contact-container {
    padding: 20px;
  }

  .contact-container h2 {
    font-size: 22px;
  }
}

/* add css */

.footer-dropdown {
  position: relative;
  display: inline-block;
}

.footer-dropdown p {
  cursor: pointer;
  border-radius: 5px;
}

.footer-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1;
  margin-left: 10px;
}

.footer-dropdown-content a {
  color: black;
  padding: 4px 8px;
  text-decoration: none;
  display: block;
}

.footer-dropdown-content a:hover {
  background-color: #ddd;
}

.footer-dropdown:hover .footer-dropdown-content {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 320px) {
  .footer-dropdown-content {
    width: 100%;
  }

  .footer-dropdown-content {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .branches-row {
    flex-direction: column;
  }
}

.footer-dropdown {
  position: relative;
  display: inline-block;
}

.footer-dropdown p {
  cursor: pointer;
  border-radius: 5px;
}

.footer-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1;
  margin-left: 10px;
}

.footer-dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
}

.footer-dropdown-content a:hover {
  background-color: #ddd;
}

.footer-dropdown:hover .footer-dropdown-content {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-dropdown-content {
    min-width: 40%;
  }
}
 /* video section */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}
.overlay-content {
  color: white;
  max-width: 63%;
}
.overlay-content h1 {
  font-size: 4rem;
}
.btn {
  padding: 10px 20px;
  font-size: 1rem;
  background: transparent;
  color: #fff;
  border: 2px solid #D72638;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
   background: linear-gradient(135deg, #D72638, #a61d2b);
  color: white;
}
@media (max-width: 1024px) {
  .video-overlay {
    justify-content: center;
    padding: 20px;
    height: 98.5%;
  }
.overlay-content {
  color: white;
  max-width: 80%;
}
}
@media(max-width: 786px) {
  .video-overlay {
    justify-content: center;
    padding: 20px;
    height: 98.5%;
  }
  .overlay-content {
    max-width: 70%;
  }
  .overlay-content h1 {
    font-size: 1rem;
  }
  .overlay-content p {
    font-size: 14px;
  }
  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media(max-width: 480px) {
    .video-overlay {
    justify-content: center !important;
    padding: 20px !important;
    height: 97% !important;
  }

  .overlay-content {
    /* max-width: 70%; */
    text-align: center !important;
  }

  .overlay-content h1 {
    font-size: 15px !important;
  }
  .overlay-content p {
    font-size: 12px !important;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}
@media(max-width: 320px) {
    .overlay-content p {
    font-size: 10px !important;
  }
  .btn {
    font-size: 0.85rem;
    padding: 4px 7px;
  }
}

.infrastructure-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.infrastructure-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.infrastructure-image {
  flex: 1 1 45%;
}

.infrastructure-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.infrastructure-content {
  flex: 1 1 50%;
}

.infrastructure-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.infrastructure-content h2 span {
  color: #0c1a4b;
}

.infrastructure-content ul {
  list-style: disc;
  padding-left: 20px;
  color: #000;
  line-height: 1.7;
  font-size: 16px;
}

.infrastructure-content li strong {
  /* color: #0c1a4b; */
  color: #000;
}

@media (max-width: 768px) {
  .infrastructure-grid {
    flex-direction: column;
  }

  .infrastructure-content h2 {
    font-size: 24px;
  }

  .infrastructure-content ul {
    font-size: 15px;
  }
}


.services-section {
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.heading-services {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 25px;
}

.services-section .card-services {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.services-section .card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 2.5px solid #D72638;
  background: #fff url('https://www.transparenttextures.com/patterns/cubes.png');
}

.services-section .card:hover {
  transform: translateY(-8px);
}

.services-section .card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}

.services-section .card h3 {
  color: #D72638;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-section .card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 500px) {
  .services-section .card {
    padding: 20px 15px;
  }

  .services-section .card h3 {
    font-size: 16px;
  }

  .services-section .card p {
    font-size: 14px;
  }
}


.v-section {
  padding: 20px 20px 40px;
  max-width: 1100px;
  margin: auto;
}

.mission-section {
   background: linear-gradient(145deg, #fff5f5, #fde8ea);
  /* background: #fff url('https://www.transparenttextures.com/patterns/cubes.png'); */
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-section::before,
.mission-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(215, 38, 56, 0.06);
  border-radius: 50%;
  z-index: 0;
}

.mission-section::before {
  top: -80px;
  left: -80px;
}

.mission-section::after {
  bottom: -80px;
  right: -80px;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.v-card {
  background: #fff url('https://www.transparenttextures.com/patterns/cubes.png');
  padding: 35px;
  border-radius: 16px;
  /* border: 3px solid #D72638; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.v-card:hover {
  transform: translateY(-10px);
}

.v-card h4 {
  color: #D72638;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold !important;
}

.v-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 768px) {
  .v-card {
    padding: 25px;
  }

  .v-section h2 {
    font-size: 1.8rem;
  }
}

.v-section {
  position: relative;
}

.v-section h2 {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v-section h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 10%;
  height: 4px;
  background: linear-gradient(135deg, #D72638, #a61d2b);
  border-radius: 4px;
  animation: animateLine 2s ease-in-out infinite alternate;
}