﻿/* Auto-generated from index.html. Keep page-specific styles here. */

/* Extracted style block 1 from index.html */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

  * {margin: 0; padding: 0; box-sizing: border-box;}

  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f1f8ff, #e8f5e9);
  }

/* Extracted style block 2 from index.html */
@keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes logoBounce {
      0% { transform: scale(0.6); opacity:0; }
      70% { transform: scale(1.1); opacity:1; }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      #loader { display: none !important; }
    }
    @media (max-width: 480px) {
      .loader-logo { max-width:180px !important; }
      h1 { font-size:20px !important; }
      p { font-size:14px !important; line-height:1.4 !important; }
    }

/* Extracted style block 3 from index.html */
* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; line-height: 1.6; background: #fff; }
    img, a { display: block; text-decoration: none; color: inherit; }

    /* Hero Slider */
    .hero-slider { width: 100%; height: 90vh; }
    .hero-slider .swiper-wrapper { width: 100%; height: 100%; }
    .hero-slider .swiper-slide { 
      position: relative; 
      background-size: cover; 
      background-position: center; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
    }
    .hero-slider .swiper-slide::before { 
      content: ''; 
      position: absolute; 
      inset: 0; 
      background: rgba(0,0,0,0.5); 
    }
    .hero-slider .slide-content { 
      position: relative; 
      z-index: 1; 
      max-width: 900px; 
      text-align: center; 
      opacity: 0; 
      color: #fff; 
      padding: 20px; 
      font-family: 'Times New Roman', Times, serif;
      font-size: 1.5rem;
    }
 .hero-slider .slide-description { 
  font-size: 1.2rem; 
  margin-bottom: 2rem; 
}

.hero-slider .slide-button {
  display: inline-block;
  background: rgb(242, 77, 41); /* Updated background color */
  color: #fff;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
    .hero-slider .slide-button:hover {   background: rgb(242, 77, 41); /* Updated background color */ }

    /* Tabs */
    .slider-controls { position: absolute; bottom: 30px; width: 100%; text-align: center; z-index: 3; }
    .slider-pagination { display: inline-flex; gap: 10px; padding: 10px; background: rgba(255,255,255,0.1); border-radius: 50px; backdrop-filter: blur(6px); list-style: none; }
    .slider-tab { padding: 8px 16px; border-radius: 20px; background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; transition: background .3s; white-space: nowrap;  }
    .slider-tab.current {   background: #f16136 ; /* Updated background color */ font-weight: 600; }

    @media (max-width: 768px) {
      .hero-slider .slide-title { font-size: 2rem; font-family: 'Times New Roman', Times, serif;}
      .hero-slider .slide-description { font-size: 1rem; }
      .slider-controls { overflow-x: auto; padding: 0 10px; }
      .slider-pagination {
        display: flex; flex-wrap: nowrap; justify-content: flex-start;
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; padding: 10px 5px; gap: 10px;
      }
      .slider-pagination::-webkit-scrollbar { display: none; }
      .slider-tab { flex: 0 0 auto; white-space: nowrap; padding: 8px 14px; font-size: 14px; }
    }

    /* Fade-in animation */
    @keyframes fadeInUp {
      from { opacity:0; transform:translateY(40px); }
      to { opacity:1; transform:translateY(0); }
    }
    .fade-in-up { opacity:0; animation:fadeInUp 1s ease-out forwards; }

/* Extracted style block 4 from index.html */
/* Modal base */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto; /* Allow scroll on small screens */
}

/* Modal box */
.modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  font-family: 'Times New Roman', Times, serif;
  color: #f16136 ;
}

/* Close button */
.close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: #444;
  line-height: 1;
  transition: color 0.3s ease;
}

.close:hover {
  color: #00CFFF;
}

/* Industry list */
.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.industry-list li {
  background: #f4faff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: background 0.3s ease;
  text-align: center;
}

.industry-list li:hover {
  background: #00CFFF;
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsive styles */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    border-radius: 12px;
    max-height: 90vh; /* Prevent modal from going offscreen */
    overflow-y: auto; /* Scroll inside modal */
  }

  .industry-list {
    grid-template-columns: 1fr; /* Single column */
    gap: 10px;
  }

  .industry-list li {
    font-size: 0.95rem;
    padding: 12px;
  }

  .close {
    font-size: 26px;
    top: 12px;
    right: 12px;
  }
}

/* Extracted style block 5 from index.html */
/* Certificates responsive on mobile */
  @media (max-width: 768px) {
    #certificateModal img {
      width: 90% !important;   /* take most of screen width */
      max-width: 220px;        /* limit max size */
    }
  }

  @media (max-width: 480px) {
    #certificateModal img {
      width: 95% !important;
      max-width: 180px;        /* even smaller for very small devices */
    }
  }

/* Extracted style block 6 from index.html */
/* Card Hover Effects */
  #about-us .hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
  }
  #about-us .hover-card:hover img {
    opacity: 1 !important;
  }
  #about-us .hover-card:hover div {
    opacity: 0 !important;
  }

  /* Card Headings */
  #about-us h3 {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Ensure consistent spacing for ul text */
  #about-us ul {
    padding-left: 0;
    list-style-position: inside;
  }

/* Extracted style block 7 from index.html */
@media (max-width: 600px) {
    #closePopup {
      font-size:14px !important;  /* smaller font */
      padding:6px 12px !important; /* smaller padding */
      top:15px !important;         /* adjust top position */
      right:15px !important;       /* adjust right position */
    }
  }

/* Extracted style block 8 from index.html */
.clients-slider {
    display: flex;
    gap: 22px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
  }

  .clients-slider img {
    max-height: 150px;
    object-fit: contain;
    background: rgba(0,0,0,0.03);
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.45s ease;
    filter: brightness(1);
  }

  .clients-slider img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(0,188,212,0.3), 0 0 40px rgba(255,123,0,0.25);
    filter: brightness(1.05);
  }

  #clientsPopup img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.3s;
  }

  #clientsPopup img:hover {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .clients-slider {
      gap: 16px;
    }
    .clients-slider img {
      max-height: 60px;
      padding: 10px 16px;
    }
  }

/* Extracted style block 9 from index.html */
/* === SERVICES SECTION ONLY === */
.services-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #8DC63F, #00AEEF);
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.services-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.services-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 25px;
  padding: 10px 0;
  flex: 1;
}
/* === SLIDER ARROWS === */
.services-scroll-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.services-scroll-btn:hover {
  background: #f24d29;
  color: #fff;
  transform: scale(1.1);
}

/* Position left & right */
.services-scroll-btn.left {
  margin-left: 0px;
}

.services-scroll-btn.right {
  margin-right: 0px;
}

.services-container::-webkit-scrollbar { display: none; }

.services-card-wrapper {
  min-width: 300px;
  max-width: 330px;
  flex-shrink: 0;
  position: relative;
}

.services-card {
  height: 420px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 2px solid #e0e0e0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.services-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #e0e0e0;
  transition: transform 0.4s ease;
}

.services-card-content { padding: 20px; flex-grow: 1; }
.services-card-content h3 {font-family: 'Times New Roman', Times, serif; font-size: 1.4rem; margin-bottom: 10px; color: #333; }
.services-card-content p { font-size: 0.9rem; color: #555; }

.services-view-button {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #405482; 
  font-family: 'Times New Roman', Times, serif;;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}
.services-card-wrapper:hover .services-view-button {
  opacity: 1;
  bottom: 0;
}

/* === MOBILE RESPONSIVE === */
/* === MOBILE RESPONSIVE === */
/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  /* Remove arrows */
  .services-scroll-btn {
    display: none !important;
  }

  .services-slider-wrapper {
    gap: 0;
  }

  .services-container {
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .services-card-wrapper {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .services-card {
    height: 520px;  /* 🔹 Increased height */
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 55px; /* 🔹 Space for View button */
  }

  .services-card img {
    height: 240px; /* 🔹 Slightly taller image */
    flex-shrink: 0;
  }

  .services-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .services-view-button {
    opacity: 1; /* 🔹 Always visible on mobile */
    bottom: 0;
    border-radius: 0 0 20px 20px;
  }
}

/* Extracted style block 10 from index.html */
/* Testimonial Card Styling */
.testimonial-card {
  padding: 25px 25px;
  background: linear-gradient(to bottom right, #f9fcff, #e9f3ff); /* soft blue gradient */
  border-radius: 16px;
  text-align: left; /* left align like in your image */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;

  /* Equal height cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  min-height: 280px; /* adjust for equal height */
  height: 100%;
}

/* Stars */
.testimonial-card .stars {
  font-size: 18px;
  color: #FFD700; /* gold stars */
  margin-bottom: 12px;
  text-align: left;
}

/* Name */
.testimonial-card .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
  line-height: 1.4;
  text-align: left;
}

/* Testimonial text */
.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: #2ba56a;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #2ba56a;
  transform: scale(1.2);
}

/* Extracted inline styles from index.html */
.index-inline-001 { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #e0f7fa; display: flex; justify-content: center; align-items: center; z-index: 9999; overflow: hidden; font-family: 'Poppins', sans-serif; flex-direction: column; text-align: center; padding: 20px; }
.index-inline-002 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.08; width: 95%; max-width: none; z-index: 1; pointer-events: none; }
.index-inline-003 { max-width: 300px; margin-bottom: 20px; animation: logoBounce 1.5s ease-out forwards; z-index: 2; }
.index-inline-004 { font-size: 36px; font-family: 'Times New Roman', Times, serif; color: #00796b; font-weight: 700; margin-bottom: 15px; animation: fadeInUp 1.5s ease-out 0.5s forwards; opacity: 0; }
.index-inline-005 { max-width: 700px; color: #004d40; font-size: 20px; line-height: 1.6; margin: 10px auto 0; opacity: 0; animation: fadeInUp 1.5s ease-out 1s forwards; }
.index-inline-006 { background-image: url('../../images/home_hero_1.jpeg'); }
.index-inline-007 { background-image: url('../../images/cropped_16x9_image.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; height: 100vh; width: 100%; }
.index-inline-008 { color: #fff; text-align: center; padding: 40px; }
.index-inline-009 { background-image: url('../../images/home_hero_3.jpg'); }
.index-inline-010 { background-image: url('../../images/HERO__CHAT_GPT__002.png'); }
.index-inline-011 { background-image: url('../../images/home_hero_5.jpeg'); }
.index-inline-012 { width: 100%; padding: 100px 20px; font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #e6f2ff 0%, #f9f9f9 100%), url('https://www.transparenttextures.com/patterns/cubes.png'); background-size: cover; color: #333; position: relative; overflow: hidden; text-align: center; }
.index-inline-013 { max-width: 900px; margin: 0 auto; text-align: center; }
.index-inline-014 { font-family: 'Times New Roman', Times, serif; font-size: 3rem; font-weight: bold; color: #374b95; position: relative; display: inline-block; letter-spacing: 1px; }
.index-inline-015 { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 70%; height: 5px; background: linear-gradient(90deg,#6CC04A,#B6FF40); border-radius: 4px; }
.index-inline-016 { font-size: 1.1rem; line-height: 1.8; color: #555; text-align: center; max-width: 750px; margin: 0 auto; }
.index-inline-017 { color: #f16136; }
.index-inline-018 { color: inherit; text-decoration: none; display: inline; }
.index-inline-019 { color: #405482; }
.index-inline-020 { color: #1C2A5B; display: block; margin-top: 10px; }
.index-inline-021 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 40px; align-items: stretch; }
.index-inline-022 { position: relative; overflow: hidden; border-radius: 15px; height: 350px; box-shadow: 0 10px 25px rgba(0,0,0,0.12); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.index-inline-023 { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.index-inline-024 { position: absolute; inset: 0; background: #fff; padding: 30px 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; transition: opacity 0.5s ease; }
.index-inline-025 { font-size: 2.5rem; color: #559e4f; margin-bottom: 15px; }
.index-inline-026 { font-size: 1.6rem; font-family: 'Times New Roman', Times, serif; font-weight: 600; margin-bottom: 20px; color: #f16136; }
.index-inline-027 { font-size: 1rem; line-height: 1.8; color: #444; text-align: left; margin: 0; }
.index-inline-028 { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 10000; justify-content: center; align-items: center; padding: 40px; }
.index-inline-029 { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; }
.index-inline-030 { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; max-width: 1000px; }
.index-inline-031 { width: 300px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
.index-inline-032 { position: relative; overflow: hidden; border-radius: 15px; height: 350px; box-shadow: 0 10px 25px rgba(0,0,0,0.12); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.index-inline-033 { width: 100%; height: 50vh; min-height: 320px; position: relative; overflow: hidden; }
.index-inline-034 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.index-inline-035 { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); z-index: 1; color: #444; font-family: 'Poppins', sans-serif; max-width: 600px; padding: 20px; text-align: left; }
.index-inline-036 { margin: 0 0 .5rem; font-family: 'Times New Roman', Times, serif; font-weight: 800; font-size: clamp(22px,3vw,42px); line-height: 1.2; text-align: left; }
.index-inline-037 { margin: 0 0 1.2rem; font-size: clamp(14px,1.5vw,18px); line-height: 1.6; text-align: left; }
.index-inline-038 { display: inline-block; font-family: 'Times New Roman', Times, serif; padding: 12px 28px; font-size: 20px; font-weight: 600; background-color: #405482; color: #fff; border-radius: 6px; text-decoration: none; transition: 0.3s; }
.index-inline-039 { padding: 100px 20px; font-family: 'Poppins', sans-serif; position: relative; overflow: hidden; background: linear-gradient(135deg, #e6f2ff 0%, #f9f9f9 100%), url('https://www.transparenttextures.com/patterns/cubes.png'); background-size: cover; background-attachment: fixed; color: #333; }
.index-inline-040 { text-align: center; margin-bottom: 60px; }
.index-inline-041 { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 90%; height: 5px; background: linear-gradient(90deg, #ff7b00, #07d67a, #00bcd4); border-radius: 4px; }
.index-inline-042 { max-width: 1400px; margin: auto; overflow: hidden; position: relative; }
.index-inline-043 { text-align: center; margin-top: 40px; }
.index-inline-044 { padding: 14px 32px; font-size: 1.2rem; font-family: 'Times New Roman', Times, serif; border: none; border-radius: 8px; background-color: #405482; color: white; font-weight: 600; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: 0.3s; }
.index-inline-045 { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 9999; overflow-y: auto; padding: 60px 20px; }
.index-inline-046 { max-width: 1200px; margin: auto; background: white; border-radius: 12px; padding: 40px; position: relative; }
.index-inline-047 { position: absolute; font-size: 18px; font-family: 'Times New Roman', Times, serif; top: 20px; right: 20px; background: #405482; border: none; color: white; padding: 10px 18px; border-radius: 6px; font-weight: bold; cursor: pointer; }
.index-inline-048 { text-align: center; font-family: 'Times New Roman', Times, serif; font-size: 2rem; font-weight: 700; margin-bottom: 30px; color: #f16136; }
.index-inline-049 { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 20px; }
.index-inline-050 { text-align: center; margin: 50px 0; }
.index-inline-051 { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 90%; height: 5px; background: linear-gradient(90deg,#6CC04A,#B6FF40); border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.index-inline-052 { background: linear-gradient(
                135deg, 
                rgba(230,242,255,0) 0%, 
                rgba(240,255,244,0) 100%
              ),
              url('../../images/TESTIMONIAL__00111.png'); background-size: 40%; /* reduce image size */
    background-position: left bottom; background-repeat: no-repeat; /* prevent tiling */
  background-attachment: fixed; background-blend-mode: overlay; color: #333; font-family: 'NEW', sans-serif; padding: 100px 20px; position: relative; overflow: hidden; }
.index-inline-053 { max-width: 1300px; margin: auto; position: relative; z-index: 2; }
.index-inline-054 { text-align: center; font-family: 'Times New Roman', Times, serif; font-size: 3rem; font-weight: bold; color: #374b95; margin-bottom: 70px; letter-spacing: 1px; position: relative; }
.index-inline-055 { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 90%; height: 5px; background: linear-gradient(90deg,#6CC04A,#B6FF40); border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.index-inline-056 { padding-bottom: 70px; }
.index-inline-057 { margin-top: 30px; }

