/* Base Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

/* (service styling removed per undo request) */

/* Navbar Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000;
    padding: 15px 30px;
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.header-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  flex: 1;
  width: 180px;
  left: 30;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
    height: 180px;
    width: auto;
}

/* Navigation styling */
.nav-links {
   flex: 2;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    align-items: center;
}
.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
    transition: all 0.3s ease;
}
.nav-links li a:hover {
    color: #4facfe;
}
/* Navigation base styles */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

/* Dropdown menu styling */

/* Add to your CSS */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
/* Find these rules (around lines 109-118) */
.nav-links {
  position: fixed;
  top: 80px;
  /* MODIFIED: Change 'left' to 'right' and width to 50% */
  right: -50%; 
  width: 50%;
  left: auto; /* ADDED: Ensure left doesn't interfere */
  /* height: calc(100vh - 80px); */
  height: auto;
  max-height: none;
  background: #000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  /* MODIFIED: Change 'left' to 'right' */
  transition: right 0.3s ease;
}

.nav-links.active {
  /* MODIFIED: Change 'left' to 'right' */
  right: 0; 
}

  .nav-links li {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 10px 15px;
    font-size: 1.1rem;
  }

  .dropdown-menu {
   display: none;
  }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-between;
    text-align: center;
    background-size: cover;
    background-position: center;
    flex-wrap: wrap; 
    padding: 40px 20px;
    z-index: 1;
}
.hero-content-box {
  flex: 1;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
    /* width: 80%; */
    /* max-width: 800px; */
  color: white;
    /* margin: 0 auto; */
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  border: 1px solid rgba(79, 172, 254, 0.3);
}
.hero-content-box h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: left;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #4facfe;
  background-clip: text;
  color: #fff; 
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-content-box h1 {
        color: #fff; /* Ensure text is visible if gradient is not supported */
    }
}
@media (max-width: 768px) {
  .hero-content-box {
    width: 95%;
    padding: 20px;
  }
  
  .hero-content-box h1 {
    font-size: 2rem;
  }
  
  .hero-content-box p {
    font-size: 1.1rem;
  }
}
.animate-word {
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.8s ease-out forwards;
    display: inline-block;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 1.4s; }
.delay-5 { animation-delay: 1.8s; }
.delay-6 { animation-delay: 2.2s; }
@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content-box p {
    font-size: 25px;
    text-align: left;
    margin-top: 20px;
}
.hero-content-box p span {
    display: inline-block;
}
.terminal {
  /* align-items: center; */
  margin-left: auto;
  flex: 1 1 45%;
  min-width: 320px;
  max-width: 500px;
  background: #161b22;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  color: #c9d1d9;
  position: relative;
  border: #69caeb solid 2px;
  z-index: 2;
}
.service-text {
  text-align: left;
  padding-left: 10px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #00bfff;
  margin: 10px 0;
}
#dynamic-service::after {
  content: "|";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Responsive adjustments for mobile screens */
@media screen and (max-width: 480px) {
  .terminal {
    flex: 1 1 100%;
    max-width: 90vw;
    min-width: unset;
    padding: 15px 20px;
    margin: 10px auto;
  }
}
.terminal-header {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.terminal-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}
.prompt {
  color: #39ff14;
  font-weight: bold;
}
.service-text {
  color: #00bfff;
  margin: 10px 0;
}
.stats {
  color: #8b949e;
  margin-top: 20px;
  font-size: 14px;
}
.stats p:nth-child(n+2) {
    opacity: 0.7;
}
.stats span {
  color: #35cdff;
}

.hex,
.binary {
  margin-top: 10px;
  color: #35cdff;
  font-size: 13px;
  word-break: break-word;
  opacity: 0.7;
}
#dynamic-service::after {
  content: "|";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .hero{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content-box, .terminal {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .content-box h1 {
    font-size: 2.5rem;
  }
  .terminal {
    margin-left: 0;
    margin-top: 2rem;
  }
} 
/* Sparkles Effect */
.sparkle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4facfe;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: sparkleAnimation 3s linear infinite;
  box-shadow: 0 0 8px 2px rgba(79, 172, 254, 0.7); /* Bigger glow */
  overflow: hidden;
}
@keyframes sparkleAnimation {
  0% {
    transform: scale(0.5) rotate(0deg); 
    opacity: 1;
  }
  100% {
    transform: scale(2.5) rotate(360deg); /* Larger expansion */
    opacity: 0;
  }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}
/* About Section */
.about {
  align-items: left;
  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 40px;
  /* margin: 60px auto 0 auto; center horizontally */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(79, 172, 254, 0.3);
  max-width: 1200px; /* control width on large screens */
  width: 90%;       /* responsive on small screens */
}


.about h2 {
  text-align:left;       
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4facfe;
}
.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}
.about em {
    font-style: italic;
    color: #00f2fe;
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }

    .hero-content-box,
    .terminal {
        max-width: 90%;
        position: static;
        transform: none;
        margin: 20px auto;
    }

    .hero-content-box h1 {
        text-align: center;
    }

    .hero-content-box p {
        text-align: center;
        font-size: 1.1rem;
    }
}

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

    .hero-content-box p {
        font-size: 1rem;
    }

    .terminal {
        padding: 20px;
    }
    .about {
      max-width: fit-content;      
    }
    .about h2{
      text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.services h2 {
  text-align: center;
}
.services {
  padding: 20px;
 
}

.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.service-box {
  text-decoration: none;
  position: relative;
  width: 100%;
  height: auto; /* Let height grow based on content */
  padding: 30px 3px 10px 20px; 
  text-align: left;
  color: #bedcf9;
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  align-items: flex-start; /* Ensures text stays left-aligned */
  justify-content: flex-start;
  background-color: #111;
  border: 1px solid #444;
  border-radius: 12px;
  transition: transform 0.3s;
  box-sizing: border-box;
  font-family: 'Courier New', monospace; /* Optional: terminal-style font */
}


.service-box:hover {
  display:flex;
  

  transform: scale(1.05);
}

.services-icon {
     position: relative;
     display:flex;
    top: 5px;
    left: 2px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    padding-right: 20px;
    margin: 10px;
  }
/* Remove underline from links */
.service-container a {
  text-decoration: none;
  color: inherit; /* Inherits text color from the box */
}

/* Override default link colors and set custom text colors */
.service-box h3 {
  color: #ffffff; /* or any color you prefer */
  margin-bottom: 8px;
  text-align:left;
}

.service-box p {
  color: #b0d6f7; /* subtle light blue for contrast */
  font-size: 0.95rem;
  

}
.service-container a:hover {
  text-decoration: none;
 

}

/* Responsive: Tablets and Mobiles (≤ 992px) */
@media (max-width: 992px) {
  .service-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
  }

  .service-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .service-box {
    flex: 0 0 auto;
    width: 89vw;
    min-height: 200px; /* Consistent height */
    padding: 25px 20px 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .services-icon {
    width: 45px;
    height: 45px;
    margin: 0 0 15px 0;
    flex-shrink: 0;
  }

  .service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .service-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
}

/* Services Swiper Styles */
.services-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-swiper .swiper-wrapper {
  padding-bottom: 60px;
}

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

.services-swiper .swiper-pagination {
  bottom: 10px !important;
}

.services-swiper .swiper-pagination-bullet {
  background: #4facfe;
  opacity: 0.5;
}

.services-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
  color: #4facfe;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}

.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Hide swiper navigation arrows on mobile since we use native scrolling */
@media (max-width: 992px) {
  .services-swiper .swiper-button-next,
  .services-swiper .swiper-button-prev {
    display: none;
  }
}

/* Portfolio Section */
.portfolio {
  padding: 50px 20px;
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
}

.portfolio h2 {
  color: #4facfe;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.portfolio-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.portfolio-swiper .swiper-wrapper {
  padding-bottom: 60px;
}

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

/* This is the main card - SAME SIZE FOR ALL */
.portfolio-item {
  background-color: #1f1f1f;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(79, 172, 254, 0.3);
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  height: 450px; /* SAME height for all */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
  overflow: hidden; 
}

/* This is the image container - SAME SIZE FOR ALL */
.portfolio-image-link {
  display: flex; /* Using flex to center the narrow image */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 200px; /* SAME height for all */
  background-color: #333; /* Background for letterboxing */
  overflow: hidden;
}

/* This styles the first 9 (wide) images */
.portfolio-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures image is not cut off */
  display: block;
}

/* This styles ONLY the 3 new (narrow) images */
.portfolio-image-link.portfolio-image-link-tall img {
  width: auto; /* Let the image be narrow */
  height: 100%; /* Fills the 200px container vertically */
  object-fit: contain;
  background-color: #fff; /* White background for the app */
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 4px; /* Optional: adds a small "bezel" */
}

/* This styles the title - SAME FOR ALL */
.portfolio-item h3 {
  padding: 25px 25px 15px 25px;
  color: #60b8e4;
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* This styles the description - SAME FOR ALL */
.portfolio-item p {
  padding: 0 25px 25px 25px; /* 0 top padding */
  margin-bottom: 0; 
  color: #e0e0e0;
  line-height: 1.6;

  /* This 4-line clamp will now work for ALL cards */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation */
.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
  color: #4facfe;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}

.portfolio-swiper .swiper-button-next::after,
.portfolio-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.portfolio-swiper .swiper-pagination {
  bottom: 10px !important;
}

.portfolio-swiper .swiper-pagination-bullet {
  background: #4facfe;
  opacity: 0.5;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Others */
.service-row {
  display: contents;
}
.service-row a {
  text-decoration: none;
    }
.font-poppins {
  font-family: 'Poppins', sans-serif;
   }
.font-open-sans {
  font-family: 'Open Sans', sans-serif;
   }
.animate-slide-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.5s forwards;
    }
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top of all elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Dark background */
  backdrop-filter: blur(6px); /* Optional blur */
  padding: 40px 20px;
  box-sizing: border-box;
}
.modal {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #111;
  color: #fff;
  margin: auto; /* Center the modal */
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  position: relative;
}
#modal-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  margin-top: 20px;
  display: block;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
.Ai-container {
  max-width: 1200;
  display: flex;
  justify-content: space-between; /* Space between boxes */
  gap: 20px;                      /* Optional: spacing between boxes */
  padding: 60px;
  background-color: #000;         /* Optional: dark background */
}
.Ai-section{
  padding: 40px;
  text-align: center;
}
.Ai-heading{
  font-size: 2rem;
  margin-bottom: 30px;
  color: #cce7ff;
}
.Ai-service-box {
  position: relative;
  background-color: #111;
  color: #cce7ff;
  border: 1px solid #444;
  border-radius: 20px;
  width: 23%;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  padding-top: 80px; /* to make room for icon */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.ai-box-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.ai-box-content h3,
.ai-box-content p {
  margin: 0;
}
.ai-icon {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.Ai-service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(100, 100, 255, 0.3);
}
.Ai-service-box h3 {
  margin-bottom: 10px;
}
.Ai-service-box p {
  margin: 0;
}
@media (max-width: 992px) {
  .Ai-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .Ai-service-box {
    width: 45%;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {

  .Ai-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    box-sizing: border-box;
  padding: 40px 10px; 
  overflow: hidden;
  }
  .Ai-service-box {
    width: 100%; /* <-- CHANGED */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* <-- CHANGED */
    height: auto; /* <-- CHANGED */
    min-height: 200px; /* <-- ADDED */
  }
  .ai-box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* <-- CHANGED */
  }
  .ai-icon {
    width: 50px;
    height: 50px;
  }
  .Ai-service-box p {
    font-size: 0.875rem;
  }
}
.blog {
  padding: 50px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
}
.blog-box {
    flex: 0 0 calc(100% / 3 - 20px);
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden; /* Ensures rounded corners for child images */
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 350px; /* Increased height to accommodate image */
    width: 1200px;
}
.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-image-container {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.6);
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 68, 102, 0.05) 0%, rgba(0, 119, 204, 0.05) 100%);
  z-index: 0;
}
.blog h1 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: #62c3f3;
  margin-bottom: 20px;
}
.blog h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #004466;
  margin: 10px auto;
}
.blog {
    padding: 50px 0; /* Keeps top/bottom padding, removes left/right */
  }
/* Slider Wrapper */
.blog-slider-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.blog-slider-window {
  overflow: hidden;
  width: 100%;
}

.blog-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.blog-box:hover .blog-featured-image {
    transform: scale(1.05);
}

/* This rule targets the last blog card, but *only* if it's the 
  first item on a new row in a 3-column grid (e.g., the 7th card).
  It then tells it to sit in the 2nd column.
*/
.blog-box:last-child:nth-child(3n + 1) {
  grid-column: 2;
}
/* Each Blog Card */
.blog-box:hover {
  background-color: #bcd5e1;
}
.blog-box h3 {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
}
.blog-box p {
  color: rgb(95, 29, 95);
}
.scroll-btn {
  background: transparent;
  border: none;
  color: #1e3a8a; /* Dark blue */
  font-size: 2.5rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: color 0.3s, transform 0.2s;
}
.scroll-btn:hover {
  color: #2563eb;
}
 .scroll-btn.left {
  left: -60px; 
}
.scroll-btn.right {
  right: -60px; 
} 
/* More Button */
.more-btn-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}.more-btn {
  background: linear-gradient(to right, #5192b3, #0077cc);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 68, 102, 0.3);
  transition: all 0.3s ease;
}
.more-btn:hover {
  background: linear-gradient(to right, #0077cc, #3399ff);
  transform: translateY(-3px);
}
.blog-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-box h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    flex-grow: 1;
}

.read-more {
    color: #004466;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-box {
        flex: 0 0 calc(100% / 2 - 20px);
    }
}

@media (max-width: 600px) {
    .blog-box {
        flex: 0 0 100%;
    }
    
    .blog-image-container {
        height: 150px;
    }
    
    .blog-box {
        height: 350px;
    }
}
/* Mobile blog slider with auto-scroll */
@media (max-width: 768px) {
  .blog-slider-wrapper {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    padding: 0;
  }
  .blog-slider-window {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }
  .blog-slider-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transform: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
  }
  .blog-slider-track::-webkit-scrollbar {
    display: none;
  }
  .blog-box {
    flex: 0 0 100vw;
    height: auto;
    scroll-snap-align: start;
    min-width: 100vw;
    box-sizing: border-box;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .blog-image-container {
    height: 280px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
  }

  .blog-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .blog-box p {
    font-size: 0.9rem;
  }

  .scroll-btn {
    display: none;
  }
}

@media (max-width: 480px) {
    .blog-image-container {
        height: 120px;
    }
}
.testimonials {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4); /* Added transparency */
  text-align: center;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(126, 105, 227, 0.1) 0%, rgba(185, 199, 226, 0.1) 100%);
  z-index: 0;
}
.testimonials h4 {
   position: relative;
  z-index: 1;
  font-weight: 600;
  color: #769af5;
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonials h2 {
   position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #3c1fcd;
}
.testimonials .highlight {
  color:#769af5;
}
.testimonial-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  background-color: rgba(185, 199, 226, 0.9); /* Added transparency */
  position: relative;
  z-index: 1;
  padding: 30px 25px;
  width: 300px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.testimonial-slider {
  overflow: hidden;
  max-width: 700px;
  margin: auto;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.testimonial-card {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  flex: 0 0 100%; /* One full view width */
}
.google-logo {
  width: 80px;
  margin-bottom: 10px;
}
.testimonial-card h3 {
  margin: 10px 0;
  color: #fff;
}

.testimonial-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-card img.google-logo {
  width: 90px;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
.testimonial-dots {
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #4facfe;
}
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}
.process
  {
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 20px;
    }

    .text-section {
      max-width: 400px;
      flex: 1 1 300px; 
      align-self: center; 
      padding-left:10%; 
    }

    .text-section h2 {
      color: #00bfff;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .text-section p {
      margin: 20px 0;
      line-height: 1.6;
      transition: 0.4s ease;
      padding-left: 10px;
      border-left: 3px solid transparent;
    }

    .text-section p.active {
      color: #00bfff;
      font-weight: bold;
      background-color: rgba(0, 191, 255, 0.1);
      border-left: 3px solid #00bfff;
    }

    .circle-wrapper {
      position: relative;
      width: 500px;
      height: 500px;
      flex: 1 1 300px;
    }

    .core {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120px;
      height: 120px;
      background: #000000;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 18px;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 40px #00bfff;
      z-index: 2;
      overflow: hidden; 
    }
  .core img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  }
  .circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #00bfff;
    color: #00bfff;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    transition: 0.4s ease;
    opacity: 0.6;
  }
  .circle.active {
    background-color: #00bfff;
    color: #000;
    box-shadow: 0 0 20px #00bfff;
    opacity: 1;
  }
.circle-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  flex: 1 1 300px;
}
/* Base center */
:root {
  --radius: 180px;
}
.c1 {
  top: calc(50% - var(--radius) * cos(0deg));
  left: calc(50% + var(--radius) * sin(0deg));
  transform: translate(-50%, -50%);
}
.c2 {
  top: calc(50% - var(--radius) * cos(72deg));
  left: calc(50% + var(--radius) * sin(72deg));
  transform: translate(-50%, -50%);
}
.c3 {
  top: calc(50% - var(--radius) * cos(144deg));
  left: calc(50% + var(--radius) * sin(144deg));
  transform: translate(-50%, -50%);
}
.c4 {
  top: calc(50% - var(--radius) * cos(216deg));
  left: calc(50% + var(--radius) * sin(216deg));
  transform: translate(-50%, -50%);
}
.c5 {
  top: calc(50% - var(--radius) * cos(288deg));
  left: calc(50% + var(--radius) * sin(288deg));
  transform: translate(-50%, -50%);
}
   @media (max-width: 768px) {
  .process {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 20px;
  }
  .text-section {
    width: 100%;
    max-width: 90%;
  }
  .text-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
  .text-section p {
    font-size: 14px;
    line-height: 1.5;
  }
  .circle-wrapper {
    width: 300px;
    height: 300px;
    position: relative;
  }
  .circle {
    width: 70px;
    height: 70px;
    font-size: 11px;
  }
  .core {
    width: 70px;
    height: 70px;
    font-size: 13px;
  }
  .core img {
    width: 90%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .c1 { top: 5%; left: 50%; transform: translate(-50%, -50%); }
  .c2 { top: 30%; left: 90%; transform: translate(-50%, -50%); }
  .c3 { top: 75%; left: 75%; transform: translate(-50%, -50%); }
  .c4 { top: 75%; left: 25%; transform: translate(-50%, -50%); }
  .c5 { top: 30%; left: 10%; transform: translate(-50%, -50%); }
}
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contact-form-container {
  z-index: 1;
  position: relative;
  background: linear-gradient(145deg, rgba(30, 30, 47, 0.95) 0%, rgba(40, 40, 60, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(122, 169, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
  border: 2px solid rgba(122, 169, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-form-container:hover {
  box-shadow: 0 30px 80px rgba(122, 169, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.contact-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #7aa9ff 0%, #b78aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(122, 169, 255, 0.3);
}

.contact-subheading {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(122, 169, 255, 0.2);
  background: linear-gradient(145deg, rgba(40, 40, 60, 0.8) 0%, rgba(30, 30, 47, 0.8) 100%);
  color: #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.form-group textarea {
  /* min-height: 140px; */
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237aa9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7aa9ff;
  box-shadow: 0 0 0 4px rgba(122, 169, 255, 0.15), 0 0 20px rgba(122, 169, 255, 0.1);
  background: linear-gradient(145deg, rgba(45, 45, 70, 0.9) 0%, rgba(35, 35, 55, 0.9) 100%);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(122, 169, 255, 0.4);
}

.submit-btn {
  background: linear-gradient(135deg, #7aa9ff 0%, #b78aff 50%, #7aa9ff 100%);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  width: 100%;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(122, 169, 255, 0.3);
}

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

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(122, 169, 255, 0.4);
  animation: gradientShift 3s ease infinite;
}

.submit-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 169, 255, 0.3);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-links {
  text-align: center;
  margin-top: 20px;
  color: #e0e0e0;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 169, 255, 0.4) 50%, transparent 100%);
}

.divider-text {
  padding: 0 20px;
  color: #7aa9ff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.direct-contact {
  margin-bottom: 25px;
  color: #c0c0c0;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7aa9ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 15px 25px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(122, 169, 255, 0.1) 0%, rgba(183, 138, 255, 0.1) 100%);
  border: 2px solid rgba(122, 169, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 169, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-option:hover::before {
  left: 100%;
}

.contact-option:hover {
  background: linear-gradient(145deg, rgba(122, 169, 255, 0.2) 0%, rgba(183, 138, 255, 0.2) 100%);
  border-color: #7aa9ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(122, 169, 255, 0.3);
  color: #ffffff;
}

.contact-option i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.contact-option:hover i {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-form-container {
    padding: 35px 25px;
    border-radius: 20px;
    margin: 0 10px;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-subheading {
    font-size: 1rem;
  }

  .contact-form {
    gap: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 18px 25px;
    font-size: 16px;
  }

  .contact-options {
    flex-direction: column;
    gap: 15px;
  }

  .contact-option {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 10px;
  }

  .contact-form-container {
    padding: 25px 20px;
    margin: 0 5px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .contact-header {
    margin-bottom: 35px;
  }

  .contact-form {
    gap: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  .contact-links {
    margin-top: 35px;
  }

  .contact-options {
    gap: 12px;
  }

  .contact-option {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

.dark-footer {
  background-color: #0b0b0b;
  color: #eee;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #222;
  padding-bottom: 30px;
}

.footer-column h4, .footer-column h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #4facfe;
}

.social-icons a {
  color: #aaa;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #4facfe;
}

.footer-column p {
  margin: 8px 0;
}

.footer-column i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Chat Button */
/* This is your NEW WhatsApp button style */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;  /* <-- CHANGED to WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
  text-decoration: none;      /* <-- ADDED to remove link underline */
}

.chat-button i {
  color: white;
  font-size: 32px;            /* <-- CHANGED icon to be larger */
}

.chat-button:hover {
  transform: scale(1.1);
}



/* This is your NEW pulse style */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25D366;  /* <-- CHANGED to WhatsApp green */
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Chat Container */
.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 1001; /* Higher than other elements */
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.chat-container.active {
  display: flex;
}

header {
  background-color: #000000;;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
}

.avatar {
  margin-right: 10px;
}

.avatar i {
  font-size: 24px;
}

header h1 {
  font-size: 18px;
  margin: 0;
}

header p {
  font-size: 12px;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

main {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background-color: #f5f5f5;
}
.cursor {
  animation: blink 1s step-start infinite;
}

.bot, .user {
  margin-bottom: 10px;
}

.bot .message-content, .user .message-content {
  max-width: 80%;
  padding: 10px;
  border-radius: 10px;
}

.bot .message-content {
  background-color: #121416;
  margin-left: 10px;
}

.user .message-content {
  background-color: #00aaff;
  color: white;
  margin-left: auto;
}

.welcome-msg {
  text-align: center;
}

.quick-questions {
  list-style-type: none;
  padding: 0;
}

.quick-questions li {
  cursor: pointer;
  padding: 5px;
  color: #007bff;
}

.quick-questions li:hover {
  text-decoration: underline;
}

.typing .message-content {
  display: flex;
  gap: 5px;
}

.typing .message-content span {
  width: 6px;
  height: 6px;
  background-color: #888;
  border-radius: 50%;
  animation: typing 1.5s infinite;
}

.typing .message-content span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing .message-content span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

form {
  display: flex;
  padding: 10px;
  background-color: #ffffff04;
  border-top: 1px solid #ddd;
}

input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

button {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
}

button i {
  color: #00aaff;
  font-size: 18px;
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

.slide-up {
  animation: slideUp 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}


/* --- FIX FOR TERMINAL BOX ON MOBILE --- */
/* This resets the service-box styles specifically when inside the terminal */
.terminal .service-box {
  width: 100% !important;        /* Fits inside the terminal instead of being 89vw */
  min-height: auto !important;   /* Removes fixed height */
  background: transparent !important; /* Removes conflicting background */
  border: none !important;       /* Removes conflicting border */
  box-shadow: none !important;   /* Removes shadow */
  padding: 0 !important;         /* Removes extra padding */
  margin: 0 !important;
  transform: none !important;    /* Prevents hover effects */
}