
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

html, body {
  overflow-x: hidden;
}

/* Navbar */

/* Mobile Hamburger - hidden on desktop */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mobile Hamburger - hidden on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* Mobile Menu styles */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #303030;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  padding: 15px 0;
  text-align: center;
}

.mobile-menu a {
  color: #fff;
  padding: 12px 0;
  text-decoration: none;
  font-size: 18px;
  display: block;
  font-family: "Arimo", sans-serif;
}

.mobile-menu a:hover {
  background: #fc8d1e;
  color: #000;
}

/* When active - show menu */
.mobile-menu.active {
  display: flex;
}

/* Responsive rules */
@media (max-width: 768px) {
  .nav-menu,
  #nav-part2 {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 45px;
  }
}

/* Slide-in Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: #303030;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:hover {
  background: #fc8d1e;
  color: #000;
}

.close-btn {
  align-self: flex-end;
  padding: 15px 20px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Only */
@media (max-width: 768px) {
  .nav-menu,
  #nav-part2 {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #000;
  }

  .navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 45px;
    margin-left: -10px;
  }
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #ffffff;
}

.logo img {
  height: 50px;
  width: auto;
  background-color: white;
  margin-left: 20px;
}

/* Remove toggle styles — not needed anymore */
.logo-switch {
  display: none;
}

.nav-menu {
  background-color: #303030;
  border-radius: 50px;
  padding: 15px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-family: "Arimo", sans-serif;
  font-weight: 500;
  padding: 4px 5px; /* fixed padding here */
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block; /* ensures hover effect doesn't affect others */
  box-sizing: border-box;
}

.nav-links a:hover {
  background-color: #fc8d1e;
  color: black;
  /* Remove padding change */
}

.dropdown {
  position: relative;
}




.contact-btn {
  background-color: #fc8d1e;
  color: #000;
  padding: 7px 25px;
  border-radius: 50px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
  font-family: "Arimo", sans-serif;
}

.contact-btn i {
  background-color: #000;
  color: #fc8d1e;
  border-radius: 50%;
  padding: 5px;
}


#nav-part2 {
  padding: 8px 20px;
  border: 1px solid #000000;
  border-radius: 50px;
  font-weight: 500;
  color: #000000bb;
  transition: all ease 0.4s;
  font-size: 18px;
  overflow: hidden;
  position: relative;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /* background: linear-gradient(to right, #0f1d3e, #0e234b);; */
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  background-color: #fc8d1e;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #333333;
  text-decoration: none;
  position: relative;
  z-index: 9;
  font-family: "Arimo", sans-serif;
}

#nav-part2 h4:hover a {
  color: #333333 ;
}

#nav-part2 i {
  background-color: #000;
  color: #fc8d1e;
  border-radius: 50%;
  padding: 5px;
}


/* Desktop Dropdown Grid */
.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background-color: #fff;
  border-radius: 12px;
  position: absolute;
  top: 25px;
  left: 0;
  min-width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(15px);
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Arimo", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 4px 10px;  /* Normal state me padding fixed rakho */
  border-radius: 30px; /* Hover ke liye same radius yaha pe de do */
}

.dropdown-content a:hover {
  background-color: #fc8d1e;
  color: black;
}

.dropdown-content .icon {
  background-color: #333333 ;
  color: #fc8d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

/* Mobile dropdown styles */
.mobile-dropdown {
  width: 100%;
  text-align: left;
}

.mobile-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
  cursor: pointer;

  /* New Fix */
  display: flex;
  justify-content: center; /* center text + icon */
  align-items: center;
  gap: 8px; /* space between text & arrow */
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown-btn:hover {
  background: #fc8d1e;
  color: #000;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  background: #222;
}

.mobile-dropdown-content a {
  padding: 12px 40px; /* indented look */
  font-size: 16px;
  color: #fff;
  margin-left: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown-content a:hover {
  background: #fc8d1e;
  color: #000;
}






/* Hero Section */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .hero-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px 60px;
      gap: 20px;
      flex-wrap: wrap;
      background-color: #ffffff;
    }

    .left-content {
      flex: 1;
      min-width: 300px;
    }

    .left-content h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 30px;
      font-family: "Rajdhani", sans-serif;
      color: black;
      font-weight: bold;
    }

    .highlight {
      /* background: linear-gradient(to right, #7b2ff7, #f107a3, #ff6a00); */
      background: linear-gradient(90deg, #FCA245, #333333);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      transition: opacity 0.4s ease-in-out;
    }

    .animate-up {
      animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    
#nav-part1 {
  padding: 8px 20px;
  border: 1px solid #000000;
  border-radius: 50px;
  font-weight: 500;
  color: #000000bb;
  transition: all ease 0.4s;
  font-size: 22px;
  overflow: hidden;
  position: relative;
  width: 25%;
}

#nav-part1 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  background-color: #fc8d1e;
}

#nav-part1 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part1 h4 a {
  color: #333333;
  text-decoration: none;
  position: relative;
  z-index: 9;
  font-family: "Rajdhani", sans-serif;
  margin-left: 20px;
}

#nav-part1 h4:hover a {
  color: #333333 ;
}


    .right-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .right-image img {
      max-width: 80%;
      height: 400px;
      border-radius: 10px;
      transition: opacity 0.5s ease-in-out;
    }

  /* Tablet & Small Desktop */
  @media (max-width: 1024px) {
    .hero-section {
      flex-direction: column;
      padding: 40px;
      text-align: center;
    }
    #nav-part1 {
      margin: 0 auto;
    }
  }

  /* Medium Mobile */
  @media (max-width: 600px) {
    .hero-section {
      padding: 30px;
    }
    .left-content h1 {
      font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    #nav-part1 {
      font-size: 16px;
      padding: 8px 16px;
    }
  }

  /* Small Mobile */
  @media (max-width: 480px) {
    .hero-section {
      padding: 20px;
    }
    .left-content h1 {
      font-size: clamp(1.8rem, 6vw, 1.8rem);
    }
    #nav-part1 {
      font-size: 20px;
      padding: 6px 14px;
      width: 50%;
      text-align: center;
    }

    .right-image img {
      width: 350px;
      height: 200px;
    }
    #nav-part1 h4 a {
      margin-left: 10px;
    }
  }




/* About Section */


.global-reach {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 30px;
  text-align: center;
  background-color: #ffffff;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  align-items: center;
}

.bubble {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.light-purple {
  background-color: #fadb97;
}

.light-purple1 {
  background-color: #fadb97;
  margin-right: 180px;
}

.light-green {
  background-color: #e0fccf;
  margin-left: 180px;
}

.light-green1 {
  background-color: #e0fccf;
}

.bubble h2 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  color: black;
  font-family: "Rajdhani", sans-serif;
}

.bubble p {
  margin: 10px 0 0;
  font-size: 20px;
  color: rgb(68, 68, 68);
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
}

.center-content {
  flex: 2;
  max-width: 600px;
  padding: 20px;
}

.center-content h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
  font-family: "Rajdhani", sans-serif;
}

.center-content span {
  color: #fc8d1e;
}

.center-content p {
  font-size: 18px;
  color: rgb(68, 68, 68);
  margin-bottom: 20px;
  font-weight: 500;
  font-family: "Rajdhani", sans-serif;
}

   
#nav-part3 {
  padding: 8px 20px;
  border: 1px solid #000000;
  border-radius: 50px;
  font-weight: 500;
  color: #000000bb;
  transition: all ease 0.4s;
  font-size: 20px;
  overflow: hidden;
  position: relative;
  width: 35%;
  margin-left: 180px;
}

#nav-part3 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  background-color: #fc8d1e;
}

#nav-part3 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part3 h4 a {
  color: #333333;
  text-decoration: none;
  position: relative;
  z-index: 9;
  font-family: "Rajdhani", sans-serif;
  margin-left: 10px;
}

#nav-part3 h4:hover a {
  color: #333333 ;
}

.globe img {
  width: 400px;
  height: 250px;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .global-reach {
    flex-direction: column;
    align-items: center;
  }

  .stats-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  /* First stats container first in mobile view */
  .global-reach .stats-container:first-of-type {
    order: 1;
  }

  /* Center content comes after first stats */
  .center-content {
    order: 2;
    text-align: center;
  }

  /* Image inside center content stays as it is */
  .center-content .globe img {
    max-width: 100%;
    height: auto;
  }

  /* Second stats container after everything */
  .global-reach .stats-container:last-of-type {
    order: 3;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  /* Remove extra left/right margins in mobile */
  .light-green {
    margin-left: 0;
  }
  .light-purple1 {
    margin-right: 0;
  }
  #nav-part3 {
    margin: 0 auto;
    width: auto;
  }

  .center-content h1 {
    font-size: 28px;
  }

  .center-content p {
    font-size: 16px;
  }

  .bubble {
    width: 120px;
    height: 120px;
  }

  .bubble h2 {
    font-size: 20px;
  }

  .bubble p {
    font-size: 16px;
  }

  #nav-part3{
    width: 80%;
  }
}


/* Slogan Section */


.slogan-container {
  overflow: hidden;
  padding: 40px 40px;
  background-color: #fff;
}

.slogan-text-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slogan-line {
  transform: translateY(100%);
  opacity: 0;
  max-width: 1200px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  color: black;
  font-family: "Rajdhani", sans-serif;
}

#slogan-first-line {
    text-align: center;
    margin-left: 50px;
}

.slogan-line.reveal {
  animation: revealLine 0.6s ease forwards;
}

/* Delay each line animation */
.slogan-line:nth-child(1).reveal { animation-delay: 0.2s; }
.slogan-line:nth-child(2).reveal { animation-delay: 0.4s; }
.slogan-line:nth-child(3).reveal { animation-delay: 0.6s; }
.slogan-line:nth-child(4).reveal { animation-delay: 0.8s; }

@keyframes revealLine {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* Client Section */

  .clients-slider {
    display: flex;
    gap: 22px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
  }

  .clients-slider img {
    max-height: 150px;
    object-fit: contain;
    background: rgba(0,0,0,0.03);
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.45s ease;
    filter: brightness(1);
  }

  .clients-slider img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(0,188,212,0.3), 0 0 40px rgba(255,123,0,0.25);
    filter: brightness(1.05);
  }

  #clientsPopup img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.3s;
  }

  #clientsPopup img:hover {
    transform: scale(1.1);
  }

.hover-btn {
  padding:10px 20px;
  font-size:20px;
  border:none;
  border-radius:50px;
  background-color:white;
  color:black;
  font-weight:800;
  cursor:pointer;
  border:1px solid #000;
  font-family: Rajdhani, sans-serif;
  position:relative;
  overflow:hidden;
  z-index:1;
  transition:0.3s;
}
.hover-btn::after {
  content:"";
  position:absolute;
  height:100%;
  width:100%;
  left:0;
  bottom:-100%;
  border-radius:50%;
  transition:all ease 0.4s;
  background-color:#fc8d1e;
  z-index:-1;
}
.hover-btn:hover::after {
  bottom:0;
  border-radius:0;
}
.hover-btn:hover {
  color:black;
}

.client-h2 {
  font-family: Rajdhani, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: black;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.client-h2::after {
  content: "";  /* 👈 Ye line add karo */
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 5px;
  background: linear-gradient(90deg, #FCA245, #333333);
  border-radius: 4px;
}


/* Responsive */
@media (max-width: 1024px) {
  .heading { font-size: 2.2rem; }
  .clients-slider img { max-height: 90px; padding: 10px 18px; }
}
@media (max-width: 768px) {
  .heading { font-size: 1.8rem; }
  .clients-slider { gap: 14px; }
  .clients-slider img { max-height: 70px; padding: 8px 14px; }
  .client-h2 { 
     font-size: 1.9rem;
  }
  .hover-btn {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .heading { font-size: 1.5rem; }
  .clients-slider img { max-height: 55px; padding: 6px 10px; }
  .view-btn { padding: 10px 20px; font-size: 0.9rem; }
}


/* Services Section */

/* =====================
   Base Styles
===================== */
.section-wrapper {
  position: relative;
  height: auto;
  background-color: #ffffff;
  padding-bottom: 90vh;
}

.service-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 40px 60px;
  background-color: #ffffff;
}

.service-text h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Rajdhani", sans-serif;
}

.service-text h1 span {
  font-size: 38px;
  color: #666;
  font-weight: 500;
  font-family: "Rajdhani", sans-serif;
}

.service-cta-button a {
  text-decoration: none;
  background: #fc8d1e;
  color: #333333;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  margin-top: 50px;
}

.service-cta-button a span {
  margin-left: 8px;
  font-size: 18px;
}

.service-cta-button a:hover {
  background: #333333;
  color: #fc8d1e;
}

/* =====================
   Card Styling
===================== */
.service-card-software {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.branding { background: #9e8fff; color: #fff; z-index: 1; }
.uiux     { background: #fab1b1; color: #000; z-index: 2; }
.webdev   { background: #aefdba; color: #111; z-index: 3; }
.appdev   { background: #e6f2ff; color: #000; z-index: 4; }
.social   { background: #ffe6e6; color: #000; z-index: 5; }

.content {
  max-width: 1400px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.text,
.service-list,
.image {
  flex: 1;
}

.left {
  display: none; /* remove old structure if it exists */
}

/* Preserve original styles */
.text h1 {
  font-size: 44px;
  margin-bottom: 16px;
  font-family: "Rajdhani", sans-serif;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  flex-direction: row;
  white-space: nowrap;
  color: #000;
}


.text p {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  color: rgb(68, 68, 68);
  font-weight: 500;
}


.cta-btn {
  display: inline-block;
  background: #fff;
  color: #333333;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
}

.cta-btn:hover {
  background: #e0dfff;
}

.service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: rgb(68, 68, 68);
  font-weight: 500;
}

.branding .service-list {
  margin-top: 60px; /* Adjust value as needed */
  margin-left: 20px;
}

.uiux .service-list {
  margin-top: 60px;
}

.webdev .service-list {
  margin-top: 60px;
}

.appdev .service-list {
  margin-top: 60px;
}

.social .service-list {
  margin-top: 60px;
}
.service-list li {
  font-size: 18px;
  line-height: 1.8;
}

.image {
  text-align: center;
}

.image img {
  width: 450px;
  height: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  margin-top: 10px;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    gap: 30px;
  }

  .text h1 {
    font-size: 32px;
  }

  .text p,
  .service-list li {
    font-size: 16px;
  }

  .service-card-software {
    height: auto;
    position: relative;
  }
}


/* =====================
   Responsive
===================== */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .service-text h1 {
    font-size: 2.5rem;
  }
  .service-text h1 span {
    font-size: 32px;
  }
  .content {
    gap: 30px;
  }
  .image img {
    width: 320px;
  }
}

/* Tablets and Large Mobiles (M, L) */
@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .service-text h1 {
    font-size: 2rem;
  }
  .service-text h1 span {
    font-size: 24px;
  }
  .service-cta-button {
    margin-top: 20px;
  }
  .content {
    flex-direction: column;
    gap: 25px;
  }
  .image img {
    width: 100%;
    height: auto;
  }
}

/* Small Mobiles (S) */
@media (max-width: 480px) {
  .service-text h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-left: -10px;
  }
  .service-text h1 span {
    font-size: 18px;
    line-height:1%;
  }
  .text p {
    font-size: 14px;
  }
  .service-list li {
    font-size: 14px;
  }

  .service-list ul {
    margin-top: -50px;
  }
  .cta-btn,
  .service-cta-button a {
    padding: 10px 18px;
    font-size: 16px;
    margin-top: 10px;
    margin-left: -10px;
  }
  .content {
    padding: 20px;
  }

  .section-wrapper {
  padding-bottom: auto;
}
}



/* Project Section */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

.team-section {
  padding: 60px 40px;
  background-color: #ffffff;
  z-index: 999;
}

.team-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  background-color: #ffffff;
}

.heading-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Rajdhani", sans-serif;
}

.heading-text h1 span {
  font-size: 36px;
  color: #666;
  font-weight: 500;
  font-family: "Rajdhani", sans-serif;
  margin-left: 10px;
}

.cta-button a {
  text-decoration: none;
  background: #fc8d1e;
  color: #333333;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  margin-top: 50px;
}

.cta-button a span {
  margin-left: 8px;
  font-size: 18px;
}

.cta-button a:hover {
  background: #333333;
  color: #fc8d1e;
  border: 1px solid #333333;
}

/* Scroll Styles */
.scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content; /* content ke hisaab se width set hoga */
  animation: scroll-left 30s linear infinite;
}

.team-photo {
  flex: 0 0 auto;
  margin-right: 20px;
  text-align: left;
}

.team-photo img {
  width: 250px; /* same as original calc */
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
}

.team-photo p {
  font-size: 18px;
  color: #0c0c0c;
  margin-top: 8px;
  font-weight: bold;
  margin-left: 30px;
  font-family: "Rajdhani", sans-serif;
}


@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 📱 Mobile Styles */
@media (max-width: 1024px) {
  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .heading-text h1 {
    font-size: 1.7rem;
    color: black !important;
    margin-left: -10px;
    margin-top: 40px; 
  }
  .heading-text h1 span {
    font-size: 1.5rem;
    color: #666 !important;
    margin-left: 0;
    display: block;
    margin-top: 25px;
    font-weight: bold;
  }
  .cta-button {
    margin-top: -20px;
    margin-left: -10px;
  }
}




/* Career Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #fff;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
.scroll-transition {
  height: 200vh;
  background-color: #ffffff;
  position: relative;
}
.sticky-box {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}
.left-img {
  flex: 1;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transition: all 0.5s ease;
}
.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.career-right-content {
  flex: 1;
  margin-left: auto;
  padding-left: 60px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  max-width: 50%;
}
.label {
  color: black;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Rajdhani", sans-serif;
}
.career-slogan {
  font-size: 46px;
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  color: rgb(68, 68, 68);
}
.desc {
  font-size: 22px;
  color: #646363;
  margin-bottom: 30px;
  font-family: "Rajdhani", sans-serif;
}
#nav-part4 {
  padding: 8px 20px;
  border: 1px solid #000000;
  border-radius: 50px;
  font-weight: 500;
  color: #000000bb;
  transition: all ease 0.4s;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  width: 25%;
}
#nav-part4 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  background-color: #fc8d1e;
}
#nav-part4 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}
#nav-part4 h4 a {
  color: #333333;
  text-decoration: none;
  position: relative;
  z-index: 9;
  font-family: "Rajdhani", sans-serif;
  margin-left: 10px;
}
#nav-part4 h4:hover a {
  color: #333333;
}

/* 📱 Mobile Styles */
@media (max-width: 1024px) {
  .scroll-transition {
    height: auto;
  }
  .sticky-box {
    position: relative;
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  .career-right-content {
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    padding-left: 0;
    text-align: left;
    order: 1;
  }
  .left-img {
    position: relative;
    width: 100% !important;
    height: auto !important;
    order: 2;
  }
  .left-img img {
    height: auto;
  }
  #nav-part4 {
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .career-slogan {
    font-size: 30px;
  }

  #nav-part4 {
    margin-bottom: 10px;
  }
}





/* Contact Section */

   body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background-color: #fff;
        color: white;
    }

    .contact-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px 80px;
        flex-wrap: wrap;
        background-color: #fff;
        margin-right: 80px;
    }

    .text-section {
        max-width: 500px;
    }

    .text-section h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #020202;
        margin: 0;
    }

    .text-section h2 {
        font-size: 3rem;
        font-weight: 700;
        color: black;
        margin: 5px 0 20px;
    }

    .text-section p {
        font-size: 1.2rem;
        color: rgb(68, 68, 68);
        line-height: 1.5;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .btn {
        display: inline-block;
        padding: 14px 28px;
        background-color: #fc8d1e;
        border-radius: 30px;
        text-decoration: none;
        color: #333333;
        font-weight: 600;
        font-size: 18px;
        transition: background 0.3s ease;
    }

    .btn:hover {
        background-color: #fc8d1e;
    }

    .circle-section {
        position: relative;
        width: 300px;
        height: 300px;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle-section::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
    }

    .circle-section h3 {
        font-size: 2rem;
        margin: 0;
        color: black;
    }

    .circle-section span {
        font-size: 1rem;
        color: black;
    }

    .contact-icon {
        position: absolute;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6, #9333ea);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float 3s ease-in-out infinite;
    }

    .contact-icon img {
        width: 24px;
        height: 24px;
    }

    .contact-icon.top {
        top: 10px;
        right: 20px;
        animation-delay: 0s;
    }

    .contact-icon.bottom {
        bottom: 10px;
        left: 20px;
        animation-delay: 1.5s;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

  
/* Mobile view adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
        padding: 20px;
    }

    .text-section {
        max-width: 100%;
    }

    .text-section h1, .text-section h2 {
        display: block;
        white-space: nowrap; /* Keep on one line */
        font-size: 2.2rem;
    }

    .circle-section {
        margin-top: 50px;
        height: 180px;
        width: 180px;
        margin-bottom: 30px;
    }

    .text-section p {
      font-size: 18px;
    }

    .btn {
      width: 75%;
      padding: 10px 30px;
    }

    .contact-icon.top {
        top: -10px;
        right: -20px;
        animation-delay: 0s;
    }

    .contact-icon.bottom {
        bottom: -10px;
        left: -20px;
        animation-delay: 1.5s;
    }
}


    /* Floating WhatsApp Button */
    .whatsapp-float-button {
      position: fixed;
      bottom: 10px;
      right: 22px;
      z-index: 999;
      text-align: center;
    }

    .whatsapp-main-btn {
      background-color: #25d366;
      color: white;
      font-size: 28px;
      padding: 12px 16px;
      border-radius: 100%;
      display: inline-block;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background 0.3s ease;
    }
    .whatsapp-main-btn:hover {
      background-color: #1ebd5b;
    }

    /* Options dropdown */
    .whatsapp-options {
      display: none;
      flex-direction: column;
      margin-top: 10px;
    }

    .whatsapp-options a {
      background: #25d366;
      color: #fff;
      padding: 8px 12px;
      margin: 4px 0;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      font-size: 14px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      transition: background 0.3s;
    }
    .whatsapp-options a:hover {
      background: #1ebd5b;
    }