: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;

  --head-font: "Anton", sans-serif;
  --nav-font: "Roboto Flex", 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: #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: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #224767; /* 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: #312f2f; /* 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: rgba(
    255,
    255,
    255,
    0.905
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #329dca; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #329dca; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

/* 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);
  user-select: none; /* Disable text selection */
}

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: #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 Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  width: 40%;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 25px 0;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  width: 170px;
  text-align: center;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/

.projects {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content p {
  margin: 0;
}

.case-study {
  color: #008cff;
  font-size: 14px;
  margin-bottom: 4px;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #736f6f;
  margin-bottom: 8px;
}

.project-description {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}

.results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.result-block {
  text-align: center;
}

.result-block strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #ffffff;
}

.result-block span {
  font-size: 13px;
  color: #777;
}

.view-button {
  margin-top: 16px;
  background: linear-gradient(to right, #008cff, #005bea);
  border: none;
  color: white;
  padding: 10px 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  align-self: center;
  transition: background 0.3s ease;
}

.view-button:hover {
  background: linear-gradient(to right, #005bea, #003f8a);
}

.index-page.scrolled .header {
  --background-color: rgb(0, 0, 0);
}

.card .Capabilities {
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0.2;
  z-index: -1;
  object-fit: cover;
  height: 100%;
}

.card .content h2 {
  color: #fff;
  font-weight: 400;
}
.card .content a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  padding: 8px 30px 11px;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.8);
  transition: 0.8s all ease;
}
.card .content a:hover {
  background: #9c27b0;
}

@media only screen and (max-width: 900px) {
  .container {
    display: block;
  }
}

.container .card {
  vertical-align: top;
  width: 280px;
  height: 450px;
  position: relative;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: 25px;
  background-color: rgb(0 0 0 / 89%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  text-align: center;
}

.card .content {
  padding: 20px;
  transition: 0.8s all ease;
  color: #ccc;
  transform: translateY(200px);
  opacity: 0;
}
.card:hover .content {
  transform: translateY(0px);
  opacity: 1;
}
.card img {
  /* filter: invert(82%) sepia(60%) saturate(2929%) hue-rotate(353deg) brightness(105%) contrast(103%); */
  width: 100%;

  z-index: -1;
}
h1 {
  color: #fff;
  text-align: center;
  z-index: 9;
  position: relative;
  margin-bottom: -20px;
  padding-bottom: 0;
  padding-top: 20px;
  font-weight: 400;
}
.card .content h2 {
  color: #fff;
  font-weight: 400;
}
.card .content a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  padding: 8px 30px 11px;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.8);
  transition: 0.8s all ease;
}
.card .content a:hover {
  background: #9c27b0;
}

.view-button {
  background: linear-gradient(to right, #08a3cb, #224565);
  border: none;
  color: white;
  padding: 10px 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.card:hover .view-button {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.view-button:hover {
  background: linear-gradient(to right, #224565, #08a3cb);
  transition: 0.5s;
}

@media only screen and (max-width: 900px) {
  .container {
    display: block;
  }
}

.capabilities {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 2;
  
}

#Capabilities {
  /* background-image: url("../img/capabilities.jpg"); */
}

/*--------------------------------------------------------------
# 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;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgb(0, 0, 0); /* black before scroll */
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .scrolled .navmenu a {
    color: var(--nav-color); /* after scroll color */
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    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: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    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;
  }
}

/* dropdown */
#servicesNav {
  position: relative;
}
.nav-item {
  /* position: relative; */
}

.dropdown-left {
  margin-left: -10px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
}
.nav-link {
  color: rgba(255, 255, 255, 0.65);
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.custom-dropdown {
  display: none;
  position: absolute;
  top: 55px;
  left: -800px;
  width: 1250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background: rgb(0 0 0 / 50%) !important;
  padding: 2rem;
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 20px;
}

.nav-item:hover .custom-dropdown {
  display: flex;
}
.dropdown-columns {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.dropdown-left ul {
  display: inline-grid;
  padding: 0px 8px;
}
.dropdown-right ul {
  display: inline-grid;
  padding: 0px 8px;
}

.dropdown-left ul li {
  padding: 0px 8px;
}
.dropdown-right ul li {
  padding: 0px 8px;
}

.dropdown-left ul li:hover {
  background: #000;
  border-radius: 10px;
}
.dropdown-right ul li:hover {
  background: #000;
  border-radius: 10px;
}

::marker {
  display: none;
}

/* .swiper-slide.card p{
    color: #000;
  }
    .swiper-slide.card img{
   filter: brightness(0);
} */

/* dropdown */

#branch {
  background-color: #000;
  height: 60vh;
}

/* 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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #ffffff;
            padding: 60px 0 20px;
        }


        .footer-content {
            display: grid;
            /* grid-template-columns: 2fr 1fr 1fr;
            gap: 70px;
            margin-bottom: 40px; */
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .footer-section h4 {
            color: #64b5f6;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .company-info {
            padding-right: 20px;
                /* width: 350px; */

        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .contact-info {
            margin: 20px 0;
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .contact-info strong {
            color: #64b5f6;
            margin-right: 8px;
            min-width: 60px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(100, 181, 246, 0.1);
            border: 2px solid rgba(100, 181, 246, 0.3);
            border-radius: 50%;
            color: #64b5f6;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #64b5f6;
            color: #1a1a2e;
            transform: translateY(-2px);
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: #64b5f6;
            padding-left: 10px;
        }

        .footer-links i {
            margin-right: 8px;
            font-size: 0.8rem;
            color: #64b5f6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(100, 181, 246, 0.2);
            padding-top: 10px;
            text-align: center;
        }

        .copyright {
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .sitename {
            color: #64b5f6;
            font-weight: 600;
        }

        .footer-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #64b5f6, transparent);
            margin: 10px 0 10px;
        }


          /* Color system: neutrals (#0b0f14, #1f2937, #e5e7eb), primary accent teal (#64b5f6), secondary accent amber (#f59e0b) */
     /* .ttt-wrap {
       margin: 2rem 0 2.5rem 0;
       padding: 1rem;
       background: #0b0f14;
       border: 1px solid #1f2937;
       border-radius: 0.5rem;
     } */
     .ttt-title {
       margin: 0 0 0.75rem 0;
       color: #e5e7eb;
       font-weight: 600;
       font-size: 1.125rem;
       line-height: 1.4;
     }
     .ttt-controls {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       margin-bottom: 0.75rem;
       flex-wrap: wrap;
     }
     .ttt-btn {
       appearance: none;
       border: none;
       padding: 0.5rem 0.9rem;
       border-radius: 0.5rem;
       background: #64b5f6; /* primary */
       color: #0b0f14;      /* on-primary */
       font-weight: 600;
       cursor: pointer;
     }
     .ttt-btn:hover { filter: brightness(1.05); }
     .ttt-toggle {
       display: inline-flex;
       align-items: center;
       gap: 0.4rem;
       color: #e5e7eb;
       font-size: 0.95rem;
       user-select: none;
     }
     .ttt-toggle input {
       width: 1rem; height: 1rem;
       accent-color: #64b5f6; /* secondary */
       cursor: pointer;
     }
     .ttt-status {
       color: #e5e7eb;
       margin-bottom: 0.6rem;
       min-height: 1.4rem;
     }
    .ttt-board {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    gap: 0.5rem;
}
     .ttt-cell {
       width: 50px; height: 50px;
       background: #1f2937;
       border: 1px solid #64b5f6;
       color: #e5e7eb;
       border-radius: 0.5rem;
       font-size: 2rem;
       font-weight: 700;
       line-height: 1;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       cursor: pointer;
       transition: transform 120ms ease, background 120ms ease, color 120ms ease;
     }
     .ttt-cell:hover { transform: translateY(-1px); }
     .ttt-cell:disabled {
       cursor: not-allowed;
       opacity: 0.85;
     }
     .ttt-cell.win {
       outline: 2px solid #f59e0b; /* highlight winning cells */
       color: #f59e0b;
       background: #0b0f14;
     }

     /* Responsive */
     @media (max-width: 480px) {
       .ttt-board { grid-template-columns: repeat(3, 64px); }
       .ttt-cell { width: 64px; height: 64px; font-size: 1.6rem; }
     }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  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: #ffff;
  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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav 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);

  scroll-margin-top: 80px;
  overflow: clip;
  /* margin: 30px 0; */
  padding: 30px 0;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  /* position: relative; */
  margin: 10px 0;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/* #take_coffee{
align-items: center;
  height: 40vh;
  width: 100%;
  
flex-shrink: 0;
aspect-ratio: 1738/371;
} */



   .amp-hero {
       
          
            display: flex;
            align-items: center;
            justify-content: center;
           margin-top: -460px;
            overflow: hidden;
        }

        /* Unique Morphing Background */
        .amp-morph-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .amp-morph-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: amp-morph 20s ease-in-out infinite;
            opacity: 0.7;
        }

        .amp-blob-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .amp-blob-2 {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, #a8e6cf, #ffd93d);
            top: 60%;
            right: 15%;
            animation-delay: -7s;
        }

        .amp-blob-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ff8a80, #82b1ff);
            bottom: 30%;
            left: 60%;
            animation-delay: -14s;
        }

        @keyframes amp-morph {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                border-radius: 50%;
            }
            25% {
                transform: scale(1.2) rotate(90deg);
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            50% {
                transform: scale(0.8) rotate(180deg);
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            }
            75% {
                transform: scale(1.1) rotate(270deg);
                border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
            }
        }

        /* Neural Network Effect */
        .amp-neural {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .amp-node {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: amp-pulse 3s ease-in-out infinite;
        }

        .amp-connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: amp-flow 4s linear infinite;
        }

        @keyframes amp-pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        @keyframes amp-flow {
            0% { opacity: 0; transform: scaleX(0); }
            50% { opacity: 1; transform: scaleX(1); }
            100% { opacity: 0; transform: scaleX(0); }
        }

        /* Floating Particles */
        .amp-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: amp-float 15s linear infinite;
        }

        @keyframes amp-float {
            0% {
                transform: translateY(100vh) translateX(0px) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Content Styling */
        .amp-container {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .amp-heading {
            text-align: center;
            color: white;
            margin-bottom: 100px;
        }

        .amp-heading h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
          background: linear-gradient(45deg, #1C4EA5 0%, #256fba 50%, #33A0CB 100%);

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: amp-shimmer 3s ease-in-out infinite;
        }

        @keyframes amp-shimmer {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(90deg); }
        }

        .amp-heading p {
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.9;
          
            margin: 0 auto;
        }

        .amp-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
           
        }

        .amp-card {
    background: linear-gradient(0deg, rgb(51 156 201) 0%, rgb(28, 80, 166) 50%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

        .amp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .amp-card:hover::before {
            left: 100%;
        }

        .amp-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .amp-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }

        .amp-card h3 {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
        }
.warning-icon i {
    color: #ffcc00;
    font-size: 28px;
    vertical-align: middle;
}
      /* Responsive Design */
        @media (max-width: 768px) {
             .background-animation {
        position: absolute;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 1;
        margin-top: -250px;
    }
    .amp-heading p {
    font-size: 16px;
   
}
.amp-hero {
   
    margin-top: 250px;
    
}
  
            .amp-heading h1 {
                font-size: 2.5rem;
            }
            .amp-service-grid {
                
                display: none;
            }
            .amp-morph-blob {
                filter: blur(30px);
            }
            .amp-blob-1, .amp-blob-2, .amp-blob-3 {
                width: 200px;
                height: 200px;
            }
        }




        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        /* Popup Container */
        .popup-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Header Section */
     .popup-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0px 20px;
    border-radius: 16px 16px 0 0;
    position: relative;
    display: flex;
    height: 70px;
}

        .close-button {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .close-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .warning-icon {
            font-size: 48px;
            margin-bottom: 12px;
            display: block;
        }

        .popup-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            margin: 20px;
            color: var(--nav-dropdown-background-color);
        }

        /* Content Section */
       .popup-content {
    padding: 12px 24px 24px;
}

        .intro-text {
            font-size: 16px;
            line-height: 1.6;
            color: #374151;
         
        }

        /* Official Info Box */
        .official-info {
            background: #f0f9ff;
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 10px;
        }

        .official-info h3 {
            color: #0369a1;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .official-info ul {
            list-style: none;
            margin: 0;
        }

        .official-info li {
            color: #1e40af;
            font-weight: 500;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }




        /* Warning Section */
        .warning-section {
            background: #fef3c7;
            border: 2px solid #f59e0b;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 14px;
        }

        .warning-section h3 {
            color: #92400e;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-section ul {
            list-style: none;
            margin: 0;
        }

        .warning-section li {
            color: #b45309;
            font-weight: 500;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

      

        /* Contact Section */
        .contact-section {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
          
        }

        .contact-section h3 {
            color: #1e293b;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .contact-item {
            margin-bottom: 12px;
        }

        .contact-label {
            font-weight: 600;
            color: #475569;
            display: inline-block;
            min-width: 120px;
        }

        .contact-value {
            color: #0ea5e9;
            font-weight: 500;
            text-decoration: none;
        }

        .contact-value:hover {
            text-decoration: underline;
        }

        /* Footer */
        .popup-footer {
            text-align: center;
            padding: 0 24px 24px;
        }

        .footer-message {
            font-style: italic;
            color: #6b7280;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .company-name {
            font-weight: 700;
            color: #1f2937;
            font-size: 18px;
        }

        .company-tagline {
            color: #6b7280;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 640px) {
            .popup-container {
                margin: 10px;
                border-radius: 12px;
            }

            .popup-header {
                padding: 20px;
                border-radius: 12px 12px 0 0;
            }

               .popup-title {
        font-size: 12px;
        /* padding-right: 40px; */
        margin-top: -6px;
    }

            .popup-content {
                padding: 24px 20px 20px;
            }

            .warning-icon {
                font-size: 36px;
            }
        }

  /* Popup content with scroll */
  .popup-content {
    padding: 20px;
    overflow-y: auto; /* Enable vertical scroll */
    max-height: 60vh; /* Set max height for content */
  }



  /* Optional: style scrollbar (for webkit browsers) */
  .popup-content::-webkit-scrollbar {
    width: 8px;
  }
  .popup-content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }
  .popup-content::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

        
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.heading {
  width: 90%;
}

.landingpage {
  position: absolute !important;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #1e54a8;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 3px;
  color: transparent;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, #000000, transparent 30%);
  font-weight: 200;
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 4px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  background: #00000026;
}
.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--default-color);
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 24px;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  color: #2f95c6;
  border: 2px solid #339cc9;
  border-radius: 16px 0 16px 0;
  background-color: white;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.know-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(13, 71, 161, 0.1);
  transition: left 0.3s ease;
  z-index: 0;
}

.know-more-btn:hover::before {
  left: 0;
}

.know-more-btn span {
  position: relative;
  z-index: 1;
}

.arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.know-more-btn:hover .arrow {
  transform: translateX(5px);
}

.visual-container {
  position: relative;
  width: 400px;
  height: auto;
}

.frame-border {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 100%;
  height: 100%;
  border: 12px solid #00aaff;
  border-radius: 30px;
  box-sizing: border-box;
  z-index: 0;
}

.main-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
    margin: 40px;
  }
}

.icon-img {
  width: 40%;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
  background-image: url();
}

.about .content h3 {
  font-size: 1.75rem;

  margin-top: 10px;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
  text-align: center;
}

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

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

.stat-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 4px 4px 0px rgb(224 224 224);
  transition: transform 0.3s ease;
  margin: 16px;
  width: 46%;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;

  margin-bottom: 8px;

  background: linear-gradient(180deg, #11b3ff 30%, #0a6b99 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

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

.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 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 20px 0;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.section-eight {
  padding: 40px 0 0px 0;
  margin-top: 130px;
  position: relative;
}
.op-eight-section {
  position: relative;
}
.sec-eight-text-area {
  text-align: center;
  padding: 100px 0 100px;
}
.sec-eight-text-area img {
  padding: 2vh 0;
}
.sec-eight-text-area h1 {
  padding: 2vh 0 3vh 0;
  color: #434c57;
  line-height: 1.3;
  font-size: 40px;
  font-family: amaticSC;
  letter-spacing: 2px;
  padding-bottom: 30px;
}
.sec-eight-text-area p {
  padding: 2vh 0;
  font-size: 14px;
  line-height: 1.6;
  color: #434c57;
  font-family: mavenpro;
}
.section-eight .container-pe-quote {
  position: absolute;
  height: 100%;
  top: 0px;
  z-index: 1;
}
.section-eight .container-pe-quote.left {
  left: 0px;
}
.section-eight .container-pe-quote.right {
  right: 0px;
}
.section-eight .container-pe-quote .pp-quote {
  cursor: pointer;
  position: absolute;
  border-radius: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-transform-origin: 50% 1px;
  -moz-transform-origin: 50% 1px;
  -ms-transform-origin: 50% 1px;
  -o-transform-origin: 50% 1px;
  transform-origin: 50% 1px;
  opacity: 0;
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.container-pe-quote .pp-quote img {
  overflow: hidden;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  object-fit: cover;
}
.section-eight .container-pe-quote .pp-quote:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: calc(100% + 5px);
  width: calc(100% + 5px);
  border-radius: 100%;
  background-color: #7fb3e4;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -moz-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  -o-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.container-pe-quote .pp-quote:hover:after,
.container-pe-quote .pp-quote.active:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.section-eight .container-pe-quote .li-quote-1 {
  height: 104px;
  width: 104px;
  left: 15px;
  top: 95px;
  animation-duration: 10s;
  -webkit-animation-duration: 10s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-2 {
  height: 63px;
  width: 63px;
  left: 120px;
  top: 270px;
  animation-duration: 12s;
  -webkit-animation-duration: 12s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-3 {
  height: 64px;
  width: 64px;
  left: 68px;
  top: 380px;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-4 {
  height: 73px;
  width: 73px;
  right: -15px;
  top: 110px;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-5 {
  height: 73px;
  width: 73px;
  right: 28px;
  top: 265px;
  animation-duration: 8s;
  -webkit-animation-duration: 8s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-6 {
  height: 45px;
  width: 45px;
  right: 108px;
  top: 170px;
  animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-7 {
  height: 48px;
  width: 48px;
  right: 40px;
  top: 414px;
  animation-duration: 7s;
  -webkit-animation-duration: 7s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.section-eight .container-pe-quote .li-quote-8 {
  height: 63px;
  width: 63px;
  left: 20px;
  top: 250px;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}

@keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -moz-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -ms-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -o-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -moz-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -ms-transform: rotate(0deg) translate(-10px) rotate(0deg);
    -o-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

.section-eight .container-quote {
  position: relative;
  width: 100%;
  margin-top: 10px;
  height: 135px;
  -webkit-perspective: 10000px;
  -moz-perspective: 10000px;
  -ms-perspective: 10000px;
  perspective: 10000px;
}
.section-eight .container-quote .quote {
  max-width: 520px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  cursor: pointer;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  -moz-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  -o-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}
.section-eight .container-quote .quote.hide-bottom {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
  -moz-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
  -ms-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
  -o-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
  transform: translateX(-50%) translateY(100%) rotateX(-70deg);
}
.section-eight .container-quote .quote.hide-top {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
  -moz-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
  -ms-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
  -o-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
  transform: translateX(-50%) translateY(-100%) rotateX(70deg);
}
.section-eight .container-quote .quote.show {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0%) rotateX(0deg);
  -moz-transform: translateX(-50%) translateY(0%) rotateX(0deg);
  -ms-transform: translateX(-50%) translateY(0%) rotateX(0deg);
  -o-transform: translateX(-50%) translateY(0%) rotateX(0deg);
  transform: translateX(-50%) translateY(0%) rotateX(0deg);
}

.section-eight .container-dp-name {
  position: relative;
  width: 100%;
  margin-top: 10px;
  height: 150px;
  -webkit-perspective: 10000px;
  -moz-perspective: 10000px;
  -ms-perspective: 10000px;
  perspective: 10000px;
  text-align: center;
}
.section-eight .container-dp-name .box-dpname {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  -moz-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  -o-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
  transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}
.section-eight .container-dp-name .box-dpname.hide-dp-bottom {
  opacity: 0;
  -webkit-transform: translateX(0%) translateY(100%) rotateX(-70deg);
  -moz-transform: translateX(0%) translateY(100%) rotateX(-70deg);
  -ms-transform: translateX(0%) translateY(100%) rotateX(-70deg);
  -o-transform: translateX(0%) translateY(100%) rotateX(-70deg);
  transform: translateX(0%) translateY(100%) rotateX(-70deg);
}
.section-eight .container-dp-name .box-dpname.hide-dp-top {
  opacity: 0;
  -webkit-transform: translateX(0%) translateY(-100%) rotateX(70deg);
  -moz-transform: translateX(0%) translateY(-100%) rotateX(70deg);
  -ms-transform: translateX(0%) translateY(-100%) rotateX(70deg);
  -o-transform: translateX(0%) translateY(-100%) rotateX(70deg);
  transform: translateX(0%) translateY(-100%) rotateX(70deg);
}
.section-eight .container-dp-name .box-dpname.look {
  opacity: 1;
  -webkit-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -moz-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotateX(0deg);
  -o-transform: translateX(0%) translateY(0%) rotateX(0deg);
  transform: translateX(0%) translateY(0%) rotateX(0deg);
}

@media screen and (max-width: 767px) {
  .sec-eight-text-area {
    padding: 10px 0 10px 0;
  }
  .section-eight .container-pe-quote {
    position: relative;
    height: 500px;
    top: 0px;
    z-index: 1;
    max-width: 300px;
    margin: -70px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .section-eight {
    position: relative;
  }
  .section-eight .bottom-ani-cs {
    position: absolute;
    top: 150px;
    right: 16px;
  }
  .section-eight .container-pe-quote .li-quote-2 {
    left: 60px;
    top: 270px;
  }
  .section-eight .container-pe-quote .li-quote-6 {
    right: 100px;
    top: 179px;
  }
  .section-eight .container-pe-quote .li-quote-8 {
    height: 43px;
    width: 43px;
    left: 0px;
    top: 220px;
  }
  .section-eight .container-pe-quote .li-quote-3 {
    left: 0;
  }
  .section-eight .container-quote {
    height: 205px;
    overflow: hidden;
    overflow-y: auto;
  }
  .sec-eight-text-area {
    padding: 10px 0 100px 0;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.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:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.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);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* what we do */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tab-list {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 50px;
  background: #f0f4f6;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
  height: 70px;
  text-align: start;
}

.tab img {
  width: 20%;
  margin-left: -12px;
}
.tab i {
  background: #008ecc;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
}

.tab.active {
  background: linear-gradient(90deg, #029ac1, #0f4464);
  color: white;
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2) inset;
}

.tab.active i {
  background: rgba(255, 255, 255, 0.15);
}

.tab-content {
  flex: 3;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2) inset;
  min-width: 300px;
}

.tab-text {
  display: none;
}

.tab-text .active {
  display: block;
}

.tab-text h3 {
  color: #333;
  margin-bottom: 10px;
}

.tab-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
  }

  .tab-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .tab {
    
    font-size: 12px;
  }

  .tab-content {
    padding: 20px;
  }
}

#capabilities {
  background: #faf7f8;
}

.capabilities-card {
  background-image: url(../img/cap-bg.png);
  width: 100%;
  background-repeat: no-repeat;
}

.layout-wrapper {
  display: grid;
  grid-gap: 0rem;
  padding: 1rem;
  /* max-width: 1024px; */
  /* margin: 0px 52px; */
  /* font-family: var(--font-sans); */
  /* border-radius: 20px; */
  /* margin-left: 25rem; */
}
@media (min-width: 600px) {
  .layout-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .layout-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.travel-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0rem;
  width: 80%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  height: 94% !important;
}

@media (min-width: 600px) {
  .travel-card {
    height: 350px;
  }
}
.travel-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.travel-card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.009) 11.7%,
    rgba(0, 0, 0, 0.034) 22.1%,
    rgba(0, 0, 0, 0.072) 31.2%,
    rgba(0, 0, 0, 0.123) 39.4%,
    rgba(0, 0, 0, 0.182) 46.6%,
    rgba(0, 0, 0, 0.249) 53.1%,
    rgba(0, 0, 0, 0.32) 58.9%,
    rgba(0, 0, 0, 0.394) 64.3%,
    rgba(0, 0, 0, 0.468) 69.3%,
    rgba(0, 0, 0, 0.54) 74.1%,
    rgba(0, 0, 0, 0.607) 78.8%,
    rgba(0, 0, 0, 0.668) 83.6%,
    rgba(0, 0, 0, 0.721) 88.7%,
    rgba(0, 0, 0, 0.762) 94.1%,
    rgba(0, 0, 0, 0.79) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.travel-card:nth-child(1):before {
  background-image: url(../img/artificialintelligence.jpg);
}
.travel-card:nth-child(2):before {
  background-image: url(../img/business-process-services.jpg);
}
.travel-card:nth-child(3):before {
  background-image: url(../img/Cloud\ and\ Infrastructure\ Services.jpg);
}
.travel-card:nth-child(4):before {
  background-image: url(../img/Digital\ Enterprise\ Applications.jpg);
}
.travel-card:nth-child(5):before {
  background-image: url(../img/Engineering\ Services.jpg);
}
.travel-card:nth-child(6):before {
  background-image: url(../img/Experience\ Services.jpg);
}
.travel-card:nth-child(7):before {
  background-image: url(../img/Network\ Services.jpg);
}
.travel-card:nth-child(8):before {
  background-image: url(../img/Testing\ Services.jpg);
}

.card-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.card-info > * + * {
  margin-top: 1rem;
}

.card-heading {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.card-description {
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.35;
}

.action-btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}
.action-btn:hover {
  background-color: #0d0d0d;
}
.action-btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .travel-card:after {
    transform: translateY(0);
  }

  .card-info {
    transform: translateY(calc(100% - 4.5rem));
  }
  .card-info > *:not(.card-heading) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .travel-card:hover,
  .travel-card:focus-within {
    align-items: center;
  }
  .travel-card:hover:before,
  .travel-card:focus-within:before {
    transform: translateY(-4%);
  }
  .travel-card:hover:after,
  .travel-card:focus-within:after {
    transform: translateY(-50%);
  }
  .travel-card:hover .card-info,
  .travel-card:focus-within .card-info {
    transform: translateY(0);
  }
  .travel-card:hover .card-info > *:not(.card-heading),
  .travel-card:focus-within .card-info > *:not(.card-heading) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .travel-card:focus-within:before,
  .travel-card:focus-within:after,
  .travel-card:focus-within .card-info,
  .travel-card:focus-within .card-info > *:not(.card-heading) {
    transition-duration: 0s;
  }
}
.travel-card {
  transition: transform 0.5s ease-in-out !important;
}

.travel-card:before {
  transition: transform 0.6s ease-in-out !important;
}

.travel-card:after {
  transition: transform 0.6s ease-in-out !important;
}

.card-info {
  transition: transform 0.6s ease-in-out !important;
}

.card-info > *:not(.card-heading) {
  transition: transform 0.5s ease, opacity 0.5s ease !important;
}

.Capabilities-description {
  font-size: 12px;
  padding: 0 130px 30px 85px;
  /* margin: 32px; */
  text-align: center;
}
.Capabilities-head {
  font-size: 26px;
  padding: 120px 130px 5px 85px;
  /* margin: 32px; */
  text-align: center;
  font-weight: 600;
}

.industry-section {
  padding: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 10px;
}

.section-title span {
  color: #0066cc;
}

.section-subtitle {
  font-size: 16px;
  color: #444;
  max-width: 800px;

  line-height: 1.6;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    /* card background */ linear-gradient(135deg, #0c98bf, #214c6d) border-box; /* border gradient */
  border: 8px solid transparent; /* needed to reveal gradient */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 160px;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-radius: 12px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    /* card background */ linear-gradient(135deg, #214c6d, #0c98bf) border-box; /* border gradient */
  border: 8px solid transparent; /* needed to reveal gradient */
  transition: 1s;
}

.industry-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;

  background: linear-gradient(to bottom, #214c6d, #0c98bf);
  padding: 10px;
  border-radius: 50%;
}

.industry-card img:hover {
  background: linear-gradient(to bottom, #0c98bf, #214c6d) !important;
}

.industry-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .industry-card {
    padding: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

.section-eight {
  margin-top: 0px;
  position: relative;
  padding: 0px;
}
.award-section {
  padding: 0;
  background: #fff;
  text-align: center;
}

.award-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  padding: 10px;
}

.award-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px;
}



.year {
  font-size: 90px;
  font-weight: 800;
  background: linear-gradient(
    180deg,
    rgba(48, 153, 199, 0.5) 16.67%,
    rgba(31, 88, 170, 0.5) 76.07%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-90deg);
  /* transform-origin: left top; */
  /* margin-bottom: 34px; */
  display: inline-block;
  margin-top: 50px;
  margin-left: -39px;
}

.icon {
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.icon img {
  width: 50%;
}

.award-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.award-card p {
  font-size: 14px;
  color: #555;
}

.divider {
  width: 4px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #0a9ac2 0%, #214b6b 100%);
}

@media (max-width: 900px) {
  .award-container {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
  }

  .year {
    transform: rotate(0deg);
    margin-bottom: 10px;
  }

  .award-card {
    align-items: center;
    text-align: center;
  }
}

.client-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  padding: 0 !important;
  object-fit: cover;
}

/* about us page */

.about-video {
  object-fit: cover;
  width: 100%;
  height: 80vh;
  margin-top: -30px;
}

.slider {
  display: flex;
  height: 350px;
  max-height: auto;
  overflow-y: hidden;
  overflow-x: scroll !important;
  padding: 40px;
  transform: scroll(calc(var(--i, 0) / var(--n) * -100%));
  scroll-behavior: smooth;
}
.slider::-webkit-scrollbar {
  height: 5px;
  width: 150px;
  display: none;
}
.slider::-webkit-scrollbar-track {
  background: transparent;
}
.slider::-webkit-scrollbar-thumb {
  background: #888;
}
.slider::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.slider img:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
}
.slide {
  position: relative;
}
.slide img {
  height: 100%;
  width: 250px;
  margin: 0 10px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.control-prev-btn {
  position: absolute;

  left: 0;
  background-color: rgba(255, 255, 255, 0.55);
  height: 100px;
  line-height: 100px;
  width: 45px;
  text-align: center;
  box-shadow: 0 1px 3px #888;
  user-select: none;
  color: #444;
  cursor: pointer;
  margin-top: 10vh;
}
.control-next-btn {
  position: absolute;

  right: 0;
  background-color: rgba(255, 255, 255, 0.55);
  height: 100px;
  line-height: 100px;
  width: 45px;
  text-align: center;
  box-shadow: 0 1px 3px #888;
  user-select: none;
  color: #444;
  cursor: pointer;
  margin-top: 10vh;
}
.slide img.zoomed {
  width: 50%;
  height: 50%;
  position: fixed;
  left: 20%;
  top: 15%;
  z-index: 1000;
  transform: scale(1) translatey(0) !important;
  /* align-items: center; */
  object-fit: contain;
  background: var(--accent-color);
}
.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  top: 0;
  display: none;
}
.overlay.active {
  display: block;
}
@media only screen and (max-width: 420px) {
  .slider {
    padding: 0;
  }
  .slide {
    padding: 16px 10px;
  }
  .slide img {
    margin: 0;
  }
  /* .control-prev-btn {
		 top: 37%;
	}
	 .control-next-btn {
		 top: 37%;
	} */
}

/* -----------------------------------
      brifcase Section
--------------------------------------*/
.portfolio-section {
  padding: 70px 0;
  /* background-color: #000; */
}
.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.portfolio-menu {
  text-align: center;
}
.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  /* border: 1px solid #343a40; */
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}
.control:hover {
  background: #343a40;
}
.mixitup-control-active {
  color: #fff;
  background: #343a40;
}

.portfolio-item {
  padding-top: 30px;
}
.pd {
  padding: 0;
  padding: 10px;
}
.pd img {
  height: 180px;
  transition: all 0.5s;
  width: 300px;
}
.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}
.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}
.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}
.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}
.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #3095be;
  border-right: 1px solid #3095be;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}
.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #3095be;
  border-left: 1px solid #3095be;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}
.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}
.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #3095be;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}
.portfolio-overlay .magnify-icon:hover {
  background: #000;
}
.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}

/*******Responsive media query******/

/* Extra small devices (portrait phones, less than 576px)*/

.dark-light svg {
  margin-right: 8px;
  width: 22px;
  cursor: pointer;
  fill: transparent;
  transition: 0.5s;
}

.dark-mode .dark-light svg {
  fill: #ffce45;
  stroke: #ffce45;
}
.dark-mode .job-card svg {
  box-shadow: none;
}
.dark-mode .search.item {
  color: var(--body-color);
  border-color: var(--body-color);
}
.dark-mode .search-location svg,
.dark-mode .search-job svg,
.dark-mode .search-salary svg {
  color: var(--body-color);
}
.dark-mode .detail-button {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
}

.job {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--theme-bg-color);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.logo svg {
  width: 24px;
  margin-right: 12px;
}
/* 
.header {
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
  flex-shrink: 0;
  padding: 0 40px;
  white-space: nowrap;
  background-color: var(--header-bg-color);
  height: 60px;
  width: 100%;
  font-size: 14px;
  justify-content: space-between;
}
.header-menu a {
  text-decoration: none;
  color: var(--body-color);
  font-weight: 500;
}
.header-menu a:hover {
  color: var(--active-color);
}
.header-menu a:not(:first-child) {
  margin-left: 30px;
}
.header-menu a.active {
  color: var(--active-color);
} */

.user-settings {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.user-settings svg {
  width: 20px;
  color: #94949f;
}

.user-menu {
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 2px solid #d6d6db;
}
.user-menu:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--header-bg-color);
  right: 6px;
  top: -1px;
  background-color: var(--active-color);
}

.user-profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  scroll-behavior: smooth;
  padding: 30px 40px;
  overflow: auto;
}

.search-menu {
  height: 56px;
  white-space: nowrap;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  background-color: var(--header-bg-color);
  border-radius: 8px;
  width: 100%;
  padding-left: 20px;
}
.search-menu div:not(:last-of-type) {
  border-right: 1px solid var(--search-border-color);
}

.search-bar {
  height: 55px;
  width: 100%;
  position: relative;
}
.search-bar input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%230162ff'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 0 50%;
  padding: 0 25px 0 305px;
}

.search-location,
.search-job,
.search-salary {
  display: flex;
  align-items: center;
  width: 50%;
  font-size: 14px;
  font-weight: 500;
  padding: 0 25px;
  height: 100%;
}
.search-location input,
.search-job input,
.search-salary input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
}
.search-location svg,
.search-job svg,
.search-salary svg {
  margin-right: 8px;
  width: 18px;
  color: var(--active-color);
  flex-shrink: 0;
}

.search-button {
  background-color: var(--active-color);
  height: 55px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 0 8px 8px 0;
  color: var(--button-color);
  cursor: pointer;
  margin-left: auto;
}

.search.item {
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 13px;
  color: var(--active-color);
  border: 1px solid var(--search-border-color);
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.search.item svg {
  width: 12px;
  margin-left: 5px;
}
.search.item:last-child {
  left: 185px;
}

.main-container {
  display: flex;
  flex-grow: 1;
  padding-top: 30px;
}

.search-type {
  width: 270px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-shrink: 0;
}

.alert {
  background-color: var(--alert-bg-color);
  padding: 24px 18px;
  border-radius: 8px;
}
.alert-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.alert-subtitle {
  font-size: 13px;
  color: var(--subtitle-color);
  line-height: 1.6em;
  margin-bottom: 20px;
}
.alert input {
  width: 100%;
  padding: 10px;
  display: block;
  border-radius: 6px;
  background-color: var(--header-bg-color);
  border: none;
  font-size: 13px;
}

.search-buttons {
  border: none;
  color: var(--button-color);
  background-color: var(--active-color);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}

.job-wrapper {
  padding-top: 20px;
}

.job-time {
  padding-top: 20px;
}
.job-time-title {
  font-size: 14px;
  font-weight: 500;
}

.type-container {
  display: flex;
  align-items: center;
  color: var(--subtitle-color);
  font-size: 13px;
}
.type-container label {
  margin-left: 2px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.type-container + .type-container {
  margin-top: 10px;
}

.job-number {
  margin-left: auto;
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
  font-size: 10px;
  font-weight: 500;
  padding: 5px;
  border-radius: 4px;
}

.job-style {
  display: none;
}

.job-style + label:before {
  content: "";
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--subtitle-color);
  border-radius: 4px;
  cursor: pointer;
}

.job-style:checked + label:before {
  background-color: var(--active-color);
  border-color: var(--active-color);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-position: 50%;
  background-size: 14px;
  background-repeat: no-repeat;
}

.job-style:checked + label + span {
  background-color: var(--active-light-color);
  color: var(--active-color);
}

.searched-jobs {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 40px;
}

@-webkit-keyframes slideY {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
}

@keyframes slideY {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
}
.searched-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
}
.searched-show {
  font-size: 19px;
  font-weight: 600;
}
.searched-sort {
  font-size: 14px;
  color: var(--subtitle-color);
}
.searched-sort .post-time {
  font-weight: 600;
  color: var(--subtitle-color);
}
.searched-sort .menu-icon {
  font-size: 9px;
  color: var(--placeholder-color);
  margin-left: 6px;
}

.job-cards {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
}
@media screen and (max-width: 1212px) {
  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 930px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-card {
  padding: 20px 16px;
  background-color: var(--header-bg-color);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.job-card:hover {
  transform: scale(1.02);
}
.job-card svg {
  width: 46px;
  padding: 10px;
  border-radius: 8px;
}
.job-card-title {
  font-weight: 600;
  margin-top: 16px;
  font-size: 14px;
}
.job-card-subtitle {
  color: var(--subtitle-color);
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6em;
}
.job-card-header {
  display: flex;
  align-items: flex-start;
}

.overview-card:hover {
  background: #2b2ecf;
  transition: none;
  transform: scale(1);
}
.overview-card:hover svg {
  box-shadow: none;
}
.overview-card:hover .job-overview-buttons .search-buttons.time-button,
.overview-card:hover .job-overview-buttons .search-buttons.level-button {
  background-color: #575ad8;
  color: #fff;
}
.overview-card:hover .job-card-title,
.overview-card:hover .job-stat {
  color: #fff;
}
.overview-card:hover .job-card-subtitle,
.overview-card:hover .job-day {
  color: #dedede;
}
.overview-card:hover .overview-wrapper .heart {
  color: #fff;
  border-color: #fff;
}
.overview-card:hover .overview-wrapper .heart:hover {
  fill: red;
  stroke: red;
  transform: scale(1.1);
}

.detail-button {
  background-color: var(--active-light-color);
  color: var(--active-color);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 4px;
}
.detail-button + .detail-button {
  margin-left: 4px;
}

.job-card-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 4px;
}

.card-buttons,
.card-buttons-msg {
  padding: 10px;
  width: 100%;
  font-size: 12px;
  cursor: pointer;
}

.card-buttons {
  margin-right: 12px;
}
.card-buttons-msg {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
}

.menu-dot {
  background-color: var(--placeholder-color);
  box-shadow: -6px 0 0 0 var(--placeholder-color),
    6px 0 0 0 var(--placeholder-color);
  width: 4px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 8px;
}

.header-shadow {
  box-shadow: 0 4px 20px rgba(88, 99, 148, 0.17);
  z-index: 1;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}
.job-overview {
  display: flex;
  flex-grow: 1;
  display: none;
  -webkit-animation: slide 0.6s both;
  animation: slide 0.6s both;
}
.job-overview-cards {
  display: flex;
  flex-direction: column;
  width: 330px;
  height: 100%;
  flex-shrink: 0;
}
.job-overview-card + .job-overview-card {
  margin-top: 20px;
}
.job-overview-buttons {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.job-overview-buttons .search-buttons {
  background-color: var(--inactive-color);
  font-size: 11px;
  padding: 6px 8px;
  margin-top: 0;
  font-weight: 500;
}
.job-overview-buttons .search-buttons.time-button {
  color: var(--time-button);
  margin-right: 8px;
}
.job-overview-buttons .search-buttons.level-button {
  color: var(--level-button);
}
.job-overview-buttons .job-stat {
  color: var(--active-color);
  font-size: 12px;
  font-weight: 500;
  margin-left: auto;
}
.job-overview-buttons .job-day {
  color: var(--subtitle-color);
  font-size: 12px;
  margin-left: 8px;
  font-weight: 500;
}
.job-overview .overview-wrapper {
  display: flex;
  align-items: center;
}
.job-overview .overview-wrapper svg:first-child {
  width: 42px;
  margin-right: 10px;
}
.job-overview .overview-wrapper .heart {
  background: none;
  box-shadow: none;
  width: 24px;
  padding: 4px;
  color: var(--subtitle-color);
  border: 1px solid var(--border-color);
  margin-left: auto;
  margin-bottom: auto;
}

.overview-detail .job-card-title,
.overview-detail .job-card-subtitle {
  margin-top: 4px;
}
.overview-detail .job-card-subtitle {
  font-size: 12px;
  font-weight: 500;
}

.job-explain {
  background-color: var(--header-bg-color);
  margin-left: 40px;
  border-radius: 0 0 8px 8px;
}

.job-bg {
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 180px;
  transition: 0.3s;
  position: relative;
}

.job-logos {
  margin-top: -30px;
  position: relative;
  margin-bottom: -36px;
  padding: 0 20px;
}
.job-logos svg {
  width: 66px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
  border: 4px solid var(--header-bg-color);
}

.job-title-wrapper {
  display: flex;
  align-items: center;
}
.job-title-wrapper .job-card-title {
  font-size: 20px;
  margin-top: 0;
  font-weight: 600;
}

.job-action {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.job-action svg {
  width: 32px;
  border: 1px solid var(--border-color);
  color: var(--subtitle-color);
  border-radius: 8px;
  padding: 6px;
}
.job-action svg + svg {
  margin-left: 12px;
}

.job-explain-content {
  padding: 50px 25px 30px;
}

.job-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.job-subtitle-wrapper .posted {
  margin-left: auto;
}
.job-subtitle-wrapper .company-name {
  color: var(--active-color);
  font-weight: 600;
  font-size: 14px;
}
.job-subtitle-wrapper .comp-location,
.job-subtitle-wrapper .posted {
  color: var(--subtitle-color);
  font-size: 12px;
  font-weight: 500;
}
.job-subtitle-wrapper .comp-location {
  position: relative;
  margin-left: 10px;
}
.job-subtitle-wrapper .comp-location:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 49%;
  left: -8px;
  position: absolute;
}
.job-subtitle-wrapper .app-number {
  color: var(--body-color);
  position: relative;
  margin-left: 12px;
}
.job-subtitle-wrapper .app-number:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 50%;
  left: -7px;
  position: absolute;
}

.explain-bar {
  margin-top: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  height: 66px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}
.explain-title {
  color: var(--subtitle-color);
  font-size: 12px;
  line-height: 40px;
  white-space: nowrap;
}
.explain-subtitle {
  font-size: 13px;
  font-weight: 500;
  margin-top: -2px;
  white-space: nowrap;
}
.explain-contents {
  height: 66px;
}
.explain-contents + .explain-contents {
  border-left: 1px solid var(--border-color);
  padding-left: 16px;
}

.overview-text {
  margin-top: 30px;
}
.overview-text-header {
  font-weight: 600;
  margin-bottom: 25px;
}
.overview-text-subheader {
  font-size: 13px;
  line-height: 2em;
}
.overview-text-item {
  font-size: 13px;
  position: relative;
  display: flex;
}
.overview-text-item + .overview-text-item {
  margin-top: 20px;
}
.overview-text-item:before {
  content: "";
  border: 2px solid #61bcff;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  margin-right: 8px;
  flex-shrink: 0;
}

.detail-page .job-overview {
  display: flex;
}
.detail-page .job-cards,
.detail-page .searched-bar {
  display: none;
}
@media screen and (max-width: 1300px) {
  .detail-page .search-type {
    display: none;
  }
  .detail-page .searched-jobs {
    padding-left: 0;
  }
}

@media screen and (max-width: 990px) {
  .explain-contents,
  .explain-bar {
    height: auto;
  }

  .explain-bar {
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .explain-contents {
    width: 50%;
  }

  .explain-contents + .explain-contents {
    padding: 0;
    border: 0;
  }

  .explain-contents:nth-child(2) ~ .explain-contents {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
  }

  .job-subtitle-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-subtitle-wrapper .posted {
    margin-left: 0;
    margin-top: 6px;
  }
}
@media screen and (max-width: 930px) {
  .search-job,
  .search-salary {
    display: none;
  }

  .search-bar {
    width: auto;
  }
}
@media screen and (max-width: 760px) {
  .detail-page .job-overview-cards {
    display: none;
  }

  .user-name {
    display: none;
  }

  .user-profile {
    margin-right: 0;
  }

  .job-explain {
    margin-left: 0;
  }
}
@media screen and (max-width: 730px) {
  .search-type {
    display: none;
  }

  .searched-jobs {
    padding-left: 0;
  }

  .search-menu div:not(:last-of-type) {
    border: 0;
  }

  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-location {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .header-menu a:not(:first-child) {
    margin-left: 10px;
  }
}
@media screen and (max-width: 590px) {
  .header-menu {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .search.item {
    display: none;
  }

  .search-bar {
    flex-grow: 1;
  }

  .search-bar input {
    padding: 0 0 0 30px;
  }

  .search-button {
    margin-left: 16px;
  }

  .searched-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .searched-sort {
    margin-top: 5px;
  }

  .main-container {
    padding-top: 20px;
  }
}
@media screen and (max-width: 380px) {
  .explain-contents {
    width: 100%;
    margin: 0;
  }

  .explain-contents:nth-child(2) ~ .explain-contents {
    margin: 0;
    border: 0;
  }

  .wrapper {
    padding: 20px;
  }

  .header {
    padding: 0 20px;
  }
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.dots {
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
}

.job-title {
  font-weight: 600;
  font-size: 18px;
}

.job-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #e6ecf5;
  color: #3196c6;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.job-actions {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 10px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background-color: #2160ad;
  color: white;
  border: none;
}
.btn-primary:hover {
  background-color: #3299c8;
  color: white;
  border: none;
}

.btn-secondary {
  background-color: #eee;
  color: #888;
  border: none;
}

@media screen and (max-width: 768px) {
  .job-title {
    font-size: 16px;
  }

  .job-desc {
    font-size: 13px;
  }
}

.right_conatct_social_icon {
  background: linear-gradient(to top right, #87daff -5%, #1d51a6 100%);
}
.contact_us {
  background-color: #f1f1f1;
  padding: 120px 0px;
}

.contact_inner {
  background-color: #fff;
  position: relative;
  box-shadow: 20px 22px 44px #cccc;
  border-radius: 25px;
}
.contact_field {
  padding: 60px 340px 90px 100px;
}
.right_conatct_social_icon {
  height: 100%;
}

.contact_field h3 {
  color: #000;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact_field p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 35px;
}
.contact_field .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_info_sec {
  position: absolute;
  background-color: #2d2d2d;
  right: 1px;
  top: 18%;
  height: 340px;
  width: 340px;
  padding: 40px;
  border-radius: 25px 0 0 25px;
  color: #fff;
}
.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 15px;
  color: #fff;
}

.info_single {
  margin: 30px 0px;
}
.info_single i {
  margin-right: 15px;
}
.info_single span {
  font-size: 14px;
  letter-spacing: 1px;
}

button.contact_form_submit {
  background: linear-gradient(to top right, #87daff -5%, #1d51a6 100%);
  border: none;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  margin-top: 25px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
}
.socil_item_inner li {
  list-style: none;
}
.socil_item_inner li a {
  color: #fff;
  margin: 0px 15px;
  font-size: 14px;
}
.socil_item_inner {
  padding-bottom: 10px;
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .contact_field {
    padding: 50px 50px 80px 50px;
  }

  .contact_info_sec {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 25px;
  }

  .right_conatct_social_icon {
    height: auto;
  }

  .contact_inner {
    padding: 20px;
  }
}

/* Small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .contact_field {
    padding: 40px 30px 60px 30px;
  }

  .contact_field h3 {
    font-size: 28px;
    text-align: center;
  }

  .contact_field p {
    text-align: center;
  }

  .contact_info_sec {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .socil_item_inner li a {
    margin: 0px 10px;
    font-size: 13px;
  }

  .map_inner h4,
  .map_inner p {
    text-align: center;
    padding: 0 10px;
  }

  .map_bind {
    margin-top: 30px;
  }
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* 3 */
.btn-3 {
  background: rgb(0, 172, 238);
  background: linear-gradient(0deg, rgb(51 156 201) 0%, rgb(28, 80, 166) 100%);
  width: 40vh;
  height: 5vh;
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: rgb(28, 80, 166);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover {
  background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover {
  color: rgb(28, 80, 166);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: rgb(28, 80, 166);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}

.study-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  animation: fadeInUp 0.8s ease-out;
  padding: 2rem;
}

.study-container {
  padding: 1rem;
}

.study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

  background: #efefef;
  margin: 30px 0px;

  border-radius: 20px;
  padding: 1.5rem;
}

.study-text {
  padding: 1rem;
}

.study-heading {
  margin-bottom: 1.5rem;
}

.study-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00b5ff, #1c50a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.study-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.study-description {
  font-size: 1.1rem;
  color: #666;
  margin: 1rem 0 2rem;
  line-height: 1.8;
}

.study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.study-stat {
  text-align: center;
  padding: 1rem;
  background: #f8f9ff;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.study-stat:hover {
  border-color: #1e56a9;
  transform: translateY(-2px);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e56a9;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.study-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.study-video:hover {
  transform: scale(1.02);
}

.study-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.study-feedback {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 4px solid #1e56a9;
}

.feedback-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.feedback-name {
  font-weight: 600;
  color: #11b3ff;
}

.feedback-role {
  font-size: 0.9rem;
  color: #666;
}

.study-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1e56a9, #11b3ff);
  border-radius: 15px;
  color: white;
  margin-top: 3rem;
}

.cta-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-link {
  display: inline-block;
  background: white;
  color: #1e56a9;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .study-grid {
    grid-template-columns: 1fr;
  }

  .study-stats {
    grid-template-columns: 1fr;
  }

  .study-subtitle {
    font-size: 2rem;
  }

  .study-main-title {
    font-size: 1.5rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#service {
  background-image: url(../img/services-bg.jpg);
  width: 100%;
  min-height: 40vh;

  background-size: contain;
  position: relative;
}
.service-head {
  margin-top: 10%;
}
.service-head h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000000;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 3px;
  color: transparent;
  margin-bottom: 1rem;
}

.layout-wrapper.service {
  display: grid;
  grid-gap: 1rem;
  padding: 0rem;
  padding: 0px;
}

.travel-card.service {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  height: 20rem !important;
}

.card-heading.service {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
}

.card-description.service {
  font-family: var(--font-serif);
  font-size: 16px;
  /* font-style: italic; */
  line-height: 1.35;
  color: #fff;
}

.roadmap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left-section {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.left-section h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #000;
}

.cta-box {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.cta-box h3 {
  font-size: 22px;
  margin-top: 20px;
  color: #fff;
}

.cta-box p {
  margin: 10px 0 20px;
  color: #ccc;
}

.cta-box button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.right-section {
  flex: 1;

  max-height: 80vh;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
}

.service-card {
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

.service-icon {
  font-size: 22px;
}

.digital_card_bg_set {
  background: url(../img/Digital-card-bg.png);
  width: 100%;
  background-position: center;
  padding-bottom: 50px;
}
.digital_experience {
  /* background: url(https://newqwebsite.s3.amazonaws.com/Digital-mid.png); */
  padding: 70px 56px;
  /* height: 50vh; */
  border-radius: 36px;
  margin-top: 48px;
  margin: 0px 90px 0px 90px;
  background-size: cover;
  display: flex;
  align-items: center;
}
.digital_experience h3 {
  font-size: 27px;
  color: #fff !important;
  font-weight: 600;
  line-height: 46px;
  position: absolute;
  /* top: 41%; */
  margin-left: 56px;
}

.half_box {
  padding: 0px 60px;
}
.digital_card {
  background: #fff;
  padding: 22px 27px;
  border-radius: 16px;
  /* margin: 0px 22px; */
  margin-bottom: 24px;
  height: 90%;
  background-color: #ffffff73;
  /* transform: translate3d(0, calc(100% - 3.5rem), 0); */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.digital_card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
}
.digital_para {
  font-size: 13px;
  color: #000;
}
.digital-gery {
  background: #f0f0f0;
  padding: 30px 0px;
  border-radius: 50px;
}
.digital_experience img {
  height: 300px;
  border-radius: 50px;
  object-fit: cover;
  filter: brightness(0.5);
}

#vision {
  background-image: url(../img/vision.jpg);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px;
}
.digital_card.vision {
  background: #fff;
  padding: 22px 27px;
  border-radius: 16px;
  margin: 0px 50px;
  margin-bottom: 24px;
  height: 100%;
  background-color: #ffffff73;
  /* transform: translate3d(0, calc(100% - 3.5rem), 0); */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contentLeft,
.contentRight {
  width: 100%;
}
.contentLeft .row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.contentLeft .row .imgWrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
  padding: 0;
}
.contentLeft .row .imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: 0.3s ease;
}
.contentLeft .row .imgWrapper:hover img {
  transform: scale(1.5);
}
.contentLeft .row .imgWrapper:nth-child(odd) {
  transform: translateY(-20px);
}
.contentLeft .row .imgWrapper:nth-child(even) {
  transform: translateY(20px);
}
.contentRight .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contentRight .content h4 {
  font-size: 22px;
  font-weight: 400;
  color: #d35400;
}
.contentRight .content h2 {
  font-size: 40px;
  color: #1e272e;
}
.contentRight .content p {
  font-size: 16px;
  color: #343434;
  line-height: 28px;
  padding-bottom: 10px;
}
.contentRight .content a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 13px 30px;
  color: #fff;
  background: #d35400;
  border-radius: 8px;
  user-select: none;
}
.container.about {
  width: 90%;
  height: 100%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 60px;
  padding: 35px 0;
}
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
  .contentLeft .row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contentLeft .row .imgWrapper {
    height: 150px;
  }
  .contentRight .content h4 {
    font-size: 18px;
  }
  .contentRight .content h2 {
    font-size: 30px;
  }
}

.team {
  width: 100%;
  height: 44vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-card {
  position: relative;
  font-family: sans-serif;
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
  margin: 0 25px;
}
.profile-card:hover {
  border-radius: 10px;
  height: 260px;
}
.profile-card .img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.6s;
  z-index: 99;
}
.profile-card:hover .img {
  transform: translateY(-60px);
}
.img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: 0.6s;
}
.profile-card:hover img {
  border-radius: 10px;
}
.caption {
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: 0.6s;
}
.profile-card:hover .caption {
  opacity: 1;
}
.caption h3 {
  font-size: 21px;
  font-family: sans-serif;
}
.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}
.caption .social-links a {
  color: #333;
  margin-right: 15px;
  font-size: 21px;
  transition: 0.6s;
}
.social-links a:hover {
  color: #0c52a1;
}

.mobile {
  display: none;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .box_card {
    position: static !important;
    margin-top: -40px !important;
  }

  .about-image figure img {
    height: 150px !important;
    width: 300px !important;
    border-radius: 20px !important;
  }

  .team {
    width: 100%;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .profile-card {
    margin: 30px 26px;
  }

  .right-section {
    max-height: 100%;
  }

  .mobile {
    display: block;
  }
  #servicesNav {
    display: none;
  }

  .container.about {
    display: block;
  }

  #vision {
    padding: 0;
  }
  .digital_card.vision {
    margin: 14px 18px;
    margin-bottom: 24px;
    height: auto;
    background-color: #ffffff73;
    /* transform: translate3d(0, calc(100% - 3.5rem), 0); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    gap: 10px;
  }
  .slide img.zoomed {
    width: 300px;
    height: 400px;
    position: fixed;
    left: 12%;
    top: 20%;
    z-index: 1000;
    transform: scale(1) translatey(0) !important;
    /* align-items: center; */
  }

  .landingpage-services {
    display: none;
  }
  .capabilities {
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    height: 100%;
  }
  .visual-container {
    position: relative;
    width: 330px;
    height: auto;
  }
  .stat-card {
    width: 90%;
  }
  .clients .swiper-pagination {
    /* margin-top: 20px; */
    position: relative;
    margin: 20px 70px;
  }
.Capabilities-description {
        font-size: 12px;
        padding: 0 70px 10px 75px;
        /* margin: 32px; */
        text-align: center;
    }
  .Capabilities-head {
    font-size: 26px;
    padding: 120px 90px 5px 85px;
    /* margin: 32px; */
    text-align: center;
    font-weight: 600;
  }
  .layout-wrapper {
    display: grid;
    grid-gap: 0rem;
    padding: 0rem;
  }
  .travel-card {
    width: 100%;
  }
  .custom-dropdown {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0;
    background: rgba(0, 0, 0, 0.8) !important;
    position: static;
  }
  .dropdown-columns {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }
  .nav-item.active .custom-dropdown {
    display: flex;
  }
  .desktop-hide {
    display: none;
  }
  .custom-dropdown .d-flex.gap-5 {
    gap: 1rem !important;
    font-size: 14px !important;
  }
  .custom-dropdown .d-flex.gap-5 img {
    width: 30px !important;
    height: 30px;
  }
  .section-title {
    font-size: 24px;
    padding: 10px;
  }
  .digital_experience {
    /* background: url(https://newqwebsite.s3.amazonaws.com/Digital-mid.png); */
    padding: 20px 0px;
    /* height: 50vh; */
    border-radius: 36px;
    margin-top: 48px;
    margin: 0px;
    background-size: cover;
    display: flex;
    align-items: center;
  }
  .digital_experience img {
    height: 200px;

    width: 100%;
  }
  #service {
    background-size: cover;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .box_card {
    position: static !important;
    margin-top: -40px !important;
  }

  .about-image figure img {
    height: 150px !important;
    width: 300px !important;
    border-radius: 20px !important;
  }

  .mobile {
    display: block;
  }
  #servicesNav {
    display: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .box_card {
    position: static !important;
    margin-top: -40px !important;
  }

  .about-image figure img {
    height: 150px !important;
    width: 300px !important;
    border-radius: 20px !important;
  }

  .mobile {
    display: block;
  }
  #servicesNav {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .box_card {
    position: static !important;
    margin-top: -40px !important;
  }

  .about-image figure img {
    height: 150px !important;
    width: 300px !important;
    border-radius: 20px !important;
  }

  .mobile {
    display: block;
  }
  #servicesNav {
    display: none;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .custom-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    left: -900px;
    width: 1250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background: rgb(0 0 0 / 50%) !important;
    padding: 2rem;
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 20px;
  }
}

.about_text_wrapper {
  position: relative;
}
.about-image {
  display: flex;
  justify-content: flex-end;
}
.box_card {
    max-width: 500px;
    width: 100%;
    background-color: #2e2e2e;
    border-radius: 12px;
    padding: 40px;
    position: absolute;
    top: 70px;
    left: 40px;
    color: #fff;
}

.about-image figure img {
  /* max-width: 100%; */
  height: 600px;
  width: 1000px;
  border-radius: 20px;
}
.about_heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}
.box_card p {
  
  line-height: 28px;
  color: #fff;
  margin-top: 1rem;
}
/* Timeline Section */
.timeline {
  padding: 120px 0;
  background: white;
}

.timeline-container {
  position: relative;

  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #11b3ff, #0a6b99);

  transform: translateX(-50%);
}

.timeline-item {
  position: relative;

  display: flex;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #11b3ff 30%, #0a6b99 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-head h1 {
  
    font-size: 40px;
   
    margin-bottom: 2rem;
}
  .hero h1 {
    font-size: 30px;
  }

  .timeline-line {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-year {
    left: 30px;
  }

  .timeline-content::before {
    left: -30px !important;
    border-right-color: white !important;
    border-left-color: transparent !important;
  }
}

/* Timeline Animation Keyframes */
@keyframes timelineYearBounce {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes timelineContentSlide {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Timeline Progress Indicator */
.timeline-progress {
  box-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

/* Enhanced Timeline Styles */
.timeline-item {
  will-change: transform, opacity;
  z-index: 3;
}

.timeline-year {
  will-change: transform;
}

.timeline-content {
  will-change: transform, opacity;
}

.about-us-page-tital {
  overflow: hidden;
}
.video-wrapper-withput-notification {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-height: 600px;
  border-radius: 20px;
}
.video-wrapper-withput-notification video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


