/* CSS Variables for Theming */
:root {
  --primary-color: #449dfd; /* Light Blue */
  --secondary-color: #6C757D;
  --background-color: #F8F9FA;
  --text-color: #343A40;
  --accent-color: #007BFF; /* Updated to a blue color */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Roboto', sans-serif;
}
/* Global Mobile Adjustment */
@media (max-width: 768px) {
  /* Hero Section Adjustments */
  .hero-heading {
    font-size: 2rem;
  }
  /* Start of hero text animation */
  .tracking-in-expand {
    -webkit-animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
            animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  }
  /* ----------------------------------------------
 * Generated by Animista on 2024-11-25 22:23:36
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
 .client-image {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    border-radius: 10px; /* Optional: Adds rounded corners */
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a slight shadow effect */
    transition: transform 0.3s ease-in-out;
}

.client-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/* end of hero text animation */
  .hero p {
    font-size: 1rem;
  }

  /* Adjust Button Size */
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  /* Adjust Section Headings */
  section h2 {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  /* Expertise Cards Adjustments */
  .expertise-cards {
    grid-template-columns: 1fr;
  }

  /* Industries Grid Adjustments */
  @media (max-width: 768px) {
    .industries-grid {
      grid-template-columns: 1fr;
      gap: 30px; /* Ensure gap is applied */
    }
    .industry-card {
      margin-bottom: 30px; /* Fallback spacing */
    }
    .industry-card:last-child {
      margin-bottom: 0;
    }
  }

  /* Footer Adjustments */
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    margin: 20px 0;
    text-align: center;
  }
}
/* Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Global Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: 1.5;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav .logo {
  display: flex;
  flex-direction: column;
  align-items: center;   /* Centers text horizontally */
  
}

.main-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;       /* Very bold for strong branding */
  font-size: 1.5rem;        /* Adjust size to your liking */
  letter-spacing: 1px;    /* Optional spacing for a more “logo-like” feel */
  color: var(--primary-color);
}

.sub-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;       /* Lighter weight */
  font-size: 0.8rem;        /* Smaller size */
  color: var(--primary-color);
  margin-top: 0.2rem;     /* Space between lines */
}


nav .nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Responsive Menu */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  align-items: center;
}

/* Hide the close icon by default */
.close-icon {
  display: none;
}

/* Show close icon and hide open icon when menu is open */
#menu-toggle:checked + .menu-icon .open-icon {
  display: none;
}

#menu-toggle:checked + .menu-icon .close-icon {
  display: block;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  /* Show the menu icon */
  .menu-icon {
    display: flex;
    position: fixed;
    top: 15px;
    right: 30px;
    z-index: 1001;
  }

  /* Hide the navigation links by default */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: fit-content;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    transition: right 0.3s;
    z-index: 999;
  }

  .nav-links li {
    margin: 20px 0;
  }

  /* When menu-toggle is checked, show the navigation */
  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  /* Adjust flexbox ordering for mobile */
  nav .logo {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#particles-left {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#particles-right {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-heading {
  font-size: 3rem;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-top: 10px;
  font-family: var(--body-font);
}

.hero .btn {
  margin-top: 30px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 50px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

/* Services Section */
#services {
  padding: 80px 0;
}

#services h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 50px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

/* Wrapper and Slider Styles */
#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.slider {
  position: relative;
}

.slider .swiper {
  z-index: 1;
}

.slider .swiper img {
  width: 100%;
}

/* Custom Previous and Next Buttons */
.slider__prev,
.slider__next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
  top: calc(50% - 25px);
  cursor: pointer;
  transition: opacity 0.3s, box-shadow 0.3s;
}

.slider__prev::after,
.slider__next::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  top: 20px;
  left: 20px;
  box-sizing: border-box;
}

.slider__prev.is-edge,
.slider__next.is-edge {
  opacity: 0.6;
  box-shadow: none;
  cursor: not-allowed;
}

.slider__prev {
  left: 10px;
}

.slider__prev::after {
  border-top: 3px solid #333;
  border-left: 3px solid #333;
}

.slider__next {
  right: 10px;
}

.slider__next::after {
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
}

/* Service Card Styles */
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.card-content p {
  font-size: 1rem;
  color: var(--secondary-color);
  font-family: var(--body-font);
}

/* Adjustments for Swiper */
.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider__prev,
  .slider__next {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }

  .slider__prev::after,
  .slider__next::after {
    top: 15px;
    left: 15px;
    width: 8px;
    height: 8px;
  }

  .slider__prev {
    left: 5px;
  }

  .slider__next {
    right: 5px;
  }
}

/* Our Expertise Section */
.expertise-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.expertise-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

/* Tabs Container */
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tabs Navigation */
.tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.tabs .tab-link {
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--secondary-color);
  transition: color 0.3s, border-bottom 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.tabs .tab-link.current {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

/* Tab Content Animations */
.tab-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.tab-content.current {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* Expertise Cards */
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.card-content {
  padding: 30px 20px;
  text-align: center;
}

.card-content i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.expertise-card:hover i {
  color: var(--accent-color);
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.card-content p {
  font-size: 1rem;
  color: var(--secondary-color);
  font-family: var(--body-font);
}

/* Divider */
.section-divider {
  width: 80%;
  height: 1px;
  margin: 60px auto;
  background-color: #ccc;
  opacity: 0.6;
}

/* About Us Section */
.about-section {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 15px;
}

.about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-right: 30px;
}

.about-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-color);
  font-family: 'Playfair Display', serif; 
}

.about-heading span {
  color: var(--primary-color);
}

.about-description {
  font-size: 1.125rem;
  color: var(--secondary-color);
  line-height: 1.8;
  font-family: var(--body-font);
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  position: relative;
  padding-left: 30px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 5px solid var(--primary-color);
  border-radius: 15px;
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Parallax Background for About Us */
#parallax-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/About_US_bg_2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: -1;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content,
  .about-image {
    max-width: 100%;
    padding: 0;
  }

  .about-content {
    margin-bottom: 30px;
  }

  .about-image .image-wrapper::before {
    display: none;
  }
}
/* Industries We Serve Section */
.industries-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* .industry-card {
  position: relative;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
} */
.industry-card {
  position: relative;
  aspect-ratio: 16 / 9; /* Use aspect ratio instead of fixed height */
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  
}
.background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  z-index: -1;
}

.industry-card:hover .background-image {
  transform: scale(1.1);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.industry-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.overlay h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
}

/* Clients Section Styles */
.clients-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.client-testimonial {
  margin-bottom: 40px;
}

.client-testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--secondary-color);
}

.client-testimonial h4 {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--text-color);
}

/* Contact Us Section */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: #f9f9f9;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-family: var(--body-font);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  margin: 10px;
  max-width: calc(50% - 20px);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form .form-field {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.contact-form .form-group .form-field {
  width: 48%;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 1rem;
  color: var(--text-color);
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: var(--body-font);
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form .form-field label {
  position: absolute;
  top: -20px;
  left: 15px;
  background: #fff;
  padding: 0 5px;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.contact-info .info-item {
  margin-bottom: 30px;
}

.contact-info .info-item i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-info .info-item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.contact-info .info-item p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--body-font);
}

.contact-info .info-item a {
  color: #fff;
  text-decoration: underline;
}

.contact-info .info-item a:hover {
  color: #e0e0e0;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
    margin: 10px 0;
  }

  .contact-info {
    margin-top: 30px;
  }
}
/* Footer */
footer {
  background: #1f1f1f;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin: 20px 10px;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--body-font);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
}

.social-links a {
  margin-right: 15px;
  color: #ccc;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  font-family: var(--body-font);
}

.newsletter-form button {
  padding: 10px;
  background: var(--primary-color);
  border: none;
  border-radius: 0 5px 5px 0;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #0056b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.875rem;
}
