@import url('https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Global Styles */
:root {
  --primary: #1fb37a;  /* Green */
  --secondary:#fec001; /* Yellow */
  --accent: #ed34a1;   /* Pink */
  --dark: #1e1e1e;
  --light: #f8f9fa;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:"Winky Sans", sans-serif;
  overflow-x: hidden;
  background-color: var(--light);
  color: var(--dark);
}

p {
  font-size: 0.85rem; /* Reduced from 1rem */
  font-optical-sizing: auto;
  color: black;
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 900px; /* Reduced from 1200px */
  margin: 0 auto;
  padding: 0 15px; /* Reduced from 20px */
}

.btn {
  display: inline-block;
  padding: 9px 22.5px; /* Reduced from 12px 30px */
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: rgb(0, 0, 0);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7.5px 15px rgba(106, 17, 203, 0.2); /* Reduced from 10px 20px */
}

.btn-outline {
  border: 1.5px solid var(--primary); /* Reduced from 2px */
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

section {
  padding: 20px 0; /* Reduced from 80px */
}

.section-title {
  text-align: center;
  margin-bottom: 45px; /* Reduced from 60px */
}

.section-title h2 {
  font-size: 1.875rem; /* Reduced from 2.5rem */
  margin-bottom: 11.25px; /* Reduced from 15px */
  color: var(--dark);
}

.section-title p {
  color: var(--gray);
  max-width: 525px; /* Reduced from 700px */
  margin: 0 auto;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0; /* Reduced from 20px */
  background-color: white;
  box-shadow: 0 1.5px 7.5px rgba(0, 0, 0, 0.1); /* Reduced from 2px 10px */
}

header.scrolled {
  background-color: white;
  box-shadow: 0 3.75px 15px rgba(0, 0, 0, 0.1); /* Reduced from 5px 20px */
  padding: 11.25px 0; /* Reduced from 15px */
}

/* Navbar Layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px; /* Reduced from 20px */
  position: relative;
  min-height: 52.5px; /* Reduced from 70px */
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  width: 150px; /* Reduced from 200px */
  margin-left: 75px; /* Reduced from 100px */
}

.logo-img {
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px; /* Reduced from 20px */
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem; /* Reduced from 1.2rem */
  font-weight: 500;
  position: relative;
  padding: 7.5px 11.25px; /* Reduced from 10px 15px */
}

/* Hover Effect */
.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -3.75px; /* Reduced from -5px */
  left: 0;
  width: 0;
  height: 1.5px; /* Reduced from 2px */
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 1.275rem; /* Reduced from 1.7rem */
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(228, 232, 240, 0.9)), url('https://images.unsplash.com/photo-1626785774573-4b799315345d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 500px; /* Reduced from 600px */
}

.hero h1 {
  font-size: 2.75rem; /* Reduced from 3.8rem */
  margin-bottom: 13px; /* Reduced from 20px */
  line-height: 1.2;
}

.hero h1 span {
  background: var(--primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.725rem; /* Reduced from 2.3rem */
  color: var(--gray);
  margin-bottom: 22.5px; /* Reduced from 30px */
}

.hero-btns {
  display: flex;
  gap: 15px; /* Reduced from 20px */
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 37.5px; /* Reduced from 50px */
  gap: 22.5px; /* Reduced from 30px */
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 3.525rem; /* Reduced from 4.7rem */
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text {
  font-size: 0.75rem; /* Reduced from 1.0rem */
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.75px; /* Reduced from 1px */
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 525px; /* Reduced from 700px */
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); } /* Reduced from -20px */
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 37.5px; /* Reduced from 50px */
}

.about-image {
  flex: 1;
  border-radius: 15px; /* Reduced from 20px */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Reduced from 20px 40px */
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2.25rem; /* Reduced from 3rem */
  margin-bottom: 15px; /* Reduced from 20px */
}

.about-text h3 span {
  color: var(--primary);
}

.about-text p {
  margin-bottom: 15px; /* Reduced from 20px */
  color: var(--gray);
}

.features {
  margin-top: 22.5px; /* Reduced from 30px */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px; /* Reduced from 20px */
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 7.5px; /* Reduced from 10px */
}

.feature-icon {
  color: var(--primary);
  font-size: 1.65rem; /* Reduced from 2.2rem */
}

.feature-text h4 {
  font-size: 1.125rem; /* Reduced from 1.5rem */
  margin-bottom: 3.75px; /* Reduced from 5px */
}

.feature-text p {
  font-size: 0.9rem; /* Reduced from 1.2rem */
  color: var(--gray);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem auto;
  }

  .carousel {
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }

  .carousel-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    text-align: center;
  }

  .carousel-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
  }

  .carousel-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
  }

  .carousel-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

/* NEW Label Styles */
.new-label {
  position: absolute;
  top: 11.25px; /* Reduced from 15px */
  right: 11.25px; /* Reduced from 15px */
  background: #b30422;
  color: white;
  padding: 3.75px 9px; /* Reduced from 5px 12px */
  border-radius: 15px; /* Reduced from 20px */
  font-size: 0.6rem; /* Reduced from 0.8rem */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px; /* Reduced from 1px */
  box-shadow: 0 3px 11.25px rgba(237, 52, 161, 0.3); /* Reduced from 4px 15px */
  z-index: 2;
  animation: pulse 2s infinite;
}

.new-label::after {
  content: '';
  position: absolute;
  top: -3.75px; /* Reduced from -5px */
  right: -3.75px; /* Reduced from -5px */
  width: 11.25px; /* Reduced from 15px */
  height: 11.25px; /* Reduced from 15px */
  background-color: var(--secondary);
  border-radius: 50%;
  z-index: -1;
  animation: blink 1.5s infinite;
}
.service-card {
  position: relative;
  overflow: hidden;
}






/* Skills Section */
.skills {
  background-color: white;
}

.skills-container {
  display: flex;
  gap: 50px;
}

.skills-text {
  flex: 1;
}

.skills-text h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.skills-text p {
  color: var(--gray);
  margin-bottom: 30px;
}

.skills-progress {
  flex: 1;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-name {
  font-weight: 600;
}

.skill-percent {
  color: var(--primary);
}



.progress-bar {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  width: 0;
  transition: width 1s ease;
}

/* Portfolio Section */
.portfolio {
  background-color: #f8f9fa;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  font-size: 1rem;
  padding: 14px 28px;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: #1fb37a;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-image {
  height: 250px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(106, 17, 203, 0.8), rgba(37, 117, 252, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  overflow: hidden;
}

.testimonial-item {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--primary);
  flex: 0 0 100%;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  display: block;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text:before {
  top: -20px;
  left: -20px;
}

.testimonial-text:after {
  bottom: -40px;
  right: -20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid var(--primary);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.author-position {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
} 

.testimonial-dot.active {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.clients-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  /* background-color: var(--primary) ; */
}

.logo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
}

.logo-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-label {
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
  color: #333;
}

.logo-item:hover .logo-frame {
  transform: scale(1.1);
}


/* Team Section */
.team {
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.team-member {
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-info p {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  transform: translateY(-3px);
}

.underline {
  position: relative;
}

.underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(228, 232, 240, 0.9)),
              url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')
              no-repeat center center/cover;
  padding: 4rem 2rem;
}

.contact-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  flex: 1 1 350px;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info h3 {
    font-size: 1.8rem;
  }

  .contact-text h4 {
    font-size: 0.95rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }

  .form-control,
  .form-group label {
    font-size: 0.9rem;
  }
}


/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 30px 0 10px; /* slightly reduced */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* smaller min size */
  gap: 16px;
}

.footer-col h3 {
  font-size: 1.6rem; /* was 2.5rem */
  margin-bottom: 10px;
  color: var(--accent);
}

.footer-col p {
  font-size: 1rem; /* was 1.5rem */
  line-height: 1.5;
  opacity: 0.85;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem; /* was 2rem */
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: white;
  font-size: 1rem; /* was 1.9rem */
  opacity: 0.7;
}



/* Hiring Section */
.hiring-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 800px;
  max-height: 800px;
  margin: 2rem auto;
  padding: 2rem 2rem;
  background-color: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 3px solid var(--secondary);
}

.hiring-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hiring-title2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin: 0;
  position: relative;
  display: inline-block;
}

.hiring-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.hiring-badge {
  background-color: var(--secondary);
  color: var(--dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  margin-left: 1rem;
  font-size: 1rem;
  transform: rotate(-5deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hiring-role {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 1rem 0;
}

.hiring-description {
  color: var(--gray);
  line-height: 1.3;
  margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.hiring-skills {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent);
}

.skills-title {
  color: var(--dark);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.skills-list {
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.2rem;
  font-size: 0.8rem;
}

.skills-list li {
  margin-bottom: 0.6rem;
  color: var(--gray);
  break-inside: avoid;
}

.join-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.join-button:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.join-button:active {
  transform: translateY(1px);
}



  .discouont{
      width: 1700px;
      height: 50px;
  }
  




/* Responsive CSS Fixes for Affordingo Website */

/* 1. Mobile Menu Fix */
@media (max-width: 992px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .mobile-menu-btn {
      display: block;
      z-index: 1001;
    }
  }
  
  /* 2. Hero Section Adjustments */
  @media (max-width: 992px) {
    .hero {
      height: auto;
      padding: 120px 0 60px;
    }
    
    .hero-image {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin-top: 40px;
      animation: none;
    }
    
    .hero-content {
      max-width: 100%;
      text-align: center;
    }
    
    .hero-btns {
      justify-content: center;
    }
    
    .hero-stats {
      justify-content: center;
    }
  }
  
  /* 3. About Section Stacking */
  @media (max-width: 992px) {
    .about-content {
      flex-direction: column;
    }
    
    .about-image {
      margin-bottom: 40px;
    }
  }

  /* 5. Skills Section Stacking */
  @media (max-width: 768px) {
    .skills-container {
      flex-direction: column;
    }
    
    .skills-text {
      margin-bottom: 40px;
    }
    
      @media (max-width: 768px) {
    .carousel-track {
      gap: 12px;
    }

    .carousel-card {
      min-width: 80%;
    }
  }
  }
  
  /* 6. Portfolio Filter Buttons */
  @media (max-width: 576px) {
    .portfolio-filter {
      flex-direction: column;
      align-items: center;
    }
    
    .filter-btn {
      width: 100%;
      max-width: 200px;
      margin-bottom: 10px;
    }
  }
  
  /* 7. Team Section Grid */
  @media (max-width: 768px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .member-image {
  height: 320px;
  /*overflow: hidden;*/
}
    
    
  }
  
  @media (max-width: 480px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* 8. Contact Section Stacking */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-info {
      margin-bottom: 40px;
    }
  }
  
  /* 9. Testimonials Adjustment */
  @media (max-width: 768px) {
    .testimonial-item {
      padding: 30px 20px;
      max-height: 270px;
    }
    
    .testimonial-text {
      font-size: 1.2rem;
    }
  }
  
 /* 10. Footer Columns */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets/small laptops */
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: 12px;
  }
}

  
  /* 11. Hiring Section Adjustments */
  @media (max-width: 768px) {
    .hiring-section {
      padding: 1rem;
      margin: 1rem auto;
      max-height: 1200px;
    }
    
    .hiring-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hiring-badge {
      margin-left: 0;
      margin-top: 15px;
    }
    
    .skills-list {
      columns: 1;
    }
  }
  
  /* 12. General Typography Adjustments */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    h3 {
      font-size: 1.5rem;
    }
    
    p {
      font-size: 1.2rem;
    }
    
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .hero p {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1.2rem;
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  
  
  
  /* 13. Fix for overflow issues */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* 14. Ensure images don't overflow containers */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* 15. Client grid adjustment */
  @media (max-width: 768px) {
    .clients-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .clients-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* 16. Form input sizing */
  @media (max-width: 768px) {
    .form-control {
      padding: 10px 12px;
    }
    
    textarea.form-control {
      min-height: 120px;
    }
  }
  
  /* 17. Stat boxes in hero */
  @media (max-width: 576px) {
    .stat-box {
      width: 100%;
      margin-bottom: 20px;
    }
    
    .stat-number {
      font-size: 3rem;
    }
  }
  
  /* 18. Feature items in about section */
  @media (max-width: 576px) {
    .features {
      grid-template-columns: 1fr;
    }
    
    .feature-item {
      margin-bottom: 15px;
    }
  }
  
  /* 19. Portfolio item overlay text */
  @media (max-width: 480px) {
    .portfolio-overlay h3 {
      font-size: 1.8rem;
    }
    
    .portfolio-overlay p {
      font-size: 1rem;
    }
  }
  
  /* 20. Testimonial author layout */
  @media (max-width: 480px) {
    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }
    
    .author-image {
      margin: 0 auto 15px;
    }
  }




@keyframes glitch-anim-1 {
    0% { clip: rect(32px, 9999px, 90px, 0); }
    20% { clip: rect(32px, 9999px, 90px, 0); }
    30% { clip: rect(32px, 9999px, 20px, 0); }
    40% { clip: rect(32px, 9999px, 78px, 0); }
    50% { clip: rect(32px, 9999px, 63px, 0); }
    60% { clip: rect(32px, 9999px, 29px, 0); }
    70% { clip: rect(32px, 9999px, 82px, 0); }
    80% { clip: rect(32px, 9999px, 55px, 0); }
    90% { clip: rect(32px, 9999px, 97px, 0); }
    100% { clip: rect(32px, 9999px, 8px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    20% { clip: rect(65px, 9999px, 119px, 0); }
    30% { clip: rect(65px, 9999px, 10px, 0); }
    40% { clip: rect(65px, 9999px, 98px, 0); }
    50% { clip: rect(65px, 9999px, 43px, 0); }
    60% { clip: rect(65px, 9999px, 29px, 0); }
    70% { clip: rect(65px, 9999px, 92px, 0); }
    80% { clip: rect(65px, 9999px, 15px, 0); }
    90% { clip: rect(65px, 9999px, 77px, 0); }
    100% { clip: rect(65px, 9999px, 8px, 0); }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem)); /* Half the width plus gap */
  }
}


.logo-track:hover {
  animation-play-state: paused;
}

.logo-frame:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}






  /* Responsive adjustments */
  @media (max-width: 768px) {
    .expert-cta h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    
    
    .logo-img {
    align-items: center;
    margin-left: 50px;
    
}

 
  .discouont{
      width: 1700px;
      height: 100px;
  }
  

.subscription-section .section-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

}

.expert-cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expert-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.expert-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--black);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 2rem auto;
  max-width: 180px;
}

/* Decorative elements */
.circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}

.circle-1 {
  width: 160px;
  height: 160px;
  top: -40px;
  right: -40px;
}

.circle-2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -40px;
}

/* Updated Responsive for Smaller Devices */
@media (max-width: 768px) {
  .expert-cta {
    padding: 2.5rem 1.2rem;
  }

  .expert-cta h2 {
    font-size: 1.9rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
  }
}

@media (max-width: 480px) {
  .expert-cta {
    padding: 2rem 1rem;
  }

  .expert-cta h2 {
    font-size: 1.6rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

  .circle-1,
  .circle-2 {
    display: none;
  }
}


.scale-container {
  transform: scale(0.75);
  transform-origin: top left;
  width: 133.33%; /* 100/0.75 = 133.33% to maintain original width */
}

.eyes-container {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    height: 50px;
    pointer-events: none;
    z-index: 1000; /* Ensure it stays above other elements */
}

.eyes {
    position: absolute;
    height: 100px;
    left: 5px;
    will-change: transform;
    transition: transform 0.1s linear;
}

  .discount-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e4e6e7;
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(254, 192, 1, 0.4);
  animation: pulse 3s infinite;
  flex-wrap: wrap;
}

.discount-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.icon {
  font-size: 32px;
  animation: bounce 2s infinite;
}

.headline {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.subtext {
  font-size: 0.9rem;
  margin: 5px 0 0 0;
  opacity: 0.9;
}

.cta1-button {
  background: white;
  color: #1fb37a;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
box-shadow:  0 4px 15px rgba(31, 179, 122, 0.4);;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta1-button:hover {
  background: #facc15;
  color: #000;
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}



@media (max-width: 600px) {
  .discount-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta1-button {
    margin-top: 15px;
    width: 100%;
  }
}


.subscription-section {
  background-color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.subscription-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subscription-section .section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.subscription-swiper {
  padding-bottom: 40px;
}

.subscription-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px;
  margin: auto;
}

.subscription-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.subscription-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-top: 10px;
  margin-bottom: 10px;
}

.subscription-card .discount {
  font-size: 1.1rem;
  color: #ef4444;
  font-weight: bold;
  margin-bottom: 15px;
}

.subscription-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 15px;
}

.subscription-card ul li {
  color: #4b5563;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.subscription-card ul li::before {
  content: "✔";
  color: #1fb37a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.subscription-card .note {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 15px;
}

.btn-wrapper {
  text-align: center;
  margin-top: auto;
}

.subscribe-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1fb37a;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.featured {
  border: 2px solid #1fb37a;
  /*background-color: #ecfdf5;*/
}

.highlight {
  border: 2px solid #1fb37a;
  background-color: #ecfdf5;

  position: relative;
}

.popular-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fedb18;
  color: #1f2937;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 8px;

}

.swiper-pagination {
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #1fb37a;
}
.discount-red {
    
    
  font-size: 1.5rem;
  color: #ef4444;
  font-weight: bold;  
    
}



/* Swiper overrides to match existing team-member style */
.team .swiper {
  padding-bottom: 40px;
}

.team-member {
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 350px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-info p {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.swiper-pagination {
  text-align: center;
  margin-top: 15px;
}

.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}


.service-price{
    padding-bottom: 5px;
    
}





/* Swiper Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #3a86ff;
  transition: all 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #3a86ff;
  color: white;
  transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #3a86ff;
}
