/* --primary: #0a5c5c; */
/* --accent-color: #20c997; */
/* --dark: #212529; */
:root {
  --primary: #114049;
  --primary-dark: #084545;
  --primary-light: #0c7373;
  --secondary: #f8f9fa;
  --dark: #4b5563;
  --accent-light: #0a2d33;
  --accent-color: #74c9ba;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #198754;
  --info: #0dcaf0;
  --warning: #ffc107;
  --danger: #dc3545;
  --white: #ffffff;
  --black: #222222;
  --border-color: #e9ecef;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --text-light: #6c757d;
}

/* Inter Regular (400) */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter Italic (400) */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter/Inter-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: "Inter", sans-serif !important;
  color: var(--dark);
  line-height: 1.6;
}

.lunasima-regular {
  font-family: "Lunasima", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lunasima-bold {
  font-family: "Lunasima", sans-serif;
  font-weight: 700;
  font-style: normal;
}


.nav-menu {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid #e9e9e9;
}

/* footer */


.footer-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .footer-contact-item i {
  color: var(--primary);
  /* green icon */
  margin-right: 8px;
  min-width: 16px;
  /* keeps icons aligned */
  margin-top: 4px;
  /* adjust for vertical alignment */
}

.footer-contact .footer-contact-item a,
.footer-contact .footer-contact-item span {
  color: var(--bs-secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact .footer-contact-item a:hover {
  color: var(--primary-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



.footer-link {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-weight: 5400;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-white {
  color: var(--white) !important;
}

.text-darkgray {
  color: var(--dark) !important;
}

.text-darkGreen {
  color: var(--primary) !important;
}

/* Override Bootstrap primary color */
.text-primary {
  color: var(--primary) !important;
}

.text-black {
  color: var(--black) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Navigation */
.navbar-brand {
  font-weight: 700;
}

.nav-link {
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

/* Dropdown Items */
.dropdown-item {
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--white);
}

/* Cards */
.card {
  /* transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden; */
  border-width: 2px;
  border: 2px solid rgba(255, 255, 255, 0.01);
}

.service-card-frame {
  border-width: 2px;
  border: 2px solid rgba(255, 255, 255, 0.01);
}

.vision-card-frame {
  border-width: 2px;
  background-color: transparent;
}

.service-card-frame:hover {
  border: 2px solid var(--primary);
}

.service-description {
  text-align: justify;
}

/* .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;

} */

/* Buttons */
.btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
}

/* Hero Section */
.hero-section {
  background-color: var(--secondary);
}

/* Footer */
footer a:hover {
  color: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .card-title {
    font-size: 1.25rem;
  }
}

.hover\:underline:hover {
  text-decoration-line: underline !important;
}

/* Custom Css */

.cpy-5 {
  padding-top: 128px;
  padding-bottom: 128px;
}

@media (min-width: 1400px) {

  .container {
    max-width: 1400px;
  }

  .company-container {
    max-width: 1520px !important;
  }

  #animation {
    position: absolute;
    top: 20px;
  }
}

/* Hero Section */

.sub-title {
  background-color: rgb(229, 229, 229);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 5px;
}

.section-hero {
  padding-top: 128px;
  padding-bottom: 128px;
  background-color: #ffffff !important;
}

.hero-title {
  font-size: 3.7rem;
  line-height: 1;
}

.hero-img {
  border-radius: 10px;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/* service section */

.service-advantage-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.service-iso-icons {
  width: 100px;
  height: auto;
}

.service-icon {
  color: var(--primary);
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: 8px;
}

.serv-service-icon {
  width: 100%;
  height: 100px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 2.875rem;
  line-height: 1;
  margin-bottom: 8px;
}

.service-sub-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  /* background-color: #e6eef0; */
  /* width: inherit; */
  text-align: center !important;
}

.service-title-description {
  font-size: 1.25rem;
  line-height: 1.625;
}

.value-card-title {
  text-align: left !important;
}

.home-service-card-title {
  text-align: center;
}

.card-title {
  letter-spacing: -0.025em;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.project-card-title {
  letter-spacing: -0.025em;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .service-title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .card-row {
    padding: 48px 80px;
  }
}

/* Advantage Service */


@media (min-width: 1024px) {
  .advantage-row {
    padding: 48px 168px;
  }
}


/* Blog */


@media (min-width: 1024px) {
  .blog-row {
    padding: 48px 168px;
  }
}


/* Shop */

@media (min-width: 1024px) {
  .shop-row {
    padding: 48px 168px;
  }
}

/* Cta */

.cta-title {
  font-size: 3rem;
  line-height: 1;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.625;
}

.cta-text {
  font-size: 20px;
  line-height: 28px;
}

.flex-none {
  flex: none;
}

.cta-icon {
  padding-right: 8px;
}

.gap-4 {
  gap: 1rem !important;
}

/* Footer */

.footer-div {
  padding-top: 70px;
  padding-bottom: 20px;
}

.social-icon {
  padding: 0px 5px;

  /* padding: 5px 10px; */
}

.footer-social-icon {
  /* background-color: var(--primary) !important; */
  border-radius: 2px;
}

.footer-social-icon i {
  color: var(--primary) !important;
  font-size: 20px;
}


/*  Service Detail Page  */

.detail-hero-section {
  padding: 80px 0;
  text-align: center;
}

.detail-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.detail-hero-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-custom {
  background: var(--primary);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  /* border: none; */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 30px;
  margin: 0 10px;
  color: var(--white);
}

.btn-primary-custom:hover {
  /* background-color: var(--primary); */
  border: 2px solid var(--primary-dark);
  background-color: var(--white);
  /* background: var(--primary-light); */
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(17, 64, 73, 0.25);
  color: var(--primary);
  text-decoration: none;
}

.btn-outline-custom a {
  color: var(--primary);
}



.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  /* padding: 16px 32px; */
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  font-weight: 600;
  margin: 0 10px;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(17, 64, 73, 0.25);
  background-color: var(--primary);
}

.btn-outline-custom:hover a {
  color: white;
}

.detail-process-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: 8px;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.process-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.section-padding {
  padding: 80px 0;
}

.sof-sec-service {
  padding: 0 0 80px 0;
}

.pricing-section {
  background-color: var(--white);
}

/* .pricing-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  margin-bottom: 2rem;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--secondary-color);
}

.pricing-features li:before {
  content: "✓";
  color: var(--primary);
  margin-right: 0.5rem;
} */

.section-faq {
  background-color: var(--light);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--dark);
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
  display: none;
}

.faq-answer.show {
  display: block;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
  /* margin-bottom: 2rem; */
}

.service-icon {
  /* width: 60px;   */
  /* height: 60px; */
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 5rem;
  /* background-color: var(--light); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.25rem 0;
  color: var(--gray);
}

.service-list li:before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

.gap-8 {
  gap: 2rem;
}

.section-pricing-new {
  background-color: var(--light);
}

.pricing-card-new {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  background: white;
  transition: all 0.3s ease;
}

.pricing-card-new.featured-card {
  border-color: var(--primary);
  transform: none;
}

.popular-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.popular-badge i {
  margin-right: 0.5rem;
}

.pricing-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pricing-price-new {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--dark);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pricing-features-new {
  list-style: none;
  padding: 0;
  /* margin-bottom: 2.5rem; */
  text-align: left;
}

.pricing-features-new li {
  padding: 0.5rem 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.pricing-features-new li i {
  color: var(--primary);
  margin-right: 1rem;
  width: 16px;
  flex-shrink: 0;
}

.btn-pricing-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: var(--white);
  padding: 12px 2rem;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-pricing-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn-pricing-primary {
  border: 2px solid var(--primary) !important;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 2rem;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-pricing-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary) !important;
}

.pricing-features-new li svg {
  color: var(--primary);
  margin-right: 1rem;
  width: 16px;
  flex-shrink: 0;
}

.pricing-button {
  text-align: center;
}

/* portfolio section */

.portfolio-section {
  background-color: var(--white);
  /* padding: 80px 0; */
}

.portfolio-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.portfolio-image {
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.portfolio-tag {
  background-color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--white);
}


/* why choose us section */

.why-choose-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.why-choose-image {
  height: 180px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.why-choose-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -25px auto 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  position: relative;
  z-index: 2;
}

.why-choose-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.why-choose-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  padding: 0 20px;
}

.why-choose-description {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 20px 25px;
}

.btn-links {
  text-decoration: none;
}


@media (min-width: 1440px) {
  .pricing-row {
    padding: 48px 168px;
  }

  .why-choose-2-row {
    margin-top: 3rem;
  }

  .portfolio-row {
    padding: 48px 168px;
  }

  .choose-us-row {
    padding: 48px 168px;
  }

  /* .process-row {
    padding: 48px 168px;
  } */

  /* .detail-service-row {
    padding: 48px 168px;
  } */
}

@media (max-width: 1440px) {
  .popular-badge {
    transform: translateX(-37%);
    left: 43%;
  }
}


/* contact us page */

.contact-form-section {
  background-color: white;
}

.contact-form {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.form-control.textarea {
  min-height: 120px;
  resize: vertical;
}

/* contact checkbox */

/* Privacy Policy Checkbox */
.privacy-checkbox-white-bg {
  border: 1px solid #e9ecef;
  background: #f8f9fa;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.infg-privacy-checkbox {
  background: #29535c !important;
  border: 0;
}


.infg-privacy-checkbox .form-check-label,
.infg-privacy-checkbox a {
  color: var(--white) !important;
}


.privacy-checkbox .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #114049;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  flex-shrink: 0;
}

.privacy-checkbox .form-check-input:checked {
  background-color: #114049;
  border-color: #114049;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.privacy-checkbox .form-check-input:focus {
  border-color: #1a5a66;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(17, 64, 73, 0.25);
}

.privacy-checkbox .form-check-label {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}

.privacy-link {
  color: #114049;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #1a5a66;
  text-decoration: underline;
}

/* Error state for required checkbox */
.privacy-checkbox .form-check-input:invalid {
  /* border-color: #dc3545; */
  border-color: #1a5a66;
}

.privacy-checkbox .form-check-input:invalid+.form-check-label {
  /* color: #dc3545; */
  color: #1a5a66;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-checkbox {
    padding: 12px;
    gap: 8px;
  }

  .privacy-checkbox .form-check-label {
    font-size: 0.9rem;
  }
}



/* map section */

.map-section {
  background-color: var(--light);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  height: 450px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 64, 73, 0.05);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  display: none;
}

.form-btn {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  transition: background-color 0.3s ease;
  margin-left: 0px !important;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, -100%) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, -120%) rotate(-45deg);
  }
}

/* social media section */

.contact-info-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); */
  opacity: 0.3;
}

.contact-info-section .section-title {
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.contact-info-section .section-subtitle {
  color: var(--dark);
  position: relative;
  z-index: 2;
}

.contact-grid {
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

.contact-item {
  display: flex;
  align-items: center;
  /* margin-bottom: 1.5rem; */
  padding: 1rem;
  /* background: rgba(17, 64, 73, 0.05); */
  border-radius: 12px;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background: var(--light);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(17, 64, 73, 0.3);
}

.contact-icon-wrapper i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 1rem;
}

.contact-details a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary);
}

.social-section {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 64, 73, 0.1);
}

.social-section h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-links-new {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link-new {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
}

.social-link-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link-new:hover::before {
  opacity: 1;
}

.social-link-new:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.social-facebook-new {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-linkedin-new {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-line-new {
  background: linear-gradient(135deg, #00c300, #00e600);
}

.hours-card-new {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

/* .hours-card-new:hover {
  transform: translateY(-5px);
} */

.hours-title-new {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
  position: relative;
}

.hours-title-new::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.hours-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list-new li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(17, 64, 73, 0.05);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.hours-list-new li:hover {
  background: rgba(17, 64, 73, 0.1);
}

.day-new {
  font-weight: 600;
  color: var(--primary);
}

.time-new {
  color: var(--dark);
  font-weight: 500;
}

.hours-card-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  height: 100%;
}

.social-icon:hover path {
  color: var(--primary) !important;
}

/* blog page */
.breadcrumb-section {
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-custom {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-custom .breadcrumb-item {
  color: var(--secondary-color);
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-custom .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
  text-decoration: underline;
}

/* .article-opacity{
  opacity: 1 !important;
} */

.blog-content-section {
  padding: 60px 0;
  background: white;
}

.blog-post-card {
  background: var(--white);
  border-radius: 5px;
  padding: 0rem 3rem;
  /* border: 1px solid var(--gray); */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
  margin-bottom: 2rem;
}

.blog-promo-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  /* margin-bottom: 2rem; */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.blog-featured-image {
  width: 100%;
  height: auto;
  /* height: 400px; */
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 2rem;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.blog-meta-item i {
  color: var(--primary);
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.blog-content strong {
  color: var(--primary);
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blogsb_link {
  text-decoration: none;
  color: var(--primary);
}

.sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
} */

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(17, 64, 73, 0.1);
  transition: background 0.3s ease;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li:hover {
  background: rgba(17, 64, 73, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.service-list li:before {
  display: none;
}

.service-check {
  width: 20px;
  height: 20px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-check i {
  color: white;
  font-size: 0.8rem;
}

.service-text {
  color: var(--secondary-color);
  font-weight: 500;
}

.btn-blog {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  cursor: pointer;
}

.btn-blog-quote {
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary);
}

.btn-blog-products {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn-blog-quote:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.btn-blog-products:hover {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.cta-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
}

.cta-button-primary {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.cta-button-primary:hover {
  background: linear-gradient(135deg, #357abd, #2968a3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
  color: white;
}

.cta-button-dark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.cta-button-dark:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(17, 64, 73, 0.3);
  color: white;
}

.promo-card {
  padding: 0rem;
}

.promo-banner {
  /* background: linear-gradient(135deg, #87ceeb, #4a90e2); */
  background: transparent;
  border-radius: 5px;
  /* padding: 2rem; */
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

.promo-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.promo-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.tags-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.tags-section, .tags-title {
  pointer-events: none !important;
}


.tags-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.blog-content-subtitle {
  color: var(--primary);
  font-weight: 600;
}

.tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-post-card {
    padding: 2rem;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* blog grid */



.blog-section {
  padding: 80px 0;
  background: white;
}

.search-filter-section {
  display: none;
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(17, 64, 73, 0.1);
  outline: none;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 64, 73, 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Always 2 columns */
  gap: 2rem;
  justify-content: start;
  /* align items to the left */
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    /* single column for mobile */
  }
}


.blog-card {
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
} */

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--primary-light);
}

.blog-card-excerpt {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.blog-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-size: 0.875rem;
}

.blog-card-meta-item i {
  color: var(--primary);
}

.blog-card-button {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  /* border-radius: 4px; */
  background: var(--primary);
  color: var(--white);
  /* padding: 0.75rem 1.5rem; */
  border: none;
  border-radius: 5px;
  /* font-weight: 600; */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 1px solid var(--primary);
}

.blog-card-button:hover {
  background: var(--white);
  /* transform: translateY(-2px); */
  /* box-shadow: 0 8px 25px rgba(17, 64, 73, 0.3); */
  color: var(--primary);
  border: 1px solid var(--primary);
}

.pagination-section {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination-custom {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 64, 73, 0.3);
}

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-item.disabled:hover {
  background: transparent;
  border-color: var(--border-color);
  color: var(--secondary-color);
  transform: none;
  box-shadow: none;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  transform: translateX(5px);
}

.category-count {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
  border-bottom: none;
}

.recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-content h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.recent-post-content h6 a {
  color: inherit;
  text-decoration: none;
}

.recent-post-content h6 a:hover {
  color: var(--primary-light);
}

.recent-post-date {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.results-count {
  color: var(--secondary-color);
  font-weight: 500;
}

.sort-dropdown {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  background: white;
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .search-filter-section {
    padding: 1.5rem;
    display: none;
  }

  .filter-tabs {
    justify-content: center;
  }

  .results-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.technologies-section {
  background: var(--light);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.tech-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tech-item h6 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}

.mb-10rem {
  margin-bottom: 5rem;
}

/* Why Choose Us Section */
.feature-card {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}



.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  color: white;
  font-size: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* whychoose version 2 */

.why-choose-2-section {
  background: white;
}

.why-choose-2-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-choose-2-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.why-choose-2-icon i {
  color: white;
  font-size: 1rem;
}

.home-service-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.home-service-icon i {
  color: white;
  font-size: 1.2rem;
}

.why-choose-2-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {

  .why-choose-2-card {
    padding: 2rem;
  }

  .why-choose-2-title {
    font-size: 1.1rem;
  }
}

/* laravel */
/* language switch */

.form-language-switch {
  padding: 1rem 0rem;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

a.page-link {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--primary) !important;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.blog-content .attachment__caption {
  display: none;
}

/* about us page */

/* Custom Bootstrap overrides */


.about-us-text-primary {
  color: var(--primary) !important;
}

.badge {
  background-color: var(--dark) !important;
}


/* About Section */
.about-section {
  padding: 100px 0;
}

.about-text {
  padding-right: 20px;
  text-align: justify;
}

/* Vision Mission Section */
.vision-mission-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.vision-mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23114049" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23114049" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23114049" opacity="0.05"/><circle cx="10" cy="90" r="1" fill="%23114049" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}

.vision-mission-section .container {
  position: relative;
  z-index: 2;
}

/* Mission & Vision Styles */
.mission-vision-container {
  position: relative;
  padding: 60px 0;
}

.mission-vision-item {
  position: relative;
  /* padding: 40px 0; */
  margin-bottom: 60px;
}

/* .mission-vision-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--primary-light));
            border-radius: 3px;
        } */

.mission-vision-content {
  padding-left: 40px;
}

.mission-vision-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(17, 64, 73, 0.3);
  position: relative;
}

.mission-vision-icon::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.mission-vision-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
}

.mission-vision-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-color));
  border-radius: 2px;
}

.mission-vision-text {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.vision-quote {
  /* font-size: 1.4rem; */
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding: 20px 0;
}

.vision-quote::before,
.vision-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Values Section */
.values-container {
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
  border-radius: 20px;
  padding: 60px 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.values-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.values-container .container {
  position: relative;
  z-index: 2;
}

.values-title {
  /* color: white; */
  color: rgb(33, 37, 41);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.values-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  /* background: rgba(255, 255, 255, 0.1); */
  /* background: linear-gradient(135deg, #8da192 0%, #a8abaa 100%); */
  background: linear-gradient(135deg, #c0c9c20f 0%, #afb3b18c 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::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;
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-title {
  /* color: white; */
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-description {
  /* color: rgba(255, 255, 255, 0.8); */
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */

.team2-card:hover .role-badge {
  bottom: -10px;
}

.team-member-icons {
  width: 200px;
  height: auto;
}

.team-section {
  padding: 100px 0;
}

.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: none;
}

/* .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(17, 64, 73, 0.15) !important;
        } */

.team-card img {
  height: 285px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .team-card:hover img {
            transform: scale(1.05);
        } */

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background-color: var(--light);
}

.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: none;
  height: 100%;
}

/* .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(17, 64, 73, 0.15) !important;
        } */

.project-card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .project-card:hover img {
            transform: scale(1.05);
        } */

.project-tech {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin: 2px;
}

/* Video Section */
.video-section {
  padding: 100px 0;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(17, 64, 73, 0.2);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

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

/* Customers Section */
.customers-section {
  padding: 100px 0;
  background-color: var(--light);
}

.customer-logo {
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.customer-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Logo Slider Styles */
.logo-slider-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.logo-slider-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.logo-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Optional: Add fade edges */
.logo-slider-container::before,
.logo-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 249, 250, 1), transparent);
}

.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 249, 250, 1), transparent);
}

.testimonial-card {
  border: none;
  box-shadow: 0 5px 15px rgba(17, 64, 73, 0.1);
  transition: transform 0.3s ease;
}

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


/* Smooth scrolling */
/* html {
            scroll-behavior: smooth;
        } */

/* Animation for elements coming into view */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover effects */
.about-us-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 64, 73, 0.3);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}



/* Team2 Section */
.team2-section {
  padding: 100px 0;
  background: var(--white);
}

/* Team Cards */
.team2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team2-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 64, 73, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.team2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(17, 64, 73, 0.15);
}

.team2-card:hover::before {
  transform: scaleX(1);
}

/* Role Icon */
.role-icon-container {
  position: relative;
  margin-bottom: 30px;
}

.role-icon {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
  font-size: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 25px rgba(17, 64, 73, 0.2);
}

.role-icon::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border: 2px solid var(--primary);
  border-radius: 13px;
  /* border-radius: 50%; */
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.team2-card:hover .role-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(17, 64, 73, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Role Badge */
.role-badge {
  transition: all 0.3s ease;
  position: absolute;
  bottom: -13px;
  /* bottom: -10px; */
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-light);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Team Member Info */
.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.member-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.member-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Expertise Tags */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.expertise-tag {
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team2-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .team2-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team2-card {
    padding: 30px 25px;
  }

  .role-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .role-icon::after {
    width: 100px;
    height: 100px;
  }

  .team2-stats {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}





/* Infinity IT Group */
/* Hero Section - Split Design */
.infg-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: white;
  position: relative;
  overflow: hidden;
}

.infg-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  padding: 100px 0;
}

.infg-hero-content {
  padding-left: 50px;
}

.infg-hero-badge {
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  border: 1px solid rgba(17, 64, 73, 0.2);
}

.infg-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.infg-hero-title .accent {
  color: var(--accent-color);
  position: relative;
}

.infg-hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.infg-hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.infg-btn-primary-custom {
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.infg-btn-primary-custom:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(17, 64, 73, 0.25);
  color: white;
  text-decoration: none;
}

.infg-btn-outline-custom {
  background: transparent;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.infg-btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Hero Visual */
.infg-hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-shape {
  position: absolute;
  border-radius: 20px;
}

.infg-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: 50px;
  right: 100px;
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

.infg-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 100px;
  left: 50px;
  transform: rotate(-20deg);
  animation: float 8s ease-in-out infinite 2s;
}

.infg-shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(32, 201, 151, 0.3);
  top: 150px;
  left: 150px;
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }

  50% {
    transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 10deg));
  }
}

/* Stats Section */
.infg-stats-section {
  background: var(--primary);
  padding: 80px 0;
  color: white;
}

.infg-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}

.infg-stat-item {
  position: relative;
}

.infg-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.infg-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.infg-stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* About Section */
.infg-about-section {
  padding: 120px 0;
  background: white;
}

.infg-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infg-about-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.infg-about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.infg-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.infg-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.infg-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(17, 64, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.infg-feature-text {
  font-weight: 600;
  color: var(--primary);
}

.infg-about-visual {
  position: relative;
  height: 500px;
}

.infg-about-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(17, 64, 73, 0.1);
  border: 1px solid var(--border-color);
}

.infg-card-1 {
  top: 0;
  left: 0;
  width: 250px;
  z-index: 3;
}

.infg-card-2 {
  top: 100px;
  right: 0;
  width: 280px;
  z-index: 2;
}

.infg-card-3 {
  bottom: 0;
  left: 50px;
  width: 220px;
  z-index: 1;
}

/* Companies Section
.infg-companies-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.infg-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.infg-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.infg-section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.infg-companies-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.infg-company-card {
  background: white;
  border-radius: 15px;
  padding: 50px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.infg-company-logo {
  width: 180px;
  height: auto;
}

.infg-company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.infg-company-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.infg-company-icon {
  width: 180px;
  height: 80px;
  background: var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.infg-company-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.infg-company-tagline {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 1rem;
}

.infg-company-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.infg-company-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.infg-service-badge {
  background: rgba(17, 64, 73, 0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.infg-company-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.infg-company-card:hover .infg-company-link {
  color: var(--accent-color);
} */

/* Companies Section */
.infg-companies-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, var(--light-bg) 100%);
  position: relative;
  overflow: hidden;
}

.infg-companies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="companies-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23114049" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="1000" height="1000" fill="url(%23companies-grid)"/></svg>');
  z-index: 1;
}

.infg-section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.infg-section-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(17, 64, 73, 0.2);
  position: relative;
  overflow: hidden;
}

.infg-section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: infg-shimmer 3s infinite;
}

@keyframes infg-shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.infg-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
}

.infg-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
  border-radius: 2px;
}

.infg-section-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Companies Grid */
.infg-companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.infg-company-card {
  background: white;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(17, 64, 73, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.infg-company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.infg-company-card:hover::before {
  transform: scaleX(1);
}

.infg-company-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 80px rgba(17, 64, 73, 0.15);
}

/* Floating Elements */
.infg-company-card::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(116, 201, 186, 0.1), rgba(17, 64, 73, 0.05));
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 1;
}

.infg-company-card:hover::after {
  transform: scale(1.2) rotate(45deg);
  opacity: 0.8;
}

.infg-company-header {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.infg-company-logo {
  width: 180px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.infg-success-logo {
  /* background: linear-gradient(135deg, #20b2aa, #48d1cc);
            box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3); */
  text-align: center;
}

/* .infg-systems-logo {
            background: linear-gradient(135deg, #dc143c, #ff6347);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        } */

.infg-company-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.infg-company-subtitle {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.infg-company-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

/* Service Tags */
.infg-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.infg-service-tag {
  background: rgba(17, 64, 73, 0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(17, 64, 73, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.infg-service-tag-link {
  color: var(--primary);
}

.infg-service-tag:hover .infg-service-tag-link {
  color: var(--white);
}

.infg-service-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(116, 201, 186, 0.2), transparent);
  transition: left 0.5s ease;
}

.infg-company-card:hover .infg-service-tag::before {
  left: 100%;
}

.infg-service-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 64, 73, 0.2);
}

/* Learn More Button */
.infg-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 25px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.infg-learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.infg-learn-more:hover::before {
  left: 0;
}

.infg-learn-more:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(17, 64, 73, 0.2);
}

.infg-learn-more i {
  transition: transform 0.3s ease;
}

.infg-learn-more:hover i {
  transform: translateX(5px);
}

/* Connection Line */
.infg-connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, var(--accent-color), var(--primary));
  border-radius: 1px;
  z-index: 1;
}

.infg-connection-line::before,
.infg-connection-line::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px white, 0 0 0 6px var(--accent-color);
}

.infg-connection-line::before {
  top: -6px;
}

.infg-connection-line::after {
  bottom: -6px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .infg-companies-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infg-connection-line {
    display: none;
  }

  .infg-section-title {
    font-size: 2.5rem;
  }

  .infg-company-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {


  .article-opacity {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .infg-section-title {
    font-size: 2rem;
  }

  .infg-section-subtitle {
    font-size: 1.1rem;
  }

  .infg-company-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .infg-company-card {
    padding: 30px 25px;
  }

  .infg-service-tags {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .infg-companies-section {
    padding: 80px 0;
  }

  .infg-company-card {
    padding: 25px 20px;
  }

  .infg-service-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}


/* Services Overview */
.infg-services-section {
  padding: 120px 0;
  background: white;
}

.infg-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.infg-service-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.infg-service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 64, 73, 0.1);
}

.infg-service-icon {
  width: 80px;
  height: 80px;
  background: rgba(32, 201, 151, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.infg-service-card:hover .infg-service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.infg-service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.infg-service-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Us */
.infg-why-choose-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.infg-why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infg-why-choose-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
}

.infg-why-choose-list {
  list-style: none;
  padding: 0;
}

.infg-why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(17, 64, 73, 0.05);
}

.infg-why-choose-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.infg-why-choose-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.infg-why-choose-text p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Leadership Section */
.infg-leadership-section {
  padding: 120px 0;
  background: white;
}

.infg-leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.infg-leader-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(17, 64, 73, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.infg-leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(17, 64, 73, 0.15);
}

.infg-leader-avatar {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, var(--primary), var(--accent-color)); */
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.5rem;
}

.infg-leader-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.infg-leader-position {
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.infg-leader-bio {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Section */
.infg-contact-section {
  padding: 120px 0;
  background: var(--primary);
  color: white;
}

.infg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infg-contact-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.infg-contact-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.infg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.infg-contact-item {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}

.infg-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-bg);
  font-size: 1.2rem;
}

.infg-contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.infg-contact-details p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.infg-contact-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.infg-form-group {
  margin-bottom: 25px;
}



/* Responsive Design */
@media (max-width: 1200px) {
  .infg-hero-container {
    gap: 60px;
  }

  .infg-hero-content {
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .infg-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .infg-hero-content {
    padding-left: 0;
  }

  .infg-hero-title {
    font-size: 3rem;
  }

  .infg-about-grid,
  .infg-why-choose-grid,
  .infg-contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .infg-companies-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .infg-hero-title {
    font-size: 2.5rem;
  }

  .infg-section-title {
    font-size: 2.2rem;
  }

  .infg-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .infg-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .infg-services-grid {
    grid-template-columns: 1fr;
  }

  .infg-leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .infg-hero-title {
    font-size: 2rem;
  }

  .infg-company-card,
  .infg-contact-form {
    padding: 30px 20px;
  }

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

/* Infinity IT Success */


/* Hero Section - Split Design */
.infs-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fdfdfd;
  /* background: white; */
  position: relative;
  overflow: hidden;
}

.infs-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  padding: 100px 0;
}

.infs-hero-content {
  padding-left: 50px;
}

.infs-hero-logo {
  color: var(--primary);
  /* padding: 8px 20px; */
  /* border-radius: 20px; */
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  /* border: 1px solid rgba(17, 64, 73, 0.2); */
}

.infs-hero-badge {
  background: rgba(17, 64, 73, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  border: 1px solid rgba(17, 64, 73, 0.2);
}

.infs-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.infs-hero-title .infs-accent {
  color: var(--accent-color);
  position: relative;
}

.infs-hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.infs-hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Hero Visual */
.infs-hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infs-geometric-shape {
  position: absolute;
  border-radius: 20px;
}

.infs-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: 50px;
  right: 100px;
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

.infs-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 100px;
  left: 50px;
  transform: rotate(-20deg);
  animation: float 8s ease-in-out infinite 2s;
}

.infs-shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(116, 201, 186, 0.3);
  top: 150px;
  left: 150px;
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }

  50% {
    transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 10deg));
  }
}

/* Stats Section */
.infs-stats-section {
  background: var(--primary);
  padding: 80px 0;
  color: white;
}

.infs-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}

.infs-stat-item {
  position: relative;
}

.infs-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.infs-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.infs-stat-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* About Section */
.infs-about-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.infs-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-columns: 1fr 1fr; */
  gap: 50px;
  align-items: center;
}

.infs-about-content {
  margin-bottom: 30px;
}

.infs-about-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.infs-about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: justify;
  line-height: 1.8;
  /* margin-bottom: 30px; */
}

.infs-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.infs-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.infs-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(17, 64, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.infs-feature-text {
  font-weight: 600;
  color: var(--primary);
}

/* Video Container */
.infs-video-container {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infs-video-card {
  position: absolute;
  /* background: white; */
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  /* box-shadow: 0 20px 60px rgba(17, 64, 73, 0.1); */
  /* border: 1px solid var(--border-color); */
}

.infs-main-video {
  top: 50px;
  left: 0;
  width: 100%;
  /* width: 350px; */
  /* height: 250px; */
  height: auto;
  z-index: 3;
}

.infs-video-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}

.infs-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.infs-w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23video-pattern)"/></svg>'); */
}

.infs-video-wrapper video {
  max-width: 70%;
  max-height: 100%;
  border-radius: 15px;
  display: block;
}

.infs-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.infs-video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

.infs-video-accent-1 {
  top: 0;
  right: 50px;
  width: 200px;
  height: 150px;
  z-index: 2;
  background: var(--light-bg);
}

.infs-video-accent-2 {
  bottom: 0;
  right: 0;
  width: 180px;
  height: 120px;
  z-index: 1;
  background: rgba(116, 201, 186, 0.1);
}

/* Services Section */
.infs-services-section {
  padding: 120px 0;
  background: white;
}

.infs-about-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.infs-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.infs-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.infs-section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.infs-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.infs-service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  /* border: 1px solid var(--border-color); */
  border: 1px solid #cdd2d7;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.infs-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(116, 201, 186, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.infs-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(17, 64, 73, 0.15);
  text-decoration: none;
  color: inherit;
}

.infs-service-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, var(--primary), var(--primary-light)); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.infs-service-card:hover .infs-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.infs-service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.infs-service-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.infs-service-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.infs-feature-badge {
  background: rgba(17, 64, 73, 0.08);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.infs-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.infs-service-card:hover .infs-service-link {
  color: var(--accent-color);
}

/* Media Section */
.infs-media-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.infs-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.infs-media-card {
  /* background: white; */
  /* border: 2px solid var(--border-color); */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

/* .infs-media-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(17, 64, 73, 0.1);
} */

.infs-media-icon {
  width: 90px;
  height: 90px;
  /* background: var(--primary); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  /* color: white; */
  font-size: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.infs-media-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.infs-w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="media-dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23media-dots)"/></svg>');
}

/* .infs-media-card:hover .infs-media-icon {
            transform: scale(1.05) rotate(5deg);
        } */

.infs-media-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.infs-media-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.infs-contact-section {
  padding: 120px 0;
  background: var(--primary);
  color: white;
}

.infs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infs-contact-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.infs-contact-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.infs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.infs-contact-item {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}

.infs-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.infs-contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.infs-contact-details p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.infs-contact-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .infs-hero-container {
    gap: 60px;
  }

  .infs-hero-content {
    padding-left: 20px;
  }
}

@media (max-width: 992px) {
  .infs-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .infs-hero-content {
    padding-left: 0;
  }

  .infs-hero-title {
    font-size: 3rem;
  }

  .infs-about-grid,
  .infs-contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .infs-services-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .infs-hero-title {
    font-size: 2.5rem;
  }

  .infs-section-title {
    font-size: 2.2rem;
  }

  .infs-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .infs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .infs-services-container,
  .infs-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .infs-hero-title {
    font-size: 2rem;
  }

  .infs-service-card,
  .infs-contact-form {
    padding: 30px 20px;
  }

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


/* infinite */

/* About Section */
.infe-about-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.infe-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infe-about-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.infe-about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.infe-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.infe-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.infe-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(17, 64, 73, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.infe-feature-text {
  font-weight: 600;
  color: var(--primary);
}

/* Video Container */

.infe-video-container {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.infe-video-card {
  position: absolute;
  /* background: white; */
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  /* box-shadow: 0 20px 60px rgba(17, 64, 73, 0.1); */
  /* border: 1px solid var(--border-color); */
}

.infe-main-video {
  top: 50px;
  left: 0;
  width: 100%;
  /* width: 350px; */
  /* height: 250px; */
  height: auto;
  z-index: 3;
}

.infe-video-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}

.infe-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.infe-w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23video-pattern)"/></svg>'); */
}

.infe-video-wrapper video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
  display: block;
}

.infe-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.infe-video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

.infe-video-accent-1 {
  top: 0;
  right: 50px;
  width: 200px;
  height: 150px;
  z-index: 2;
  background: var(--light-bg);
}

.infe-video-accent-2 {
  bottom: 0;
  right: 0;
  width: 180px;
  height: 120px;
  z-index: 1;
  background: rgba(116, 201, 186, 0.1);
}


/* ai consulting service page */



/* Why Choose Section */
.ai-why-choose-section {
  padding: 80px 0;
  background: var(--white);
}

.ai-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.ai-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.ai-process-visual {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.ai-process-illustration {
  width: 300px;
  height: 250px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-process-illustration::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 20px;
  left: 20px;
}

.ai-process-illustration::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: 30px;
  right: 30px;
}

.ai-process-icon {
  font-size: 4rem;
  color: white;
  z-index: 2;
}

.ai-process-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ai-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.ai-process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(17, 64, 73, 0.1);
}

.ai-step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.ai-step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* home IT health check section */

/* IT Health Check Section Styles */
.ithc-home-section {
  /* padding: 80px 0; */
  background-color: var(--white);
}

.ithc-home-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ithc-home-description {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ithc-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.ithc-home-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateX(5px);
}

.ithc-home-arrow {
  transition: transform 0.3s ease;
}

.ithc-home-btn:hover .ithc-home-arrow {
  transform: translateX(4px);
}

.ithc-home-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ithc-home-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.ithc-home-feature-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ithc-home-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.ithc-home-icon svg {
  width: 24px;
  height: 24px;
}

.ithc-home-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ithc-home-section {
    padding: 60px 0;
  }

  .ithc-home-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .ithc-home-section {
    padding: 50px 0;
  }

  .ithc-home-title {
    font-size: 2rem;
  }

  .ithc-home-description {
    font-size: 1rem;
  }

  .ithc-home-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Comprehensive IT Health Check Section */
.ithc-serc-section {
  padding: 80px 0;
  background-color: var(--primary);
}

.ithc-serc-wrapper {
  background-color: var(--primary);
  border-radius: 12px;
  padding: 60px 40px;
  color: var(--white);
}

.ithc-serc-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.ithc-serc-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.ithc-serc-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}

.ithc-serc-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ithc-serc-icon {
  width: 28px;
  height: 28px;
}

.ithc-serc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ithc-serc-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ithc-serc-list-item:last-child {
  margin-bottom: 0;
}

.ithc-serc-check-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.ithc-serc-warning-icon {
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 2px;
}

.ithc-serc-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.ithc-serc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.ithc-serc-btn:hover {
  background-color: #5eb3a6;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(116, 201, 186, 0.3);
}

.ithc-serc-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ithc-serc-section {
    padding: 60px 0;
  }

  .ithc-serc-wrapper {
    padding: 50px 30px;
  }

  .ithc-serc-title {
    font-size: 2rem;
  }

  .ithc-serc-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .ithc-serc-section {
    padding: 50px 0;
  }

  .ithc-serc-wrapper {
    padding: 40px 20px;
  }

  .ithc-serc-title {
    font-size: 1.75rem;
  }

  .ithc-serc-card {
    padding: 25px;
  }

  .ithc-serc-card-title {
    font-size: 1.15rem;
  }

  .ithc-serc-btn {
    width: 100%;
    justify-content: center;
  }
}



/* ithc Process Section */
.ithc-process-section {
  padding: 80px 0;
  background-color: var(--white);
}

.ithc-process-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

}

.ithc-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ithc-process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ithc-process-divider {
  width: 64px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 0 auto 1.5rem;
}

.ithc-process-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.ithc-process-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

/* .ithc-process-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

.ithc-process-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ithc-process-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.ithc-process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ithc-process-card-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ithc-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ithc-process-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--dark);
}

.ithc-process-list-item:last-child {
  margin-bottom: 0;
}

.ithc-process-check-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ithc-process-section {
    padding: 60px 0;
  }

  .ithc-process-title {
    font-size: 2rem;
  }

  .ithc-process-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .ithc-process-section {
    padding: 50px 0;
  }

  .ithc-process-title {
    font-size: 1.75rem;
  }

  .ithc-process-subtitle {
    font-size: 1rem;
  }

  .ithc-process-card {
    padding: 24px;
  }
}

/* ithc CTA Section */
.ithc-cta-section {
  padding: 80px 0;
  background-color: var(--white);
}

.ithc-cta-wrapper {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.ithc-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.ithc-cta-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ithc-cta-btn-wrapper {
  margin-bottom: 2rem;
}

.ithc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.ithc-cta-btn:hover {
  background-color: #5eb3a6;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(116, 201, 186, 0.3);
}

.ithc-cta-btn svg {
  width: 22px;
  height: 22px;
}

.ithc-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.ithc-cta-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ithc-cta-contact p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ithc-cta-section {
    padding: 60px 0;
  }

  .ithc-cta-wrapper {
    padding: 50px 30px;
  }

  .ithc-cta-title {
    font-size: 2rem;
  }

  .ithc-cta-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .ithc-cta-section {
    padding: 50px 0;
  }

  .ithc-cta-wrapper {
    padding: 40px 25px;
    border-radius: 16px;
  }

  .ithc-cta-title {
    font-size: 1.75rem;
  }

  .ithc-cta-description {
    font-size: 1rem;
  }

  .ithc-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .ithc-cta-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* blog css */

.blog-content blockquote{
  font-size: 1em;
  width:100%;
  margin:50px auto;
  font-style:italic;
  color: var(--dark);
  padding:1.2em 30px 1.2em 75px;
  border-left:4px solid var(--primary);
  line-height:1.6;
  position: relative;
  background:var(--light-bg);
  border-radius: 0px 5px 5px 0px;
}

.blog-content blockquote::before{
  content: "\201C";
  color:var(--primary);
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

.blog-content blockquote::after{
  content: '';
}



.scroll-down-arrow {
    display: flex;
    justify-content: center;      /* Horizontal center */
    margin-top: 70px;             /* Optional */
}

.scroll-down-arrow .arrow-down {
    font-size: 3em;              /* Arrow size */
    color: var(--primary);        /* Theme color */
    cursor: pointer;
    animation: arrow-bounce 1.4s infinite ease-in-out; /* Optional: nice bounce */
}

@keyframes arrow-bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(6px); }
    100% { transform: translateY(0); }
}

.blog-content h2{
  font-size: 1.5em !important;
}

.blog-content h3{
  font-size: 1.1em !important;
}