html,
body {
  width: 100%;
  height: 100%;
}
@font-face {
  font-family: gil;
  src: url(./assets/Gilroy-Regular.ttf);
}
main {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  color: whitesmoke;
  font-family: gil;
}
/* --- Footer Styles --- */
.footer {
  width: 100%;
  background: #111;
  color: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
  padding: 48px 0 0 0;
  font-family: gil;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.footer-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}
.footer-address {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 8px;
}
.footer-links {
  flex: 2;
  display: flex;
  gap: 120px;
  justify-content: center;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links a{
    text-decoration: none;
    color: white;
}
.footer-links a:hover{
  color: #712cfc;
}

.footer-col h3 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-robot {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.footer-robot img {
  width: 260px;
  height: auto;
  object-fit: contain;
}
.footer-robot .social-links{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    a{
        color: white;
        font-size: 1.8rem;
        transition: color 0.3s ease;
        text-decoration: none;
    }
    a:hover{
        color: #a259ff;
    }
}
.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 1.35rem;
  color: #fff;
  margin: 32px 0 0 0;
  padding-bottom: 32px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .footer-main {
    max-width: 98vw;
    padding: 0 24px;
  }
  .footer-links {
    gap: 60px;
  }
  .footer-title {
    font-size: 1.7rem;
  }
  .footer-col h3 {
    font-size: 1.5rem;
  }
  .footer-col li {
    font-size: 1.1rem;
  }
  .footer-robot img {
    width: 200px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 12px;
  }
  .footer-left {
    align-items: center;
    text-align: center;
  }
  .footer-links {
    gap: 32px;
    justify-content: center;
    width: 100%;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-robot {
    justify-content: center;
    margin-top: 18px;
  }
  .footer-robot img {
    width: 140px;
  }
  .footer-title {
    font-size: 1.2rem;
  }
  .footer-col h3 {
    font-size: 1.1rem;
  }
  .footer-col li {
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.95rem;
    padding-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 24px 0 0 0;
    border-radius: 16px 16px 0 0;
  }
  .footer-main {
    gap: 18px;
    padding: 0 4px;
  }
  .footer-logo {
    width: 32px;
    height: 32px;
  }
  .footer-title {
    font-size: 1rem;
  }
  .footer-address {
    font-size: 0.95rem;
  }
  .footer-links {
    gap: 12px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .footer-col {
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .footer-col h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .footer-col li {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }
  .footer-robot img {
    width: 80px;
  }
  .footer-bottom {
    font-size: 0.8rem;
    padding-bottom: 8px;
    margin-top: 18px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Navbar Styles */
nav {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.nav-left h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style-type: none;
  font-weight: bold;
  text-transform: capitalize;
  color: white;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.nav-links a:hover {
  color: #712cfc;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #712cfc;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.consultation-btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #712cfc 0%, rgba(156, 28, 248, 0.1) 100%);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border: none;
  font-family: inherit;
}

.consultation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(113, 44, 252, 0.3);
}

.arrow-right {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: black;
  font-size: large;
  transition: transform 0.3s ease;
}

.consultation-btn:hover .arrow-right {
  transform: translateX(3px);
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: left;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #111;
  z-index: 999;
  transition: right 0.3s ease;
  padding: 80px 20px 20px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid #333;
  transition: color 0.3s ease;
}

.mobile-nav-links li a:hover {
  color: #712cfc;
}

.mobile-consultation-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #712cfc 0%, rgba(156, 28, 248, 0.1) 100%);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mobile-consultation-btn:hover {
  transform: translateY(-2px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ========== RESPONSIVE STYLES ========== */

/* 📱 Large Tablet (769px - 1024px) */
@media (max-width: 1024px) {
  nav {
    padding: 20px 30px;
  }
  
  .nav-links {
    gap: 25px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .consultation-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    gap: 15px;
  }
  
  .arrow-right {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
}

/* 📱 Tablet (768px and below) */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    height: 70px;
  }

  /* Hide desktop navigation */
  .nav-links {
    display: none;
  }

  /* Show hamburger menu */
  .hamburger-menu {
    display: flex;
  }

  /* Adjust consultation button for tablet */
  .consultation-btn {
    font-size: 13px;
    padding: 8px 16px;
    gap: 10px;
    display: none; /* Hide on tablet, show in mobile menu */
  }

  .arrow-right {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .nav-left h1 {
    font-size: 1.3rem;
  }
}

/* 📱 Mobile (480px and below) */
@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
    height: 60px;
  }

  .nav-left img {
    width: 32px;
    height: 32px;
  }

  .nav-left h1 {
    font-size: 1.1rem;
  }

  .hamburger-menu {
    width: 25px;
    height: 18px;
  }

  .mobile-menu {
    width: 85%;
  }

  .mobile-nav-links li a {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .mobile-consultation-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* 📱 Small Mobile (360px and below) */
@media (max-width: 360px) {
  nav {
    padding: 10px 12px;
  }

  .nav-left h1 {
    font-size: 1rem;
  }

  .nav-left img {
    width: 28px;
    height: 28px;
  }

  .mobile-menu {
    width: 90%;
    padding: 70px 15px 15px 15px;
  }

  .mobile-nav-links li a {
    font-size: 1rem;
  }
}

/* Ensure body doesn't scroll when menu is open */
body.menu-open {
  overflow: hidden;
}
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 120px 100px 0 200px;
  min-height: 70vh;
  gap: -100px;
  margin: auto;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 30px;
  background: transparent;
  padding: 32px 32px 32px 0;
  justify-content: center;
  position: relative;
}

.hero-left .line {
  position: absolute;
  left: -2%;
  top: 20%;
  transform: translateY(-50%);
  width: 30px;
  height: 30%;
  background: #712cfc;
  border-radius: 2px;
  z-index: 9;
}
.hero-left h2 {
  font-size: 3.5rem;
  font-weight: bolder;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
  z-index: 10;
}

.hero-left p {
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-left button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #712cfc 0%, rgba(27, 3, 44, 0.128) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 16px;
}

.hero-left button a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 1.5rem;
  font-family: gil;
}

.hero-left button i {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: black;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right img {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 60px 20px 0 20px;
    gap: 30px;
    min-height: 60vh;
  }
  .hero-left h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 10px 0 10px;
    gap: 20px;
    min-height: 50vh;
  }
  .hero-left h2 {
    font-size: 1.5rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
  .hero-left button {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  .line{
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    flex-direction: column-reverse;
    padding: 50px 4vw 0 4vw;
    gap: 14px;
    min-height: 40vh;
    align-items: center;
    box-sizing: border-box;
  }
  .hero-left {
    padding: 0 2vw 12px 2vw;
    gap: 12px;
    width: 100%;
    align-items: center;
    text-align: center;
    margin-left: 0 !important;
  }
  .hero-left h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .hero-left p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .hero-left button {
    padding: 5px 8px;
    font-size: 9px;
    gap: 5px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
  }
  .hero-left button a {
    font-size: 0.7rem;
    padding: 6px;
  }
  .hero-right img {
    border-radius: 8px;
    max-width: 160px;
    margin-bottom: 6px;
  }
  /* Remove top margin for hero section to avoid gap below navbar */
  body {
    padding-top: 54px;
  }
}
/* service */
#services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.our-key-services-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.our-key-services-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a259ff, #7c2cf7);
    border-radius: 2px;
}

.services-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.service-card {
    background: #181818;
    color: #fff;
    padding: 40px 32px;
    width: 330px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44, 44, 44, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a259ff, #7c2cf7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(124, 44, 247, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.active {
    background: linear-gradient(135deg, #7c2cf7, #a259ff);
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(124, 44, 247, 0.3);
}

.service-card.active::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.8rem;
    color: #a259ff;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.service-card.active .service-icon,
.service-card:hover .service-icon {
    color: #fff;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-underline {
    width: 80px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #a259ff 60%, #fff 100%);
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card.active .service-underline,
.service-card:hover .service-underline {
    background: #fff;
}

.service-card p {
    font-size: 1rem;
    color: #eaeaea;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card.active p,
.service-card:hover p {
    color: #fff;
}

/* Animation for cards when they enter viewport */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        gap: 30px;
    }
    
    .service-card {
        width: 280px;
        padding: 32px 24px;
    }
    
    .our-key-services-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #services {
        padding: 60px 20px;
    }
    
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .service-card {
        width: 90%;
        max-width: 400px;
    }
    
    .our-key-services-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    #services {
        padding: 40px 15px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .our-key-services-section-title {
        font-size: 1.8rem;
    }
    
    .service-icon {
        font-size: 2.4rem;
    }
}
 .about {
    position: relative;
    padding: 80px 100px;
    background: #000;
    color: #fff;
    overflow: hidden;
    margin: 80px 0;
    min-height: 700px;
}

.about-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
}

.about-topleft h3 {
    color: #a855f7;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about-topleft h4 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-underline {
    width: 60px;
    height: 4px;
    background: #a855f7;
    border-radius: 4px;
    margin-bottom: 40px;
}

.about-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.about-left {
    flex: 1;
    max-width: 600px;
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.about-container i {
    font-size: 40px;
    color: #a855f7;
    flex-shrink: 0;
    margin-top: 5px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #712cfc, #a855f7);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(113, 44, 252, 0.4);
}

.about-btn a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.about-btn i {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #712cfc;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(4px);
}

/* Right side with background images - FIXED */
.about-right {
    position: relative;
    flex: 0 0 45%;
    height: 500px;
}

.about-bg {
    position: absolute;
    background-image: url(assets/team.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    width: 100%;
    height: 70%;
    border-radius: 12px;
    z-index: 1;
}

.about-lightblack {
    position: absolute;
    background-image: url(assets/tp_robo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 400px;
    height: 250px;
    border-radius: 12px;
    bottom: 0;
    left: -60px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about {
        padding: 60px 60px;
    }
    
    .about-topleft h4 {
        font-size: 36px;
    }
    
    .about-main {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 40px 40px;
        margin: 40px 0;
    }
    
    .about-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-left {
        max-width: 100%;
    }
    
    .about-right {
        flex: none;
        width: 100%;
        height: 400px;
        order: 2; /* ✅ Yeh line add karo - image neeche aayegi */
    }
    
    .about-left {
        order: 1; /* ✅ Yeh line add karo - content upar aayega */
    }
    
    .about-lightblack {
        left: 20px;
        width: 250px;
        height: 180px;
    }
    
    .about-topleft h4 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 30px;
        margin: 30px 0;
        min-height: auto;
    }
    
    .about-topleft h3 {
        font-size: 14px;
    }
    
    .about-topleft h4 {
        font-size: 28px;
    }
    
    .about-container {
        gap: 15px;
    }
    
    .about-container i {
        font-size: 32px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-right {
        height: 300px;
        order: 2; /* ✅ Confirm karo order maintain hai */
    }
    
    .about-left {
        order: 1; /* ✅ Confirm karo order maintain hai */
    }
    
    .about-lightblack {
        width: 200px;
        height: 150px;
        left: 10px;
    }
    
    .about-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .about-btn i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .about-topleft h4 {
        font-size: 24px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .about-container i {
        font-size: 28px;
    }
    
    .about-text h3 {
        font-size: 18px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .about-right {
        height: 250px;
        order: 2; /* ✅ Final confirmation mobile ke liye */
    }
    
    .about-left {
        order: 1; /* ✅ Final confirmation mobile ke liye */
    }
    
    .about-lightblack {
        width: 160px;
        height: 120px;
        left: 0;
    }
    
    .about-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .about-btn i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.settings {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 230px;
}
.service-topleft {
  display: flex;
  flex-direction: column;
  gap: 10px;
  h3 {
    color: #712cfc;
    font-size: 20px;
    font-weight: bold;
  }
  h4 {
    font-size: 40px;
    font-weight: bolder;
    max-width: 500px;
    margin-top: 10px;
  }
}

.service-bottom {
  padding: 0px 180px 0px 0px;
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card-one {
  background: #181818;
  color: #fff;
  padding: 15px 15px;
  width: 350px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 0 4px 24px rgba(44, 44, 44, 0.1);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card-one:hover {
  background-color: #712cfc;
  box-shadow: 0 6px 30px rgba(124, 44, 247, 0.3);
}

/* Left icon circle */
.service-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.service-img i {
  font-size: 28px;
  color: #a855f7; /* Purple Icon */
}

/* Text inside card */
.service-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

/* Arrow icon (right side) */
.service-card-one i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s;
}

.service-card-one:hover i {
  transform: translateX(6px);
  color: #fff;
}

/* Active card style (highlighted purple) */
.service-card-one.active {
  background: #7c2cf7;
  color: #fff;
}

.service-card-one.active .service-img {
  background: #fff;
}

.service-card-one.active .service-img i {
  color: #7c2cf7;
}

.service-card-one.active i.arrow {
  color: #fff;
}

/* 📱 Tablet aur Mobile ke liye */
@media (max-width: 768px) {
  .settings {
    padding-left: 20px; /* Left padding kam */
    padding-right: 20px;
  }

  .service-bottom {
    grid-template-columns: repeat(2, 1fr); /* Tablet pe 2 column */
    padding: 0; /* Extra padding remove */
  }

  .service-card-one {
    width: 100%; 
    max-width: 100%; 
    height: auto; /* Fix height hata diya */
    padding: 15px;
  }

  .service-topleft h4 {
    font-size: 28px; /* Chhoti screen pe thoda kam */
    max-width: 100%;
  }
}

/* 📱 Mobile (chhote devices <480px) */
@media (max-width: 480px) {
  .service-bottom {
    grid-template-columns: 1fr; /* Sirf 1 column */
    gap: 16px;
  }

  .service-card-one {
    border-radius: 20px; /* Rounded thoda chhota */
    flex-direction: row;
    justify-content: flex-start;
  }

  .service-img {
    width: 60px;
    height: 60px;
    margin-right: 12px;
  }

  .service-text {
    font-size: 14px;
  }

  .service-topleft h3 {
    font-size: 18px;
  }

  .service-topleft h4 {
    font-size: 22px;
  }
}

.project {
  width: 100%;
  padding: 0 100px 0px 230px;
  margin: 90px 0 50px 0;
  color: #fff;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.project-heading h3 {
  color: #712cfc;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-heading h4 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
}

.service-underline {
  width: 60px;
  height: 4px;
  background: #712cfc;
  margin-top: 8px;
  border-radius: 4px;
}

/* Button */
.project-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #712cfc, #712cfc, #3b83f61e);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 24px;
  font-family: gil;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.project-btn a {
  text-decoration: none;
  color: #fff;
}

.project-btn i {
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: black;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Project cards */
/* Project cards container */
.project-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* snap enable */
  -webkit-overflow-scrolling: touch; /* smooth on mobile */
  padding-bottom: 12px; /* scrollbar ke liye space */
}

/* Scrollbar style */
.project-cards::-webkit-scrollbar {
  width: 10px;
  height: 6px;
}
.project-cards::-webkit-scrollbar-thumb {
  background: #712cfc;
  border-radius: 4px;
}
.project-cards::-webkit-scrollbar-track {
  background: #1a1a1a;
}

/* Each card */
.project-card {
  flex: 0 0 auto; /* Stop shrinking */
  width: 350px;
  height: 450px;
  background: #111;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  scroll-snap-align: start; /* Snap per card */
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-img {
  width: 100%;
  height: 380px;
  background: #ccc; /* placeholder grey */
}

.project-info {
  padding: 16px;
  background: #181818;
  text-align: center;
}

.project-info h5 {
  font-size: 16px;
  font-weight: 600;
}

.project-info p {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

/* 📱 Tablet (<= 768px) */
@media (max-width: 768px) {
  .project {
    padding: 0 40px; /* Left aur right padding kam */
    margin: 60px 0 40px 0;
  }

  .project-top {
    flex-direction: column; /* Heading aur button niche aa jayenge */
    align-items: flex-start;
    gap: 20px;
  }

  .project-heading h4 {
    font-size: 28px;
  }

  .project-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  .project-card {
    width: 280px;
    height: 400px;
  }

  .project-img {
    height: 300px;
  }
}

/* 📱 Mobile (<= 480px) */
@media (max-width: 480px) {
  .project {
    padding: 0 20px; /* Extra small padding */
    margin: 40px 0 30px 0;
  }

  .project-heading h3 {
    font-size: 14px;
  }

  .project-heading h4 {
    font-size: 22px;
  }

  .service-underline {
    width: 40px;
    height: 3px;
  }

  .project-btn {
    font-size: 16px;
    padding: 8px 18px;
    border-radius: 30px;
  }

  .project-btn i {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .project-cards {
    gap: 16px;
  }

  .project-card {
    width: 240px;
    height: 340px;
  }

  .project-img {
    height: 240px;
  }

  .project-info h5 {
    font-size: 14px;
  }

  .project-info p {
    font-size: 12px;
  }
}

/* --- Testimonial Section Styles --- */
.testimonial {
  width: 100%;
  background: #000;
  padding: 80px 0;
  padding-left: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-container {
  display: flex;
  max-width: 1400px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.testimonial-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d6d6d6;
  min-height: 400px;
  max-width: 400px;
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-img {
  background-image: url('./assets/test_robo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-btn {
  position: absolute;
  left: 70%;
  bottom: 150px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  white-space: nowrap;
  align-items: center;
  background: linear-gradient(90deg, #7c2cf7 0%, #232946 100%);
  color: black;
  border: none;
  border-radius: 50px;
  padding: 10px 12px;
  font-size: 1.5rem;
  font-family: gil;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(44, 44, 44, 0.1);
  transition: background 0.3s;
  z-index: 10;
}

.testimonial-btn-arrow {
  background: white;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  font-size: 2.2rem;
  transition: background 0.3s, color 0.3s;
}

.testimonial-btn:hover {
  background: linear-gradient(90deg, #232946 0%, #7c2cf7 100%);
}

.testimonial-btn:hover .testimonial-btn-arrow {
  background: #7c2cf7;
  color: #fff;
}

.testimonial-btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.testimonial-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  min-width: 600px;
}

.testimonial-title {
  color: #a855f7;
  font-size: 1.2rem;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonial-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.testimonial-underline {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #a259ff 60%, #fff 100%);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1rem;
  color: #fff;
  font-style: italic;
  margin: 32px 0px;
  line-height: 1.6;
}

.testimonial-author {
  margin-bottom: 32px;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-role {
  font-size: 1.2rem;
  color: #a855f7;
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}

.testimonial-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.testimonial-arrow:hover {
  color: #a855f7;
}

.testimonial-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 160px;
  justify-content: center;
}

.testimonial-bar {
  height: 8px;
  width: 48px;
  background: #d6d6d6;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s;
}

.testimonial-bar.active {
  background: #7c2cf7;
}

/* ========== RESPONSIVE STYLES ========== */

/* 📱 Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .testimonial {
    padding: 60px 40px;
    padding-left: 40px;
  }
  
  .testimonial-container {
    gap: 40px;
  }
  
  .testimonial-right {
    padding: 0 40px;
    min-width: auto;
  }
  
  .testimonial-heading {
    font-size: 2.2rem;
  }
  
  .testimonial-img {
    background-size: contain;
    background-position: center center;
  }
}

/* 📱 Tablet (<= 768px) */
@media (max-width: 768px) {
  .testimonial {
    padding: 60px 30px;
    padding-left: 30px;
  }

  .testimonial-container {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-left {
    max-width: 100%;
    min-height: 350px;
    width: 100%;
    order: 1;
  }

  .testimonial-img {
    min-height: 350px;
    background-size: cover;
  }

  .testimonial-btn {
    position: static;
    margin-top: 20px;
    transform: none;
    align-self: center;
  }

  .testimonial-right {
    min-width: auto;
    padding: 0;
    text-align: center;
    align-items: center;
    order: 2;
  }

  .testimonial-heading {
    font-size: 2rem;
    text-align: center;
  }

  .testimonial-text {
    font-size: 1rem;
    text-align: center;
    margin: 24px 0;
    line-height: 1.7;
  }

  .testimonial-text br {
    display: none;
  }

  /* ✅ BUTTONS POSITION FIX - Mobile view mein upar */
  .testimonial-controls {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px; /* ✅ Reduced from 24px to 16px */
    margin-bottom: 10px; /* ✅ Added bottom margin */
  }
}

/* 📱 Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .testimonial {
    padding: 50px 25px;
  }
  
  .testimonial-left {
    min-height: 300px;
  }
  
  .testimonial-img {
    min-height: 300px;
  }
  
  .testimonial-heading {
    font-size: 1.8rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    margin: 20px 0;
  }

  /* ✅ More adjustment for landscape */
  .testimonial-controls {
    margin-top: 12px; /* ✅ Even more reduced */
    gap: 28px;
  }
}

/* 📱 Mobile (<= 576px) */
@media (max-width: 576px) {
  .testimonial {
    padding: 40px 20px;
  }

  .testimonial-container {
    gap: 30px;
  }

  .testimonial-left {
    min-height: 250px;
    max-width: 100%;
  }

  .testimonial-img {
    min-height: 250px;
  }

  .testimonial-btn {
    font-size: 1.1rem;
    padding: 8px 16px;
  }

  /* ✅ Mobile buttons position fix */
  .testimonial-controls {
    gap: 24px;
    margin-top: 8px; /* ✅ Significantly reduced top margin */
    margin-bottom: 15px; /* ✅ Added more bottom margin */
  }

  .testimonial-arrow {
    font-size: 2rem; /* ✅ Slightly smaller arrows */
  }

  .testimonial-pagination {
    width: 140px;
  }

  .testimonial-bar {
    width: 40px;
    height: 6px;
  }
}

/* 📱 Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .testimonial {
    padding: 30px 16px;
  }
  
  .testimonial-container {
    gap: 24px;
  }
  
  .testimonial-left {
    min-height: 200px;
  }
  
  .testimonial-img {
    min-height: 200px;
  }
  
  .testimonial-heading {
    font-size: 1.4rem;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
  
  /* ✅ Final adjustment for small mobile */
  .testimonial-controls {
    gap: 20px;
    margin-top: 5px; /* ✅ Minimum top margin */
    margin-bottom: 20px; /* ✅ More bottom margin to push up */
  }
  
  .testimonial-pagination {
    width: 120px;
  }
  
  .testimonial-bar {
    width: 35px;
  }

  .testimonial-arrow {
    font-size: 1.8rem;
  }
}

/* 📱 Extra Small Mobile (<= 360px) */
@media (max-width: 360px) {
  .testimonial {
    padding: 25px 12px;
  }
  
  .testimonial-heading {
    font-size: 1.3rem;
  }
  
  .testimonial-text {
    font-size: 0.8rem;
  }
  
  /* ✅ Ultra small screen adjustment */
  .testimonial-controls {
    flex-direction: row; /* ✅ Keep horizontal */
    gap: 16px;
    margin-top: 0; /* ✅ No top margin */
    margin-bottom: 25px; /* ✅ Maximum bottom margin */
    justify-content: center;
  }

  .testimonial-pagination {
    width: 100px;
    gap: 3px;
  }

  .testimonial-bar {
    width: 30px;
    height: 5px;
  }

  .testimonial-arrow {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .testimonial-author {
    margin-bottom: 20px; 
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    margin-bottom: 15px; 
  }
}

.info {
  width: 100%;
  padding: 0 100px 0px 230px;
  margin: 90px 0 50px 0;
  color: #fff;
}

.info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.info-heading h3 {
  color: #712cfc;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-heading h4 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
}

.service-underline {
  width: 60px;
  height: 4px;
  background: #712cfc;
  margin-top: 8px;
  border-radius: 4px;
}

/* Button */
.info-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #712cfc, #712cfc, #3b83f61e);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 24px;
  font-family: gil;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.info-btn a {
  text-decoration: none;
  color: #fff;
}

.info-btn i {
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: black;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-cards {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  flex: 0 0 auto;
  width: 350px;
  min-height: 350px;
  background: #111;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

.ayush {
  background-image: url(./new/Globalantic/images/Ayush-Ahirwar2.png);
}

.saurabh {
  background-image: url(./new/Globalantic/images/Saurabh-Singh-Lodhi2.png);
}

.info-deatils {
  padding: 16px 12px;
  background: #181818;
  text-align: flex-start;
  display: flex;
  flex-direction: column;
  gap:10px;
  justify-items: space-between;
  text-align: center;
}

.info-deatils h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.info-deatils p {
  font-size: 13px;
  color: #b6b6b6;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  font-family: gil;
  font-weight: 900;
  text-transform: capitalize;
}
/* 📱 Tablet (<= 768px) */
@media (max-width: 768px) {
  .info {
    padding: 0 40px;
    margin: 60px 0 40px 0;
  }

  .info-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .info-heading h4 {
    font-size: 28px;
  }

  .info-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  .info-cards {
    flex-wrap: wrap;   /* Cards wrap in next row */
    justify-content: center;
  }

  .info-card {
    width: calc(50% - 20px); /* 2 cards per row */
    min-height: 300px;
  }

  .info-img {
    height: 220px;
  }
}

/* 📱 Mobile (<= 480px) */
@media (max-width: 480px) {
  .info {
    padding: 0 20px;
    margin: 40px 0 30px 0;
  }

  .info-heading h3 {
    font-size: 14px;
  }

  .info-heading h4 {
    font-size: 22px;
  }

  .service-underline {
    width: 40px;
    height: 3px;
  }

  .info-btn {
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 30px;
  }

  .info-btn i {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .info-cards {
    flex-direction: column; /* Cards stack vertically */
    gap: 16px;
  }

  .info-card {
    width: 100%;
    min-height: 260px;
  }

  .info-img {
    height: 180px;
  }

  .info-deatils h5 {
    font-size: 14px;
  }

  .info-deatils p {
    font-size: 12px;
  }
}
.subscribe{
   width: 100%;
  padding: 0 100px 0px 230px;
  margin: 90px 0 50px 0;
  color: #fff; 
  
}
.subscribe-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
}

.subscribe-container h3{
    font-size: 32px;
}
.email{
  display: flex;
  align-items: center;
  input{
    width: 90%;
    padding: 12px 20px; 
  }
  button{
    padding: 12px 20px;
    background: linear-gradient(90deg, #712cfc, #712cfc);
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: gil;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
  }
}
/* 📱 Tablet (<= 768px) */
@media (max-width: 768px) {
  .subscribe {
    padding: 0 40px;
    margin: 60px 0 40px 0;
  }

  .subscribe-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .subscribe-container h3 {
    font-size: 24px;
    text-align: left;
  }

  .email {
    width: 100%;
  }

  .email input {
    width: 70%;
    font-size: 14px;
  }

  .email button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* 📱 Mobile (<= 480px) */
@media (max-width: 480px) {
  .subscribe {
    padding: 0 20px;
    margin: 40px 0 30px 0;
  }

  .subscribe-container {
    gap: 16px;
    text-align: center;
  }

  .subscribe-container h3 {
    font-size: 20px;
    text-align: center;
  }

  .email {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .email input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
  }

  .email button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
  }
}


 /* Blog Section */
       .blog {
    width: 100%;
    padding: 100px 100px 60px 100px;
    color: #fff;
    background: #000;
    position: relative;
}

.blog-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.blog-heading {
    flex: 1;
}

.blog-heading h3 {
    color: #712cfc;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.blog-heading h4 {
    font-size: 42px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
    border-radius: 5px;
    margin-bottom: 0;
}

/* Button */
.blog-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    height: fit-content;
}

.blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(113, 44, 252, 0.4);
}

.blog-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.blog-btn:hover i {
    transform: translateX(4px);
}

/* Blog Cards Container */
.blog-cards-container {
    position: relative;
    width: 100%;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual Blog Card */
.blog-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid #222;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 44, 252, 0.15);
    border-color: #712cfc;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

/* Blog Image */
.blog-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

/* Category Badge */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Blog Content */
.blog-details {
    padding: 25px;
    background: #181818;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-details h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-details p {
    font-size: 15px;
    color: #b6b6b6;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #712cfc;
    font-size: 14px;
    font-weight: 500;
}

.blog-date i {
    font-size: 16px;
}

.read-more {
    color: #712cfc;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 8px;
}

/* Scrollable layout for mobile */
.blog-cards.scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    margin-right: -20px;
    padding-right: 20px;
}

.blog-cards.scrollable .blog-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
}

/* Scrollbar Styling */
.blog-cards.scrollable::-webkit-scrollbar {
    height: 8px;
}

.blog-cards.scrollable::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;
}

.blog-cards.scrollable::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
    border-radius: 10px;
}

.blog-cards.scrollable::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #a855f7 0%, #712cfc 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog {
        padding: 80px 60px 50px 60px;
    }
    
    .blog-heading h4 {
        font-size: 36px;
    }
    
    .blog-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .blog {
        padding: 80px 50px 50px 50px;
    }
    
    .blog-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .blog-heading h4 {
        font-size: 32px;
    }
    
    .blog-btn {
        align-self: flex-start;
    }
    
    .blog-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 60px 30px 40px 30px;
    }

    .blog-heading h3 {
        font-size: 16px;
    }

    .blog-heading h4 {
        font-size: 28px;
    }

    .blog-btn {
        font-size: 15px;
        padding: 12px 28px;
        width: 100%;
        justify-content: center;
    }

    /* Switch to horizontal scroll on mobile */
    .blog-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        gap: 20px;
        padding-bottom: 15px;
        margin-right: -30px;
        padding-right: 30px;
    }

    .blog-card {
        flex: 0 0 auto;
        width: 300px;
        scroll-snap-align: start;
        min-height: 380px;
    }

    .blog-img {
        height: 180px;
    }

    .blog-details {
        padding: 20px;
    }

    .blog-details h5 {
        font-size: 18px;
    }

    .blog-details p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 50px 20px 30px 20px;
    }

    .blog-heading h3 {
        font-size: 14px;
    }

    .blog-heading h4 {
        font-size: 24px;
    }

    .blog-underline {
        width: 60px;
        height: 4px;
    }

    .blog-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .blog-cards {
        gap: 16px;
        margin-top: 30px;
        margin-right: -20px;
        padding-right: 20px;
    }

    .blog-card {
        width: 280px;
        min-height: 360px;
    }

    .blog-img {
        height: 160px;
    }

    .blog-details {
        padding: 18px;
        gap: 12px;
    }

    .blog-details h5 {
        font-size: 17px;
    }

    .blog-details p {
        font-size: 13px;
    }

    .blog-meta {
        padding-top: 12px;
    }

    .blog-date {
        font-size: 13px;
    }

    .read-more {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .blog {
        padding: 40px 15px 25px 15px;
    }
    
    .blog-card {
        width: 260px;
        min-height: 340px;
    }
    
    .blog-img {
        height: 150px;
    }
    
    .blog-details h5 {
        font-size: 16px;
    }
}

/* Loading Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }

.touch{
    width: 100%;
    padding: 0 0 0 0;
    margin: 0;
    color: #fff;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.touch-top{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.touch-top h3{
  color: #712cfc;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
}
.touch-top h2{
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}

.touch-form{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 70vw;
  max-width: 1600px;
  background: none;
  align-items: center;
  justify-content: center;
}
.touch-form input, .touch-form textarea {
  background: #111;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  padding: 18px 32px;
  width: 100%;
  margin-bottom: 0;
  outline: none;
  font-family: gil;
  transition: box-shadow 0.2s;
}
.touch-form input:focus, .touch-form textarea:focus {
  box-shadow: 0 0 0 2px #712cfc;
}
.touch-form textarea {
  grid-column: 1 / span 2;
  min-height: 120px;
  resize: none;
}

.touch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #712cfc 0%, #a259ff 100%);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0 32px 0 24px;
  font-size: 1.15rem;
  font-family: gil;
  font-weight: 700;
  cursor: pointer;
  width: 240px;
  height: 56px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
  box-shadow: none;
  transition: background 0.3s;
}
.touch-btn-text {
  flex: 1;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding-right: 18px;
}
.touch-btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.touch-btn i {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #232946;
  font-size: 1.15rem;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
  transition: background 0.3s, color 0.3s;
}
.touch-btn:hover {
  background: linear-gradient(90deg, #a259ff 0%, #712cfc 100%);
}
.touch-btn:hover .touch-btn-arrow {
  background: #712cfc;
  color: #fff;
}


/* project */
/* Young Team Section Styles */
.young-team-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.young-team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.young-team-circle {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-bg {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(113, 44, 252, 0.2);
}

.inner-circle {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.number {
  font-size: 5rem;
  font-weight: bold;
  color: #712cfc;
  margin: 0;
}

.number sup {
  font-size: 2.5rem;
  color: #712cfc;
}

.text-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.floating-bot {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.young-team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-badge {
  background: linear-gradient(90deg, #712cfc 0%, #a855f7 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
}

.section-heading {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(90deg, #712cfc 0%, rgba(113, 44, 252, 0.8) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(113, 44, 252, 0.3);
}

.button-arrow {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-arrow img {
  width: 12px;
  height: 12px;
}

/* Process Section Styles */
.process-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.process-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #712cfc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.process-image {
  flex: 1;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

.process-cta {
  text-align: center;
  padding: 40px 0 0 0;
}

.process-cta p {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.project-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #712cfc;
  text-decoration: none;
  background: linear-gradient(90deg, #712cfc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid #712cfc;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.project-link:hover {
  border-bottom-color: #a855f7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .young-team-container,
  .process-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .circle-bg {
    width: 400px;
    height: 400px;
  }
  
  .inner-circle {
    width: 280px;
    height: 280px;
  }
  
  .section-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .young-team-section,
  .process-section {
    padding: 60px 15px;
  }
  
  .circle-bg {
    width: 300px;
    height: 300px;
  }
  
  .inner-circle {
    width: 200px;
    height: 200px;
  }
  
  .number {
    font-size: 3rem;
  }
  
  .number sup {
    font-size: 1.5rem;
  }
  
  .text-content h2 {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .floating-bot {
    width: 80px;
  }
  
  .process-image {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .circle-bg {
    width: 250px;
    height: 250px;
  }
  
  .inner-circle {
    width: 170px;
    height: 170px;
  }
  
  .number {
    font-size: 2.5rem;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
}