/* 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: "Montserrat", sans-serif;
  --nav-font: "Open Sans", sans-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: #eab7100A;
  /* 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: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #eab710;
  /* 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 color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #eab710;
  /* 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: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: white;
  /* 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: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(234, 22, 22, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu a:hover {
    color: white;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}






/*--------------------------------------------------------------
# Hero Section Base Styles
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 100vh;
}

/* Video Background */
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Black Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* Adjust opacity as needed */
  z-index: 0;
}

/* Hero Content - Left-aligned */
.hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  text-align: left;
  padding: 2rem;
  /* Corrected to "2rem" */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90vh;
  align-self: flex-start;
  /* This aligns the element to the left */
  margin-left: 1%;
  /* Optional: add extra left margin if needed */
}


.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-text p {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 30px;
  max-width: 80%;
  font-family: 'Roboto', sans-serif;
}

/* About Us Button */
.btn-about-us {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  color: var(--default-color, #fff);
  background: var(--accent-color, #eab710);
  border: 2px solid var(--accent-color, #eab710);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-about-us:hover {
  background: var(--contrast-color, #000);
  color: var(--default-color, #fff);
}

/* Waves SVG (if used) */
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    width: 90%;
    text-align: start;
    padding: 0.5rem;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgb(0, 0, 0);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  color: white;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  color: white;
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.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 .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, white, transparent 0%);
  font-size: 16px;
  color: color-mix(in srgb, white, transparent 0%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: white;
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: white;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  color: white;
}

.footer .footer-links ul li {
  color: white;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--heading-font);
}



.footer-about .sitename {
  color: white;
  font-size: 3svh;
}

.footer .footer-contact p {
  color: white;
  margin-bottom: 5px;
}

.footer .copyright {
  color: white;
  padding-top: 25px;
  padding-bottom: 25px;
  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;
}

/*-----------------------------
   PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  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 Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Global FAQ Section Titles
--------------------------------------------------------------*/
.faq-section-title {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 60px;
  position: relative;
}

.faq-section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.faq-section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.faq-section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section - Responsive
--------------------------------------------------------------*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Default: 2 columns */
  gap: 1rem;
  align-items: stretch;
  margin: 10px 5% 80px 5%;
  /* Adjusted margins for better centering */
}

.service-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 220px;
  /* Minimum height for uniformity */
  height: 100%;
  /* Adaptive height */
}


/* Hover effect for desktop */
@media (min-width: 1024px) {
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2-column layout for tablets */
    margin-bottom: 40px;
  }

  .service-card {
    padding: 1.5rem;
    min-height: 200px;
  }

  .service-card img {
    height: 200px;
  }


}


.service-text {
  flex: 1;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: left;
}

.tags span {
  background: #f1f1f5;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border: 1.5px solid var(--accent-color);
  /* Adding a solid border */
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2-column layout for tablets */
    margin-bottom: 40px;
  }

  .service-card {
    padding: 1.5rem;
    min-height: 200px;
  }

  .service-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* 1-column layout for mobile */
    gap: 1.5rem;
  }

  .service-card {
    flex-direction: column-reverse;
    /* Reverse order: image first */
    text-align: center;
    padding: 1.5rem;
    min-height: auto;
    /* Adaptive height for mobile */
  }

  .service-card img {
    width: 150px;
    margin-left: 1.5rem;
    object-fit: contain;
    align-self: center;
  }
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  font-family: 'Domine', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tags span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  background: #f1f1f5;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  border: 1.5px solid var(--accent-color);
  /* Adding a solid border */
  color: #555;
}


/*--------------------------------------------------------------
# Clients Section Base Styles
--------------------------------------------------------------*/
.clients {
  /* Using a light background and consistent padding/margin */
  padding: 20px 0;
  margin-bottom: 50px;
  background-color: #000000;
}

.clients .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Swiper (Carousel) Specific Styles */
.clients .swiper {
  position: relative;
  padding: 10px 0;
  padding-bottom: 50px;
  /* Adds extra space at the bottom for pagination */
}

.clients .swiper-wrapper {
  height: auto;
  display: flex;
  align-items: center;
}

.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  position: absolute;
  bottom: 0;
  /* Position at the bottom of the swiper container */
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(20px);
  /* Pushes the dots further down */
}

/*--------------------------------------------------------------
# Global Clients Titles
--------------------------------------------------------------*/
.clients-title {
  text-align: center;
  padding-top: 0;
  margin-top: 100px;
  margin-bottom: 50px;
  position: relative;
}

.clients-title h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  /* Using color-mix for background if supported */
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.clients-title p {
  color: var(--heading-color);
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.clients-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
Responsive Breakpoints for Clients Section
--------------------------------------------------------------*/


/* Ultra Wide Desktops (min-width: 1440px) */
@media (min-width: 1440px) {
  .clients {
    margin: 30px 0 0 0;
    padding: 40px 0;
  }

  .clients-title h2 {
    font-size: 13px;
  }

  .clients-title p {
    font-size: 30px;
  }

  .clients .img-fluid {
    max-height: 120px;
  }
}

/* Tablet Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
  .clients {
    padding: 60px 0;
  }

  .clients-title h2 {
    font-size: 18px;
  }

  .clients-title p {
    font-size: 30px;
  }

  .clients .img-fluid {
    max-height: 90px;
  }
}

/* Mobile & Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .clients {
    padding: 50px 0;
  }

  .clients-title h2 {
    font-size: 16px;
  }

  .clients-title p {
    font-size: 28px;
  }

  .clients .img-fluid {
    max-height: 80px;
  }
}

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .clients {
    padding: 10px 0;
  }

  /* Swiper (Carousel) Specific Styles */
  .clients .swiper {
    position: relative;
    padding: 10px 0;
    padding-bottom: 0px;
    /* Adds extra space at the bottom for pagination */
  }

  .clients-title {
    padding-top: 30px;
    margin-bottom: 30px;
  }

  .clients-title h2 {
    font-size: 10px;
    padding: 6px 15px;
    margin-bottom: 10px;
  }

  .clients-title p {
    font-size: 20px;
  }

  .clients .img-fluid {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section Base Styles
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  margin: 150px 0 0 0;
}

.testimonials::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: white;
  padding: 20px;
}

.testimonials .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 26px;
  line-height: 0;
  position: relative;
}

.testimonials .quote-icon-left {
  left: -5px;
}

.testimonials .quote-icon-right {
  right: -5px;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px;
  max-width: 80%;
}

/* Swiper Pagination */
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

/*--------------------------------------------------------------
Responsive Breakpoints
--------------------------------------------------------------*/

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 40px 0;
    margin-top: 100px;
  }

  .testimonials .testimonial-img {
    width: 70px;
    border-width: 4px;
    margin-bottom: 10px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
    max-width: 90%;
  }
}

/* Mobile & Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
    margin-top: 120px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 19px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 13px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
  }
}

/* Tablet Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
  .testimonials .container {
    padding: 0 15px;
  }

  .testimonials {
    margin-top: 130px;
  }

  .testimonials .testimonial-item p {
    max-width: 85%;
  }
}

/* Ultra Wide Desktops (min-width: 1440px) */
@media (min-width: 1440px) {
  .testimonials {
    padding: 100px 0;
    margin-top: 180px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 22px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 16px;
  }

  .testimonials .testimonial-item p {
    font-size: 17px;
    max-width: 70%;
    margin: 0 auto 20px;
  }
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  margin-bottom: 100px;
}

.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.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: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  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;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  margin-bottom: 100px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: black;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Call to action Section
--------------------------------------------------------------*/
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #eab710, #c28808);
  /* Warm Golden Gradient */
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 15px;
  margin: 150px 0px 150px 0px;
  max-width: auto;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary {
  background: #ffffff;
  color: #eab710;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background: #444;
}

.btn-secondary:hover {
  background: white;
  color: #c28808;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}



/*--------------------------------------------------------------
# Technologies Section
--------------------------------------------------------------*/
.technologies {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  /* Allow overflow for tooltip */
  overflow: visible;
}

.technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      #f7d36a 0%,
      /* Light golden */
      #eab710 50%,
      /* Base color */
      #b8860b 100%
      /* Dark golden */
    );
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}

/* Updated Tech Item Image Styles - Default Colored */
.tech-item img {
  width: 100%;
  height: auto;
  max-width: 80px;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* Grayscale and opacity on hover */
.tech-item:hover img {
  filter: grayscale(100%);
  opacity: 0.8;
  transform: scale(1.05);
}

/* Keep tooltip visible and animated */
.tech-item::after {
  content: attr(data-tech);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #eab710;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.tech-item:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
  }

  .tech-item {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
  }

  .tech-item img {
    max-width: 60px;
  }
}

@media (max-width: 480px) {
  .technologies {
    padding: 3rem 1rem;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}















/*--------------------------------------------------------------
# About Section      ABOUT PAGE 
--------------------------------------------------------------*/
.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about .section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 2 Section      ABOUT PAGE 
--------------------------------------------------------------*/
.about-2 .content {
  background-color: var(--surface-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Call To Action Section       ABOUT PAGE 
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}



/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs         ADDED PAGES
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title .container {
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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%);
}



/*--------------------------------------------------------------
# Services Section ( About me )
--------------------------------------------------------------*/
.about-services .services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-services .services .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.about-services .services .services-item .services-icon i {
  font-size: 48px;
}

.about-services .services .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}



/*--------------------------------------------------------------
# Global Timeline Titles
--------------------------------------------------------------*/
.timeline-title {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 60px;
  position: relative;
}

.timeline-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.timeline-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.timeline-title p .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

.timeline h1 {
  text-align: center;
}

.timeline ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* line */
.timeline ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.timeline ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.timeline ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.timeline ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.timeline ul li .title,
.timeline ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.timeline ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.timeline ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* shadows */
.timeline ul li .title::before,
.timeline ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.timeline ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .timeline ul::before {
    grid-column: 2;
  }

  .timeline ul li:nth-child(odd) {
    grid-column: 1;
  }

  .timeline ul li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .timeline ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .timeline ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.timeline .credits {
  margin-top: 1rem;
  text-align: right;
}

.timeline .credits a {
  color: var(--color);
}


/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/


/* Contact Page Specific Styles */
.contact-page-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #f8f9fa;
  /* Example: Light gray background */
  font-family: 'Roboto', sans-serif;
  /* Example: Set default font */
}

.contact-page-wrapper .contact-page-title {
  /* More specific selector */
  background-color: #343a40;
  /* Example: Dark background for page title */
}

.contact-page-wrapper .contact-form-container {
  /* More specific selector */
  border: 1px solid #dee2e6;
  /* Example: Add a border to the form container */
}

.contact-page-wrapper .contact-form-container form {
  background-color: #fff;
  /* Example: White background for the form */
  padding: 20px;
  border-radius: 5px;
}

.contact-page-wrapper .contact-form-container label {
  color: #333;
  /* Example: Dark gray color for labels */
}

.contact-page-wrapper .contact-form-container input[type="text"],
.contact-page-wrapper .contact-form-container input[type="email"],
.contact-page-wrapper .contact-form-container select,
.contact-page-wrapper .contact-form-container textarea {
  border-color: #ced4da;
  /* Example: Light gray border color */
  box-shadow: none;
  /* Example: Remove default box shadow */
}


/* contact us page CSS OF FORM  */


/* .form-row {
  margin-bottom: 20px;
} */

/* 
.label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
} */

.contact-form-container {
  display: flex;
  padding: 30px;
  /* Add padding to all sides */
  /* ... (Other styles) ... */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
    padding: 10px;
    /* Reduce padding on smaller screens */
  }
}

ontact-page-wrapper .contact-column {
  /* More specific selector */
  width: 50%;
  padding: 0 20px;
  /* ... (Other styles) ... */
  font-family: 'Courier New', Courier, monospace;
  /* Example font, adjust as needed */
  color: #333;
  /* Dark gray text color */
}

.contact-column.content.grid-container {
  margin: 40px, 20px;
  padding-top: 20px;
}

.contact-page-wrapper .contact-column h2 {
  /* More specific selector */
  font-size: 2em;
  /* Large heading size */
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-page-wrapper .contact-column p {
  /* More specific selector */
  font-size: 1em;
  /* Regular paragraph size */
  line-height: 1.6;
  /* Comfortable line spacing */
  margin-bottom: 20px;
}


.contact-column {
  width: 50%;
  padding: 0 20px;
  /* Add some space between the columns */
  /* ... (Other styles for columns) ... */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
    /* Stack columns vertically */
  }

  .contact-column {
    width: 100%;
    /* Each column takes full width */
    padding: 0;
    /* Remove padding */
  }
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  /* Keep input fields and labels at 100% width */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.checkbox-group label {
  display: block;
  margin-bottom: 10px;
}

.checkbox-group {
  display: flex;
  /* Enable flexbox layout for columns */
}

.checkbox-column {
  width: 50%;
  /* Each column takes 50% width */
  padding: 0 10px;
  /* Add some padding between columns */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .checkbox-group {
    flex-direction: column;
    /* Stack columns vertically */
  }

  .checkbox-column {
    width: 100%;
    /* Each column takes full width */
    padding: 0;
    /* Remove padding */
  }
}

.contact-left-section {
  margin-top: 30px;
}


.submit-button {
  display: block;
  /* Change to block for full width */
  width: 100%;
  /* Set width to 100% */
  background-color: #dbdb2d;
  margin-top: 15px;
  color: #fff;
  padding: 20px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #cbfe64;
}

/*--------------------------------------------------------------
# Privacy Policy Section
--------------------------------------------------------------*/

/* CSS Styling (same as Terms of Use page) */
.privacy-policy {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 100px;
  color: #333;
}

.privacy-policy h1,
.privacy-policy h2 {
  color: #222;
}

.privacy-policy h1 {
  font-size: 2.5em;
}

.privacy-policy h2 {
  font-size: 1.8em;
  margin-top: 1.5em;
}

.privacy-policy p {
  margin-bottom: 1em;
}

.privacy-policy ul {
  list-style: disc;
  margin-left: 40px;
  margin-bottom: 1em;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}



/*--------------------------------------------------------------
# Terms of Use Section
--------------------------------------------------------------*/

.term-of-use h1,
.term-of-use h2 {
  color: #222;
  /* Slightly darker heading color */
}

.term-of-use h1 {
  font-size: 2.5em;
}

.term-of-use h2 {
  font-size: 1.8em;
  margin-top: 1.5em;
}

.term-of-use p {
  margin-bottom: 1em;
}

.term-of-use ul {
  list-style: disc;
  /* Use bullet points for lists */
  margin-left: 40px;
  margin-bottom: 1em;
}

.term-of-use a {
  color: #007bff;
  /* Blue link color */
  text-decoration: none;
}

.term-of-use a:hover {
  text-decoration: underline;
}

.term-of-use{
  max-width: 800px;
  /* Limit container width for better readability */
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 100px;
}



/*--------------------------------------------------------------
# Transparency Statement Section
--------------------------------------------------------------*/
.transparency-statement{
  max-width: 800px;
  /* Limit container width for better readability */
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 100px;
}


.transparency-statement h1,
h2 {
  color: #222;
}

.transparency-statement h1 {
  font-size: 2.5em;
}

.transparency-statement h2 {
  font-size: 1.8em;
  margin-top: 1.5em;
}

.transparency-statement p {
  margin-bottom: 1em;
}

.transparency-statement ul {
  list-style: disc;
  margin-left: 40px;
  margin-bottom: 1em;
}

.transparency-statement a {
  color: #007bff;
  text-decoration: none;
}

.transparency-statement a:hover {
  text-decoration: underline;
}







/* SERVICES ON SEVICES PAGE */



/*--------------------------------------------------------------
# Services Section   INDEX PAGE
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.services .service-item .icon {
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.services .service-item .readmore i {
  margin-left: 8px;
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section     INDEX PAGE
--------------------------------------------------------------*/
.services-section{
  margin-bottom: 100px;
}
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  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);
}



/* ------------------------------------------------------------SERVICES IMAGES IN SERVICES PAGE--------------------------------------------------------------- */

.service-item .image-container {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 5px;
}

.service-item .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-item .image-container {
      width: 50px; /* Smaller image on smaller screens */
      height: 50px;
      margin-right: 15px; /* Adjust spacing */
  }
}

@media (max-width: 576px) {
  .service-item .image-container {
      width: 40px; /* Even smaller on very small screens */
      height: 40px;
      margin-right: 10px;
  }
}

/* If you want to adjust the margin between image and text on very small screens */
@media (max-width: 400px){
  .service-item{
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .service-item .image-container{
      margin: 0 0 10px 0;
  }
  .service-item div{
      width: 100%;
 }
}