/* Navbar */

@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 */
@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;
}




/* Web Development Hero Section */

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        background-color: #fff;
        color: white;
    }

    .section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px 7%;
        flex-wrap: wrap;
    }

    .text-content {
        flex: 1;
        min-width: 300px;
        max-width: 550px;
    }

    .text-content h1 {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1.2;
    }

    .text-content p {
        margin-top: 20px;
        font-size: 1.3rem;
        line-height: 1.6;
        color: rgb(68, 68, 68);
        font-weight: 500;
    }

    .image-content {
        flex: 1;
        display: flex;
        justify-content: center;
        min-width: 300px;
        margin-top: 20px;
    }

    .tablet {
        width: 450px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        overflow: hidden;
        background-color: black;
        position: relative;
    }

.tablet video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* video ko container ke hisaab se fit karega */
}

/* Medium screens - tablets (768px to 900px) */
@media (max-width: 900px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .text-content h1 {
        font-size: 2.4rem;
    }

    .text-content p {
        font-size: 1.1rem;
    }

    .tablet {
        width: 380px;
    }
}

/* Small tablets and large phones (600px to 767px) */
@media (max-width: 767px) {
    .section {
        padding: 30px 5%;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .tablet {
        width: 320px;
    }
}

/* Mobile L (425px to 599px) */
@media (max-width: 599px) {
    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .tablet {
        width: 280px;
    }
}

/* Mobile M (375px to 424px) */
@media (max-width: 424px) {
    .text-content h1 {
        font-size: 1.6rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .tablet {
        width: 250px;
    }
}

/* Mobile S (up to 374px) */
@media (max-width: 374px) {
    .section {
        padding: 20px 4%;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .tablet {
        width: 220px;
    }
}



/* Data Section */

.web-service {
    padding: 40px 100px;
}

.web-service h2 {
    font-size: 3rem;
    color: black;
}

.web-service p {
    font-size: 20px;
    line-height: 1.5x;
    color: rgb(68, 68, 68);
    margin-top: 10px;
}

.web-service li {
    font-size: 20px;
    color: rgb(68, 68, 68);
}

.web-service ul {
   margin-top: 10px;
   margin-left: 20px;
}

.web-service h3 {
    font-size: 24px;
    margin-top: 20px;
}

.web-service h4 {
    font-size: 22px;
    margin-top: 10px;
}


/* Mobile L (425px - 599px) */
@media (max-width: 599px) {
    .web-service {
        padding: 25px 30px;
    }
    .web-service h2 {
        font-size: 2rem;
    }
    .web-service p,
    .web-service li {
        font-size: 16px;
    }
    .web-service h3 {
        font-size: 20px;
    }
    .web-service h4 {
        font-size: 18px;
    }
}

/* Mobile M (375px - 424px) */
@media (max-width: 424px) {
    .web-service {
        padding: 20px 20px;
    }
    .web-service h2 {
        font-size: 1.8rem;
    }
    .web-service p,
    .web-service li {
        font-size: 15px;
    }
    .web-service h3 {
        font-size: 18px;
    }
    .web-service h4 {
        font-size: 16px;
    }
}

/* Mobile S (up to 374px) */
@media (max-width: 374px) {
    .web-service {
        padding: 15px 15px;
    }
    .web-service h2 {
        font-size: 2rem;
    }
    .web-service p,
    .web-service li {
        font-size: 16px;
    }
    .web-service h3 {
        font-size: 18px;
    }
    .web-service h4 {
        font-size: 16px;
    }
}



/* Our Process */

/* Base Styles (aapke diye hue same rahenge) */
/* ----------------------------- */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fb;
  color: #222;
  margin: 0;
  padding: 0;
}

.process-section {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  font-weight: 500;
}

.timeline {
  position: relative;
  margin: auto;
  padding: 20px 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(#faa404, #f6d284);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item .content {
  background: none;
  padding: 0;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #faa568, #fcb502);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
  animation: bloom 2s infinite ease-in-out;
}

.timeline-item.left .circle {
  transform: translate(350%, 0);
  z-index: 5;
}

.timeline-item.right .circle {
  transform: translate(-450%, 0);
  z-index: 5;
}

.timeline-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  font-weight: 500;
}

.tags {
  margin-top: 15px;
}

.tags span {
  background: #e5e7eb;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.9rem;
  margin: 0 5px;
  display: inline-block;
  font-weight: 500;
}

/* Bloom Animation */
@keyframes bloom {
  0% {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6),
                0 0 20px rgba(255, 165, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.9),
                0 0 40px rgba(255, 165, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6),
                0 0 20px rgba(255, 165, 0, 0.4);
  }
}


/* ----------------------------- */
/* ✅ Responsive Breakpoints */
/* ----------------------------- */

/* Extra small devices (phones, portrait) */
/* Base Styles remain same (aapke diye huye) */

/* ----------------------------- */
/* ✅ Responsive Timeline for Mobile */
/* ----------------------------- */

/* Extra small devices (phones, portrait) */
@media (max-width: 320px) {
  .timeline::after { left: 20px; }
  .timeline-item { 
    width: 100%; 
    padding: 0 8px 25px 55px; 
    text-align: left; 
  }
  .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
  .circle { 
    left: 20px; 
    width: 36px; height: 36px; 
    font-size: 0.8rem; 
    line-height: 36px; 
  }
}

/* Small devices (phones) */
@media (max-width: 480px) {
  .timeline::after { left: 25px; }
  .timeline-item { 
    width: 100%; 
    padding: 0 10px 30px 65px; 
    text-align: left; 
  }
  .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
  .circle { 
    left: 25px; 
    width: 40px; height: 40px; 
    font-size: 0.9rem; 
    line-height: 40px; 
  }
}

/* Medium devices (phones) */
@media (max-width: 576px) {
  .timeline::after { left: 28px; }
  .timeline-item { 
    width: 100%; 
    padding: 0 15px 35px 70px; 
    text-align: left; 
  }
  .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
  .circle { 
    left: 28px; 
    width: 45px; height: 45px; 
    font-size: 1rem; 
    line-height: 45px; 
  }
}

/* Large phones */
@media (max-width: 768px) {
   .timeline::after { left: 30px; }
  .timeline-item { 
    width: 100%; 
    padding: 0 20px 40px 75px; 
    text-align: left; 
  }
  .timeline-item.left, 
  .timeline-item.right { 
    left: 0; 
    text-align: left; 
  }

  /* ✅ Force override left/right circles */
  .timeline-item.left .circle,
  .timeline-item.right .circle,
  .circle { 
    left: 0px;   /* line ke upar fix */
    transform: translate(0, 0) !important; /* desktop ka translate hatao */
    width: 50px; 
    height: 50px; 
    font-size: 1.1rem; 
    line-height: 50px; 
    z-index: 5;
  }
}


/* Tablets */
@media (max-width: 992px) {
  .section-title { font-size: 2.4rem; }
  .section-subtitle { font-size: 1.05rem; }
  .timeline-item h3 { font-size: 1.6rem; }
  .timeline-item p { font-size: 1rem; }
}

/* Small laptops */
@media (max-width: 1200px) {
  .section-title { font-size: 2.6rem; }
}

/* Large laptops / desktops */
@media (max-width: 1400px) {
  .section-title { font-size: 2.8rem; }
}

/* Extra large desktops */
@media (min-width: 1401px) {
  .section-title { font-size: 3rem; }
}



/* Image Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 80px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 80%;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.project-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  padding: 20px;
  color: #fff;
  border-radius: 0 0 12px 12px;
}

.overlay h3 {
  font-size: 18px;
  font-weight: 600;
}


/* ===== RESPONSIVENESS ===== */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
  .project-grid {
    gap: 20px;
    padding: 30px 15px;
  }
  .overlay h3 {
    font-size: 16px;
  }
}

/* Medium Mobile (M) */
@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 25px 15px;
  }
  .overlay {
    padding: 15px;
  }
  .overlay h3 {
    font-size: 15px;
  }
}

/* Small Mobile (S) */
@media (max-width: 480px) {
  .project-grid {
    grid-template-columns: 1fr; /* Single column for small devices */
    gap: 15px;
    padding: 20px 10px;
  }
  .overlay {
    padding: 12px;
  }
  .overlay h3 {
    font-size: 14px;
  }
}

/* Extra Small Mobile (XS) - Very small screens */
@media (max-width: 360px) {
  .overlay {
    padding: 10px;
  }
  .overlay h3 {
    font-size: 13px;
  }
}

    /* 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;
    }