* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f3f5;
  color: white;
  text-align: justify;
   
}



   .logo {
      display: flex;
      align-items: center;
      height: 100%;
      width: 40%;
      padding: 0;
    }

    .logo img {
      height: 60px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: height 0.3s ease;
    }

    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: white;
      transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
      overflow: hidden;
    }

   

    .nav_section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      width: 100%;
    }

  .nav_links {
  display: flex;
  flex-wrap: wrap;

  list-style: none;
  width: 60%;
  gap: 20px;
}



    .nav_links li a {
      color: black;
      text-decoration: none;
      font-size: 1.2rem;
      transition: 0.3s;
      position: relative;
    }

    /* Centered Hover Underline */
    .nav_links li a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0%;
      height: 2px;
      background-color: orange;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav_links a:hover::after {
      width: 100%;
    }

    /* Ripple Effect on Click */
    .nav_links a .ripple {
      position: absolute;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 165, 0, 0.4);
      animation: rippleAnim 0.5s linear forwards;
      pointer-events: none;
      z-index: 1;
    }

    @keyframes rippleAnim {
      from {
        width: 0;
        height: 0;
        opacity: 1;
      }

      to {
        width: 250px;
        height: 250px;
        opacity: 0;
      }
    }

    /* Dropdown Menu Styling */
    .dropdown {
      position: relative;
    }

    .dropdown_menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 40px;
      left: 0;
      background-color: #f4f2f9;
      list-style: none;
      padding: 10px 0;
      border-radius: 8px;
      min-width: 180px;
      z-index: 9999;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .dropdown_menu li {
      padding: 10px 15px;
    }

    .dropdown_menu li a {
      color: rgb(21, 20, 20);
      display: block;
    }

    .dropdown_menu li a:hover {
        background-color: #f4f3f5;
 
      color: black;
    }

    /* Show menu on hover */
    .dropdown.show .dropdown_menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    nav,
    header,
    .nav_section {
      overflow: visible !important;
    }

     /* Custom Cursor */
    .cursor {
     position: fixed;
     width: 30px;
     height: 30px;
     border: 2px solid orange;
     border-radius: 50%;
     pointer-events: none; /* VERY IMPORTANT */
     transform: translate(-50%, -50%);
     transition: transform 0.2s ease, background 0.2s ease;
     z-index: 10000;
}

/* MOBILE MENU STYLES */
.hamburger {
  display: none;
  color: black;
}

.hamburger i {
  font-size: 25px;
  transition: transform 0.3s ease;
}

/* ✅ CHANGE: Hamburger rotates when active */
.hamburger.open i {
  transform: rotate(90deg);
}

/* ✅ MOBILE VIEW (Up to 900px) */
@media (max-width: 900px) {
  .nav_links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px; /* space below header */
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: none !important;
  }

  .nav_links.active {
    display: flex;
  }

  /* ✅ Dropdown Menu Base */
  .dropdown_menu {
    display: none;
    position: static;
    background-color: #f4f2f9;
    box-shadow: none;
    border-radius: 8px;
    padding: 5px 0;
    transition: none !important;
  }

  /* ✅ Instant open dropdowns when clicked */
  .dropdown.open .dropdown_menu {
    display: block !important;
  }

  .dropdown_menu li a:hover {
    background-color: #30204d;
    color: orange;
  }

  .hamburger {
    display: block;
    color: black;
  }
}


/*     */
     /*footer */
   
     
    .footer {
               display: grid;
               grid-template-columns: 1fr 1fr 1fr 1fr;
               gap: 60px;
               background-color: #fff;
               padding: 40px 60px;
               box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
               color: black;
               width: 100%;
              
          
          }

          /* Left Section */
          .footer-left img {
               width: 220px;
               display: block;
               margin-bottom: 10px;
          }

          .tagline {
               font-size: 14px;
               font-weight: bold;
               color: #00aa00;
               margin-bottom: 15px;
               font-family: cursive;
          }

          .footer-left p {
               font-size: 14px;
               line-height: 1.5;
               margin-bottom: 20px;
               font-weight: bold;
          }

          .footer-left strong {
               font-weight: 700;
          }

          .contact-info {
               display: flex;
               align-items: center;
               margin-bottom: 8px;
               font-size: 14px;
               font-weight: bold;
               padding: 5px;
            padding-left: 0px;
          }

          .contact-info i {
               margin-right: 5px;
             

          }
          .contact-info a {
               text-decoration: none;
               color: black;
          }

          /* Middle Section */
          .footer h2 {
               font-size: 20px;
               font-weight: 700;
               margin-bottom: 5px;
               text-align: left;
               margin-left: 10px;
          }

          .footer-links  a {
               display: inline-block;
               text-decoration: none;
               color: #333;
               font-size: 14px;
               margin-bottom: 8px;
               transition: color 0.3s ease;
               font-weight: bold;
               font-size: 1rem;
               padding: 10px;
               
               
          }
          .footer-links ul li {
            list-style: none;
          }

          .footer-links a:hover {
               color: blue;
            border-bottom: 2px solid orange;
               
          }
          .copyright{
              background-color: #d9d7db;

               padding: 20px;
               font-size: 20px;
               text-align: center;
               color: black;
               font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
              
          }
          .copyright a{
               text-decoration: none;
               color: black;
          }

      /* ✅ MOBILE VIEW (Up to 768px) */
@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: left; /* ✅ Left align everything */
    padding: 40px 20px; /* better spacing for mobile */
  }

  .footer h2 {
    text-align: left; /* ✅ Heading left */
  }

  .footer p,
  .footer a {
    text-align: left; /* ✅ Paragraphs & links left */
  }

  .contact-info {
    justify-content: flex-start; /* ✅ Align icons left */
    text-align: left;
  }

  .footer .social-icons {
    justify-content: flex-start; /* ✅ Social icons left */
  }
}

/* 💻 For Small PCs / Laptops (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
    padding: 60px 50px;
  }

  .footer h2 {
    font-size: 22px;
    text-align: left;
  }

  .footer p,
  .footer a {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-info {
    justify-content: flex-start;
    gap: 20px;
  }

  .footer .social-icons {
    justify-content: flex-start;
    gap: 15px;
  }
}

/*whatsapp icon */
          .whatsapp-float {
               position: fixed;
               width: 60px;
               height: 60px;
               bottom: 20px;
               right: 20px;
               /* background-color: #25D366; */
               border-radius: 50%;
               display: flex;
               align-items: center;
               justify-content: center;
               box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
               z-index: 1000;
               transition: transform 0.3s ease, bottom 0.3s ease;
          }

          .whatsapp-float:hover {
               transform: scale(1.1);
          }

          .whatsapp-float img {
               width: 60px;
               height: 60px;
          }

          .notification-dot {
               position: absolute;
               top: 8px;
               right: 10px;
               width: 12px;
               height: 12px;
               background-color: rgb(252, 29, 29);
               border-radius: 50%;
               border: 2px solid white;
          }

          @media (max-width: 600px) {
               .whatsapp-float {
                    width: 50px;
                    height: 50px;
                    bottom: 15px;
                    right: 15px;
               }

               .whatsapp-float img {
                    width: 45px;
                    height: 45px;
               }

               .notification-dot {
                    width: 10px;
                    height: 10px;
                    top: 6px;
                    right: 8px;
               }

               .notification-dot {
                    position: absolute;
                    top: 8px;
                    right: 10px;
                    width: 10px;
                    height: 10px;
                    background-color: red;
                    border-radius: 50%;
                    border: 2px solid white;
               }
          }

          /* Medium devices (tablets) */
          @media (min-width: 601px) and (max-width: 1024px) {
               .whatsapp-float {
                    width: 55px;
                    height: 55px;
                    bottom: 18px;
                    right: 18px;
               }

               .whatsapp-float img {
                    width: 50px;
                    height: 50px;
               }

          }
          /* 💻 For Small PCs / Laptops (700px to 1200px) */
@media (min-width: 700px) and (max-width: 1200px) {
     .whatsapp-float {
          width: 65px;
          height: 65px;
          bottom: 25px;
          right: 25px;
          transition: all 0.3s ease;
     }

     .whatsapp-float img {
          width: 60px;
          height: 60px;
     }

     .notification-dot {
          position: absolute;
          top: 10px;
          right: 12px;
          width: 12px;
          height: 12px;
          background-color: red;
          border-radius: 50%;
          border: 2px solid white;
     }
}


/*about us */
.about {
  background: url("./images/aboutphoto.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 100px;
  background-color: #f4f3f5;
  

 
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.about-content-head {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 10px;
}

.about-heading {
  font-size: 25px;
  color: #FFD700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* MAIN HEADING UPDATE */
.A_main-heading {
  font-size: 50px; /* Big Font Size */
  font-weight: bold;
  margin-bottom: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Force only 4 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
  
}

/* Button Styling */
.btn {
  display: inline-block;
  background: linear-gradient(to right, #00C6FF, #0072FF);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to right, #0072FF, #00C6FF);
  transform: scale(1.05);
}

/* FULL PAGE SECTION */

         

          /* ABOUT SECTION 1 */
          .about1 {
               display: flex;
               flex-direction: column;
               min-height: 100vh;
               width: 90%;
               margin: 0 auto;
               padding: 60px 0;
               background-color: #f4f3f5;
               gap: 40px;
               opacity: 0;
               animation: fadeInUp 1s ease forwards;
          }

          @keyframes fadeInUp {
               to {
                    opacity: 1;
                    transform: translateY(0);
               }

               from {
                    opacity: 0;
                    transform: translateY(30px);
               }
          }

          /* SUBHEADINGS ROW */
          .about-subheadings {
               display: flex;
               justify-content: space-between;
               align-items: center;
               gap: 40px;
               animation: slideDown 1s ease;
          }

          @keyframes slideDown {
               from {
                    opacity: 0;
                    transform: translateY(-30px);
               }

               to {
                    opacity: 1;
                    transform: translateY(0);
               }
          }

          .subheading {
               flex: 1;
               text-align: center;
          }

          .subheading h2 {
               font-size: 28px;
               font-weight: bold;
               color: #222;
               position: relative;
               padding-bottom: 15px;
          }

          .subheading h2::after {
               content: '';
               position: absolute;
               bottom: 0;
               left: 50%;
               transform: translateX(-50%);
               width: 80px;
               height: 4px;
               background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
               border-radius: 2px;
               animation: expandWidth 0.8s ease 0.8s backwards;
          }

          @keyframes expandWidth {
               from {
                    width: 0;
               }

               to {
                    width: 80px;
               }
          }

          /* MAIN CONTENT ROW */
          .about-content {
               display: flex;
               justify-content: space-between;
               align-items: flex-start;
               gap: 60px;
               flex: 1;
          }

          /* LEFT COLUMN - IMAGE */
          .about2 {
               flex: 1;
               display: flex;
               align-items: center;
               justify-content: center;
          }

          .about2 img {
               width: 100%;
               height: 100%;
               min-height: 300px;
               object-fit: cover;
               border-radius: 20px;
               transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
               box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
               animation: zoomIn 1s ease 0.5s backwards;
          }

          @keyframes zoomIn {
               from {
                    opacity: 0;
                    transform: scale(0.8);
               }

               to {
                    opacity: 1;
                    transform: scale(1);
               }
          }

          .about2 img:hover {
               transform: scale(1.05) translateY(-10px);
               box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
          }

          /* RIGHT COLUMN - TEXT */
          .about3 {
               flex: 1;
               text-align: left;
               display: flex;
               flex-direction: column;
               justify-content: center;
               animation: slideInRight 1s ease 0.3s backwards;
          }

          @keyframes slideInRight {
               from {
                    opacity: 0;
                    transform: translateX(50px);
               }

               to {
                    opacity: 1;
                    transform: translateX(0);
               }
          }

          .about3 p {
               font-size: 20px;
               line-height: 1.8;
               color: #555;
               margin-bottom: 15px;
               font-weight: 500;
               transition: all 0.3s ease;
               padding: 10px;
               border-radius: 8px;
          }

          .about3 p:hover {
               background: rgba(78, 205, 196, 0.05);
               transform: translateX(10px);
               padding-left: 20px;
          }

          /* WHO WE ARE SECTION */
          .we_are {
               display: flex;
               flex-direction: column;
               min-height: 100vh;
               width: 80%;
               margin: 0 auto;
               padding: 20px 0;
               background-color: #f4f3f5;
               gap: 40px;
               border-radius: 20px;
               animation: fadeInUp 1s ease forwards;
          }

          /* HEADING AND SUBHEADING */
          .we_are-header {
               text-align: center;
          }

          .we_are-header h1 {
               font-size: 60px;
               font-weight: bold;
               margin-bottom: 20px;
               color: #ff6b6b;
               animation: bounceIn 1s ease;
               text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
          }

          @keyframes bounceIn {
               0% {
                    opacity: 0;
                    transform: scale(0.5);
               }

               60% {
                    opacity: 1;
                    transform: scale(1.1);
               }

               100% {
                    transform: scale(1);
               }
          }

          .we_are-header h2 {
               font-size: 35px;
               font-weight: bold;
               color: #333;
               background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               -webkit-background-clip: text;
               -webkit-text-fill-color: transparent;
               background-clip: text;
               animation: slideDown 1s ease 0.3s backwards;
          }

          /* CONTENT ROW */
          .we_are-content {
               display: flex;
               justify-content: space-between;
               align-items: flex-start;
               gap: 60px;
               flex: 1;
          }

          /* LEFT - IMAGE */
          .we_are1 {
               flex: 1;
               display: flex;
               align-items: center;
               justify-content: center;
          }

          .we_are1 img {
               width: 100%;
               height: 100%;
               min-height: 500px;
               object-fit: cover;
               border-radius: 20px;
               transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
               box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
               animation: slideInLeft 1s ease 0.5s backwards;
          }

          @keyframes slideInLeft {
               from {
                    opacity: 0;
                    transform: translateX(-50px);
               }

               to {
                    opacity: 1;
                    transform: translateX(0);
               }
          }

          .we_are1 img:hover {
               transform: scale(1.05) translateY(10px);
               box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
          }

          /* RIGHT - TEXT */
          .we_are2 {
               flex: 1;
               display: flex;
               flex-direction: column;
               justify-content: center;
               font-size: 18px;
               line-height: 1.8;
               color: #444;
               gap: 20px;
               animation: slideInRight 1s ease 0.3s backwards;
          }

          .we_are2 p {
               font-size: 20px;
               transition: all 0.3s ease;
               padding: 15px;
               border-radius: 10px;
               border-left: 4px solid transparent;
          }

          .we_are2 p:hover {
               background: white;
               border-left: 4px solid #ff6b6b;
               transform: translateX(10px);
               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          }

          .we_are2 b {
               font-size: 20px;
               font-weight: bold;
               color: #ff6b6b;
          }

          /* WHY CHOOSE SECTION */
          .why-choose {
               text-align: center;
               padding: 0px 20px;
               width: 80%;
               margin: 0px auto;
               min-height: auto;
               animation: fadeInUp 1s ease forwards;
          }

          .why-choose h1 {
               font-size: 2.8rem;
               font-weight: 700;
               margin-bottom: 40px;
               color: #222;
               position: relative;
               display: inline-block;
               animation: slideDown 1s ease;
          }

          .why-choose h1::after {
               content: '';
               position: absolute;
               bottom: -10px;
               left: 50%;
               transform: translateX(-50%);
               width: 100px;
               height: 4px;
               background: linear-gradient(90deg, #667eea, #764ba2);
               border-radius: 2px;
          }

          .why-choose h2 {
               color: #555;
               font-size: 1.3rem;
               line-height: 1.6;
               margin-top: 0px;
               animation: fadeIn 1s ease 0.5s backwards;
          }

          @keyframes fadeIn {
               from {
                    opacity: 0;
               }

               to {
                    opacity: 1;
               }
          }

          .boxes {
               display: grid;
               grid-template-columns: repeat(3, 1fr);
               gap: 30px;
               margin-bottom: 60px;
          }

          .box {
               background: #fff;
               padding: 30px;
               border-radius: 15px;
               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
               text-align: left;
               transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
               position: relative;
               overflow: hidden;
               border: 2px solid transparent;
               animation: fadeInUp 0.8s ease backwards;
          }

          .box:nth-child(1) {
               animation-delay: 0.1s;
          }

          .box:nth-child(2) {
               animation-delay: 0.2s;
          }

          .box:nth-child(3) {
               animation-delay: 0.3s;
          }

          .box:nth-child(4) {
               animation-delay: 0.4s;
          }

          .box:nth-child(5) {
               animation-delay: 0.5s;
          }

          .box:nth-child(6) {
               animation-delay: 0.6s;
          }

          .box::before {
               content: '';
               position: absolute;
               top: 0;
               left: -100%;
               width: 100%;
               height: 100%;
               background: linear-gradient(120deg, transparent, rgba(255, 107, 107, 0.2), transparent);
               transition: left 0.6s ease;
          }

          .box:hover::before {
               left: 100%;
          }

          .box:hover {
               transform: translateY(-10px) scale(1.02);
               box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
               background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
               border: 2px solid #ff6b6b;
          }

          .box h2 {
               font-size: 1.4rem;
               margin-bottom: 15px;
               color: #222;
               transition: all 0.3s ease;
          }

          .box:hover h2 {
               color: #ff6b6b;
               transform: translateX(5px);
          }

          .box p {
               font-size: 1rem;
               color: #555;
               line-height: 1.6;
               transition: all 0.3s ease;
          }

          .box:hover p {
               font-size: 1.05rem;
               color: #333;
          }

          /* VISION MISSION VALUES SECTION */
          .vision-mission-values {
               display: flex;
               flex-direction: column;
               justify-content: center;
               align-items: center;
               width: 80%;
               margin: 0px auto;
               min-height: 80vh;
              background-color: #f4f3f5;
               padding: 10px 0;
               border-radius: 20px;
          }

          .box1 {
               display: flex;
               align-items: center;
               justify-content: space-between;
               width: 100%;
               min-height: 30vh;
               padding: 10px 0;
               animation: fadeInUp 1s ease backwards;
          }

          .box1:nth-child(1) {
               animation-delay: 0.2s;
          }

          .box1:nth-child(2) {
               animation-delay: 0.4s;
          }

          .box1:nth-child(3) {
               animation-delay: 0.6s;
          }

          .box1:nth-child(4) {
               animation-delay: 0.8s;
          }

          .box-left .content {
               width: 45%;
               margin-left: 5%;
               animation: slideInLeft 1s ease backwards;
          }

          .box-left {
               flex-direction: row;
          }

          .box-right {
               flex-direction: row-reverse;
          }

          .box-right .content {
               width: 45%;
               margin-right: 5%;
               animation: slideInRight 1s ease backwards;
          }

          .content {
               background: white;
               padding: 40px;
               border-radius: 15px;
               box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
               transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
               position: relative;
               overflow: hidden;
          }

          .content::before {
               content: '';
               position: absolute;
               top: 0;
               left: 0;
               width: 5px;
               height: 100%;
               background: linear-gradient(180deg, #667eea, #764ba2);
               transform: scaleY(0);
               transition: transform 0.4s ease;
          }

          .content:hover::before {
               transform: scaleY(1);
          }

          .content:hover {
               transform: translateX(10px) scale(1.02);
               box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          }

          .content h2 {
               font-size: 2.2rem;
               margin-bottom: 20px;
               color: #667eea;
               transition: all 0.3s ease;
               position: relative;
          }

          .content:hover h2 {
               color: #764ba2;
               transform: translateX(5px);
          }

          .content p {
               font-size: 1.1rem;
               line-height: 1.7;
               color: #444;
               transition: all 0.3s ease;
          }

          .content:hover p {
               color: #222;
          }

     
/* technology used*/

.tech-section-container {
               display: flex;
               max-width: 80%;
               margin: 10px auto;
               padding: 30px 10px;
               box-sizing: border-box;
          }

          .content-left {
               flex: 1;
               padding-right: 60px;
               padding-top: 10px;
               width: 40%;
              justify-items: left;
          }

          .tech-grid-wrapper {
               flex: 2;
               padding-top: 20px;
          }

          .title-top {
               font-size: 1.1rem;
               color: #e8a000;
               font-weight: 700;
               margin-bottom: 5px;
               text-transform: uppercase;
               letter-spacing: 1px;
               font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
          }

          .title-main {
               font-size: 3.5rem;
               font-weight: 900;
               color: #333;
               margin-top: 20px;
               margin-bottom: 25px;
               line-height: 1.1;
               
          }

          .description {
    font-size: 1.3rem;
    color: #666;
    max-width: 480px;
    padding-top: 40px;

    display: block;
    text-align: left;

 /* <-- Ye lagao */
}


          .tech_used {
               display: grid;
               grid-template-columns: repeat(5, 2fr);
               gap: 30px;
               width: 60%;
          }

          .tech-item {
               width: 150px;
               height: 150px;
               border-radius: 50%;
               display: flex;
               justify-content: center;
               align-items: center;
               cursor: pointer;
               border: 2px solid #f0f0f0;
               background-color: #ffffff;
               box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
               transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

          }

          .tech-item img {
               width: 100%;
               /* make the image fill the container width */
               height: 100%;
               /* make the image fill the container height */
               object-fit: cover;
               /* cover the circle completely while maintaining aspect ratio */
               border-radius: 50%;
               /* optional if your images aren't perfectly square */
               display: block;
          }


          /* ====== Floating Animations ====== */
          @keyframes float1 {
               0% {
                    transform: translate(0, 0);
               }

               50% {
                    transform: translate(6px, -8px);
               }

               100% {
                    transform: translate(0, 0);
               }
          }

          @keyframes float2 {
               0% {
                    transform: translate(0, 0);
               }

               50% {
                    transform: translate(-5px, 8px);
               }

               100% {
                    transform: translate(0, 0);
               }
          }

          @keyframes float3 {
               0% {
                    transform: translate(0, 0);
               }

               50% {
                    transform: translate(6px, 4px);
               }

               100% {
                    transform: translate(0, 0);
               }
          }

          @keyframes float4 {
               0% {
                    transform: translate(0, 0);
               }

               50% {
                    transform: translate(-6px, -6px);
               }

               100% {
                    transform: translate(0, 0);
               }
          }

          @keyframes float5 {
               0% {
                    transform: translate(0, 0);
               }

               50% {
                    transform: translate(4px, 6px);
               }

               100% {
                    transform: translate(0, 0);
               }
          }

          /* --- Assigning unique animations to each item --- */
          .tech-item:nth-child(1) {
               animation: float1 3s ease-in-out infinite;
          }

          .tech-item:nth-child(2) {
               animation: float2 4s ease-in-out infinite;
          }

          .tech-item:nth-child(3) {
               animation: float3 3.5s ease-in-out infinite;
          }

          .tech-item:nth-child(4) {
               animation: float4 4.5s ease-in-out infinite;
          }

          .tech-item:nth-child(5) {
               animation: float5 3.8s ease-in-out infinite;
          }

          .tech-item:nth-child(6) {
               animation: float2 3.2s ease-in-out infinite;
          }

          .tech-item:nth-child(7) {
               animation: float3 4.2s ease-in-out infinite;
          }

          .tech-item:nth-child(8) {
               animation: float4 3.7s ease-in-out infinite;
          }

          .tech-item:nth-child(9) {
               animation: float5 4.5s ease-in-out infinite;
          }

          .tech-item:nth-child(10) {
               animation: float1 3.5s ease-in-out infinite;
          }

          .tech-item:nth-child(11) {
               animation: float3 4.2s ease-in-out infinite;
          }

          .tech-item:nth-child(12) {
               animation: float4 3.8s ease-in-out infinite;
          }

          .tech-item:nth-child(13) {
               animation: float5 4s ease-in-out infinite;
          }

          .tech-item:nth-child(14) {
               animation: float1 3.2s ease-in-out infinite;
          }

          .tech-item:nth-child(15) {
               animation: float2 4.4s ease-in-out infinite;
          }


/*our team*/
.our_team{
  text-align: center;
      padding: 20px 20px;
      max-width: 2000px;
      margin: auto;
      width: 100%;
    background-color: #f4f3f5;
     margin-top: 10px;
     
}
.our_team h1{
  font-size: 50px;
  padding: 15px;
  color: black;
  margin-bottom: 0px;
  margin-top: 20px;
}
.our_team h2{
  font-size: 30px;
  padding:0px ;
  color: black;
  margin-bottom: 10px;
}
.our_team img{
  height: 70vh;
  width: 70%;
}



/* core team*/
 .team-section {
 width: 100%;
 min-height: 100vh;
 padding: 10px 10px;
               text-align: center;
               
               
          }

          .team-section h1 {
               font-size: 3rem;
               font-weight: bold;
               margin-bottom: 10px;
              
          }

          .team-section p {
               max-width: 600px;
               margin: 10px auto 20px;
               color: #b0b3bb;
               font-size: 1.1rem;
          }

          .team-row {
               display: flex;
               justify-content: center;
               gap: 10px;
               margin-bottom: 20px;
               flex-wrap: wrap;
          }

          .team-card {
               display: flex;
               flex-direction: column;
               align-items: center;
               width: 200px;
          }
          .team-card h2{
               color: black;
          }
          .team-card h3{
               color: black;
          }

          /* Image placeholder box */
          .team-image {
               width: 200px;
               height: 200px;
               background: #2a2d38;
               border-radius: 20px;
               box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
               margin-bottom: 15px;
          }

          .team-image img {
               width: 100%;
               height: 100%;
               object-fit: cover;
               object-position: center;
          }

          /* Make first row circular images */

          h2 {
               font-size: 1.2rem;
               font-weight: bold;
               margin: 5px 0;
          }

          h3 {
               font-size: 1rem;
               font-weight: normal;
               color: #9a9da8;
               margin: 0;
          }

         
          @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* H1 Animation - Slide + Gradient Text */
.animate-h1 {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(270deg, #ff6a00, #ee0979, #00f260, #0575e6);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite, fadeSlideDown 1.2s ease-out forwards;
}

@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* H2 Animation - Zoom + Gradient Text */
.animate-h2 {
    font-size: 1.8em;
    margin-top: 10px;
    font-weight: 500;
    background: linear-gradient(270deg, #ff00c8, #00fff0, #ffba00, #ff0066);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite, zoomFade 1.5s ease-out forwards;
    animation-delay: 0.5s;
    margin-bottom: 20px;
}

@keyframes zoomFade {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}
h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 5px 0;
}

h3 {
  font-size: 1rem;
  font-weight: normal;
  color: #ccc;
}




/* ================== MOBILE (max-width: 768px) ================== */
@media (max-width: 768px) {

  /* --- About Section --- */
  .about {
    height: auto;
    padding: 100px 20px 60px;
    text-align: center;
  }

  .A_main-heading {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-heading {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    margin: 15px auto 0;
  }

  .about1,
  .we_are,
  .why-choose,
  .vision-mission-values {
    width: 95%;
    padding: 20px 15px;
  }

  .about-subheadings {
    flex-direction: column;
    gap: 15px;
  }

  .subheading h2 {
    font-size: 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
  }

  /* Ensure images are fully visible */
  .about2 img,
  .we_are1 img,
  .we_are2 img,
  .about-left img {
    width: 100%;
    height: auto;         /* auto height to show full image */
    object-fit: contain;  /* show entire image */
    border-radius: 10px;
    
  }

  .about3,
  .we_are2 {
    text-align: center;
    align-items: center;
  }

  .about3 p,
  .we_are2 p {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
  }

  .we_are-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .we_are-header h2 {
    font-size: 20px;
  }

  .why-choose {
    padding: 30px 15px;
  }

  .why-choose h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .boxes {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .box {
    padding: 15px;
    text-align: center;
  }

  .box h2 {
    font-size: 1.1rem;
  }

  .box p {
    font-size: 0.9rem;
  }

  .vision-mission-values {
    padding: 30px 15px;
  }

  .box1 {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    margin: 15px 0;
  }

  .box-left .content,
  .box-right .content {
    width: 95%;
    margin: 0;
  }

  .content {
    padding: 15px;
  }

  .content h2 {
    font-size: 1.3rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  /* Technology Section */
  .title-main {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
  }

  .tech_used {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }

  .tech-item {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding-top: 30px;
  }

  /* Our Team Section */
  .our_team {
    padding: 30px 15px;
    text-align: center;
  }

  .our_team h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .our_team h2 {
    font-size: 1.2rem;
    line-height: 1.4;
    
  }

  .our_team img {
    width: 90%;
    max-width: 180px;
    border-radius: 15px;
    margin: 0 auto;
  }

  .team-section {
    margin-top: 40px;
  }

  .team-card {
    width: 90%;
    margin: 0 auto 15px;
  }

  .team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
  }

  .team-section h1 {
    font-size: 2rem;
  }

  .team-section p {
    font-size: 0.9rem;
  }
}

/* ================== EXTRA SMALL SCREENS (max-width: 400px down to 250px) ================== */
@media (max-width: 400px) {

  .A_main-heading {
    font-size: 24px;
  }

  .about-heading {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 15px;
  }

  .subheading h2 {
    font-size: 18px;
  }

  .content h2 {
    font-size: 1.2rem;
  }

  .content p,
  .about3 p,
  .we_are2 p {
    font-size: 0.85rem;
  }

  .we_are-header h1 {
    font-size: 24px;
  }

  .we_are-header h2 {
    font-size: 18px;
  }

  .title-main {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.85rem;
    padding: 0 5px;
  }

  .tech-item {
    width: 70px;
    height: 70px;
    padding-top: 30px;
  }

  .our_team h1 {
    font-size: 1.8rem;
  }

  .our_team h2 {
    font-size: 1.1rem;
  }

  .our_team img {
    max-width: 140px;
  }

  .team-image {
    width: 100px;
    height: 100px;
  }

  .boxes {
    gap: 10px;
  }

  .box h2 {
    font-size: 1rem;
  }

  .box p {
    font-size: 0.85rem;
  }
}


/* ================== MOBILE (max-width: 768px) ================== */
@media (max-width: 768px) {

  /* --- About Section --- */
  .about-section {
      flex-direction: column;
      width: 95%;
      margin: 50px auto;
  }

  .about-left,
  .about-right {
      width: 100%;
      min-height: auto;
  }

  .about-left img {
      width: 100%;
      height: auto;
      object-fit: contain; /* full image visible */
      margin-bottom: 20px;
      border-radius: 15px;
  }


  /* --- Our Team / Founder Section --- */
  .our_team {
      padding: 0px 15px;
      text-align: center;
  }

  .team-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 0px;
  }

  .team-card {
      width: 90%;
      margin: 0 auto;
      text-align: center;
  }

  .team-image {
      width: 100px;
      height: 100px;
      border-radius: 100%;
      object-fit: cover;
      margin: 0 auto 10px;
  }

  .our_team h1 {
      font-size: 1.8rem;
  }

  .our_team h2 {
      font-size: 1.1rem;
  }

  .team-section p {
      font-size: 0.85rem;
  }

  /* Buttons */
  .btn {
      font-size: 13px;
      padding: 8px 15px;
      display: block;
      margin: 15px auto 0;
  }

  /* Ensure all other images scale nicely */
  img {
     max-height: 100%;
      width: auto;
      object-fit: contain;
  }

  /* Adjust boxes and grids for tiny screens */
  .boxes {
      grid-template-columns: 1fr;
      gap: 10px;
  }

  .box h2 {
      font-size: 1rem;
  }

  .box p {
      font-size: 0.85rem;
  }

  .content h2 {
      font-size: 1.2rem;
  }

  .content p {
      font-size: 0.85rem;
  }

  .subheading h2 {
      font-size: 18px;
  }

  .A_main-heading {
      font-size: 24px;
  }

  .about-heading {
      font-size: 13px;
  }

  .title-main {
      font-size: 1.6rem;
  }

  .description {
      font-size: 0.85rem;
      padding: 0 5px;
  }
}


 
 /* ================== MOBILE (max-width: 768px) ================== */
@media (max-width: 768px) {
    .we_are {
        width: 90%;
        padding: 10px 10px;
        gap: 30px;
    }

    .we_are-header h1 {
        font-size: 40px;
    }

    .we_are-header h2 {
        font-size: 25px;
    }

    /* CONTENT ROW: IMAGE FIRST, THEN TEXT */
    .we_are-content {
        flex-direction: column; /* Vertical stacking */
        gap: 20px;
    }

    .we_are1 {
        width: 100%;
        min-height: 250px; /* Mobile-friendly height */
    }

    .we_are1 img {
        width: 100%;
        height: auto;
        min-height: 250px;
        border-radius: 15px;
        object-fit: cover;
    }

    .we_are2 {
        width: 100%;
        font-size: 16px;
        line-height: 1.6;
        gap: 15px;
    }

    .we_are2 p {
        font-size: 16px;
        padding: 10px;
    }

    .we_are2 b {
        font-size: 18px;
    }
}

/* ================== MOBILE (max-width: 768px) ================== */
@media (max-width: 768px) {
    .tech-section-container {
        flex-direction: column; /* Vertical stacking */
        padding: 30px 15px;
        gap: 30px;
    }

    .content-left {
        width: 100%;
        padding-right: 0;
    }

    .tech-grid-wrapper {
        width: 100%;
        padding-top: 20px;
    }

    .title-top {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .title-main {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 1rem;
        max-width: 100%;
        padding-top: 20px;
    }

    .tech_used {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row */
        gap: 15px;
        width: 100%;
        justify-items: center;
    }

    .tech-item {
        width: 100px;
        height: 100px;
        padding-top: 30px;
    }

    .tech-item img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
 
  /* ✅ Proper grid for all rows */
  .team-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 20px;
    justify-items: center;
    width: 100%;
  }

  .team-card {
    width: 100%;
    max-width: 180px;
    padding: 15px 10px;
    margin: 0 auto;
  }

  .team-image img {
    width: 100%;
    height: auto; /* ✅ keeps full image visible */
    border-radius: 100%;
    object-fit: contain; /* no cropping */
  }

  .team-card h2 {
    font-size: 1rem;
    margin-top: 10px;
  }

  .team-card h3 {
    font-size: 0.85rem;
  }
}
@media (max-width: 700px) {

     .tech-section-container {
          flex-direction: column;
          text-align: center;
          gap: 30px;
     }

     .tech_used {
          grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
          gap: 18px;
     }

     .tech-item {
          width: 90px;
          height: 90px;
          padding: 10px;
     }

     .tech-item img {
          width: 70%;
          height: 70%;
     }
}
@media (max-width: 450px) {

     .tech_used {
          grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
          gap: 15px;
     }

     .tech-item {
          width: 75px;
          height: 75px;
          padding: 8px;
     }

     .tech-item img {
          width: 68%;
          height: 68%;
     }
}



/*Our Services section*/
/*digital marketing*/

          .main {
               font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
               background-color: #f4f3f5;
               color: #333;
               line-height: 1.6;
               overflow-x: hidden;
               padding-top: 100px;
          }

          /* Hero Section */
          .hero {
               text-align: center;
               padding: 40px 20px 60px;
               position: relative;
          }

          .hero::before {
               content: '';
               position: absolute;
               top: 0;
               left: 0;
               right: 0;
               bottom: 0;
               background: rgba(255, 255, 255, 0.1);
               backdrop-filter: blur(10px);
               z-index: -1;
          }

          .main-heading-digital{
               font-size: clamp(2.5rem, 5vw, 4rem);
               font-weight: 800;
              color: black;
               margin-bottom: 20px;
               animation: slideInDown 1s ease-out;
           
          }

          .hero-subtitle {
               font-size: 1.25rem;
               color:orangered;
               margin-bottom: 40px;
               opacity: 0.9;
               animation: fadeInUp 1s ease-out 0.3s both;
          }

          .cta-buttons {
               display: flex;
               gap: 10px;
               justify-content: center;
               flex-wrap: wrap;
               animation: fadeInUp 1s ease-out 0.6s both;
          }

          .btn {
               padding: 15px 20px;
               border: none;
               border-radius: 50px;
               font-weight: 600;
               text-decoration: none;
               transition: all 0.3s ease;
               cursor: pointer;
               font-size: 1rem;
               position: relative;
               overflow: hidden;
               
          
          }

          .btn-primary {
               background: blue;
               color: black;
               box-shadow: rgba(255, 107, 53, 0.4);
               
          }

          .btn-secondary {
               background: rgba(255, 255, 255, 0.2);
               color: black;
               backdrop-filter: blur(10px);
               border: 1px solid rgba(255, 255, 255, 0.3);
          }

          .btn:hover {
               transform: translateY(-3px);
               box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          }

          /* Container */
          .container {
               max-width: 1200px;
               margin: 0 auto;
               padding: 0 20px 80px;
          }

          /* Filter Tabs */
          .filter-tabs {
               display: flex;
               justify-content: center;
               gap: 10px;
               margin-bottom: 40px;
               margin-top: 40px;
               flex-wrap: wrap;
          }

          .filter-tab {
               padding: 10px 20px;
               border: none;
               border-radius: 25px;
               background: rgba(255, 255, 255, 0.1);
               color: black;
               cursor: pointer;
               transition: all 0.3s ease;
               backdrop-filter: blur(10px);
               font-size: 0.9rem;
          }

          .filter-tab.active {
               background: linear-gradient(45deg, #4b41d5, #2f80c2);
               transform: scale(1.05);
          }

          .filter-tab:hover {
               background: rgba(255, 255, 255, 0.2);
          }

          /* Services Grid */
          .services-grid {
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
               gap: 30px;
               margin-top: 40px;
          }

          .service-card {
               background: rgba(255, 255, 255, 0.95);
               border-radius: 20px;
               padding: 10px;
               backdrop-filter: blur(10px);
               border: 1px solid rgba(255, 255, 255, 0.2);
               transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
               position: relative;
               overflow: hidden;
               opacity: 0;
               transform: translateY(30px);
               animation: fadeInUp 0.8s ease-out forwards;
          }

          .service-card::before {
               content: '';
               position: absolute;
               top: 0;
               left: 0;
               right: 0;
               height: 4px;
        
               background: linear-gradient(45deg, #ff6b35, #f7931e);
               transform: scaleX(0);
               transition: transform 0.3s ease;
          }

          .service-card:hover::before {
               transform: scaleX(1);
          }

          .service-card:hover {
               transform: translateY(-10px) scale(1.02);
               box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
          }

          .service-icon {
               font-size: 3rem;
               margin-bottom: 20px;
               display: block;
               animation: bounce 2s infinite;
          }

          .service-title {
               font-size: 1.5rem;
               font-weight: 700;
               margin-bottom: 15px;
               color: #333;
               position: relative;
          }

          .service-items {
               list-style: none;
          }

          .service-item {
               padding: 12px 0;
               border-bottom: 1px solid #f0f0f0;
               transition: all 0.3s ease;
               cursor: pointer;
               position: relative;
               padding-left: 20px;
          }

          .service-item::before {
               content: '→';
               position: absolute;
               left: 0;
               color: #ff6b35;
               font-weight: bold;
               transition: transform 0.3s ease;
          }

          .service-item:hover {
               color: #ff6b35;
               transform: translateX(10px);
               background: rgba(255, 107, 53, 0.05);
               border-radius: 8px;
               padding-right: 10px;
          }

          .service-item:hover::before {
               transform: translateX(5px);
          }

          .service-item:last-child {
               border-bottom: none;
          }

          /* Stats Section */
          .stats-section {
               background: rgba(255, 255, 255, 0.1);
               backdrop-filter: blur(10px);
               border-radius: 20px;
               padding: 40px;
               margin: 60px 0;
               text-align: center;
               color: black;
          }

          .stats-grid {
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 30px;
               margin-top: 30px;
          }

          .stat-item {
               color: black;
          }

          .stat-number {
               font-size: 3rem;
               font-weight: 800;
               color: black;
               display: block;
          }

          .stat-label {
               font-size: 1.1rem;
               opacity: 0.9;
          }

          /* Contact Section */
          .contact-section {
               background: rgba(255, 255, 255, 0.95);
               border-radius: 20px;
               padding: 40px;
               text-align: center;
               margin: 40px auto;
               max-width: 800px;
               box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
               animation: slideInDown 0.8s ease;
          }

          .contact-title {
               font-size: 2rem;
               margin-bottom: 20px;
               color: #333;
               font-weight: 700;
               animation: fadeInUp 1s ease;
          }

          .contact-form {
               display: grid;
               grid-template-columns: 1fr 1fr;
               gap: 20px;
               max-width: 600px;
               margin: 0 auto;
          }

          .form-group {
               display: flex;
               flex-direction: column;
          }

          .form-group.full-width {
               grid-column: 1 / -1;
          }

          .form-input {
               padding: 15px;
               border: 2px solid #e0e0e0;
               border-radius: 10px;
               font-size: 1rem;
               transition: border-color 0.3s ease, box-shadow 0.3s ease;
          }

          .form-input:focus {
               outline: none;
               border-color: #ff6b35;
               box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
          }

          .form-textarea {
               resize: vertical;
               min-height: 120px;
          }

          .btn {
               background: #ff6b35;
               color:black;
               border: none;
               padding: 15px;
               border-radius: 10px;
               font-size: 1rem;
               cursor: pointer;
               transition: background 0.3s ease, transform 0.2s ease;
          }

          .btn:hover {
               background: #e85a27;
               transform: translateY(-2px);
          }

          /* Animations */
          @keyframes slideInDown {
               from {
                    opacity: 0;
                    transform: translateY(-50px);
               }

               to {
                    opacity: 1;
                    transform: translateY(0);
               }
          }

          @keyframes fadeInUp {
               from {
                    opacity: 0;
                    transform: translateY(30px);
               }

               to {
                    opacity: 1;
                    transform: translateY(0);
               }
          }

          /* Responsive Design */
          @media (max-width: 768px) {
               .contact-form {
                    grid-template-columns: 1fr;
               }
          }

          /* Popup Style */
          .popup {
               position: fixed;
               top: 50%;
               left: 50%;
               transform: translate(-50%, -50%);
               background: #fff;
               padding: 30px 40px;
               border-radius: 15px;
               box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
               text-align: center;
               z-index: 9999;
               display: none;
               animation: popupIn 0.5s ease forwards;
          }

          .popup h3 {
               margin-bottom: 15px;
               color: #333;
          }

          .popup button {
               background: #ff6b35;
               color: #fff;
               border: none;
               padding: 10px 20px;
               border-radius: 10px;
               cursor: pointer;
          }
          .service-title {
               text-align: left;
          }
          @keyframes popupIn {
               from {
                    opacity: 0;
                    transform: translate(-50%, -60%);
               }

               to {
                    opacity: 1;
                    transform: translate(-50%, -50%);
               }
          }
     /*It Services*/
    
          .main {
               font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                background-color: #f4f3f5;
               color: #333;
               overflow-x: hidden;
               padding-top: 100px;
          }

          /* Hero Section */
          .hero {
               text-align: center;
               padding: 80px 20px 60px;
               position: relative;
          }

          .main-heading {
               font-size: clamp(2.5rem, 5vw, 4rem);
               font-weight: 800;
              color: black;
                margin-bottom: 20px;
               animation: slideInDown 1s ease-out;
          }

          .hero-subtitle {
               font-size: 1.25rem;
               color: black;
               margin-bottom: 40px;
               opacity: 0.9;
               animation: fadeInUp 1s ease-out 0.3s both;
          }

          .cta-buttons {
               display: flex;
               gap: 20px;
               justify-content: center;
               flex-wrap: wrap;
               animation: fadeInUp 1s ease-out 0.6s both;
          }

          .btn {
               padding: 15px 30px;
               border: none;
               border-radius: 50px;
               font-weight: 600;
               text-decoration: none;
               transition: all 0.3s ease;
               cursor: pointer;
               font-size: 1rem;
               position: relative;
               overflow: hidden;
          }

          .btn-primary {
               background: linear-gradient(45deg, #1136d8, #3a08cf);
               color: black;
               box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
          }

          .btn-secondary {
               background: rgba(255, 255, 255, 0.2);
               color: black;
               backdrop-filter: blur(10px);
               border: 1px solid rgba(255, 255, 255, 0.3);
          }

          .btn:hover {
               transform: translateY(-3px);
               box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          }

          /* Container */
          .container {
               max-width: 1200px;
               margin: 0 auto;
               padding: 0 20px 80px;
               color: black;
          }

          /* Filter Tabs */
          .filter-tabs {
               display: flex;
               justify-content: center;
               gap: 10px;
               margin-bottom: 40px;
               margin-top: 30px;
               flex-wrap: wrap;
          }

          .filter-tab {
               padding: 10px 20px;
               border: none;
               border-radius: 25px;
               background: rgba(255, 255, 255, 0.1);
               color: black;
               cursor: pointer;
               transition: all 0.3s ease;
               backdrop-filter: blur(10px);
          }

          .filter-tab.active {
               background: linear-gradient(45deg, #3072ac, #4879c3);
               transform: scale(1.05);
          }

          .filter-tab:hover {
               background: rgba(255, 255, 255, 0.2);
          }

          /* Services Grid */
          .services-grid {
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
               gap: 30px;
               margin-top: 40px;
          }

          .service-card {
               background: rgba(255, 255, 255, 0.95);
               border-radius: 20px;
               padding: 30px;
               backdrop-filter: blur(10px);
               border: 1px solid rgba(255, 255, 255, 0.2);
               transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
               position: relative;
               overflow: hidden;
               opacity: 0;
               transform: translateY(30px);
               animation: fadeInUp 0.8s ease-out forwards;
          }

          .service-card::before {
               content: '';
               position: absolute;
               top: 0;
               left: 0;
               right: 0;
               height: 4px;
               background: linear-gradient(45deg, #d8643a, #f7931e);
               transform: scaleX(0);
               transition: transform 0.3s ease;
          }

          .service-card:hover::before {
               transform: scaleX(1);
          }

          .service-card:hover {
               transform: translateY(-10px) scale(1.02);
               box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
          }

          .service-icon {
               font-size: 3rem;
               margin-bottom: 10px;
               display: block;
               animation: bounce 2s infinite;
          }

          .service-title {
               font-size: 1.5rem;
               font-weight: 700;
               margin-bottom: 5px;
               color: #333;
               position: relative;
          }

          .service-items {
               list-style: none;
          }

          .service-item {
               padding: 5px 0;
               border-bottom: 1px solid #f0f0f0;
               transition: all 0.3s ease;
               cursor: pointer;
               position: relative;
               padding-left: 20px;
          }

          .service-item::before {
               content: '→';
               position: absolute;
               left: 0;
               color: #ff6b35;
               font-weight: bold;
               transition: transform 0.3s ease;
          }

          .service-item:hover {
               color: #ff6b35;
               transform: translateX(10px);
               background: rgba(255, 107, 53, 0.05);
               border-radius: 8px;
               padding-right: 10px;
          }

          .service-item:hover::before {
               transform: translateX(5px);
          }

          .service-item:last-child {
               border-bottom: none;
          }

          /* Stats Section */
          .stats-section {
               background: rgba(255, 255, 255, 0.1);
               backdrop-filter: blur(10px);
               border-radius: 20px;
               padding: 0px;
               margin: 0px 0;
               text-align: center;
               color: black;
          }

          .stats-grid {
               display: grid;
               grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
               gap: 30px;
               margin-top: 10px;
          }

          .stat-item {
               color: black;
          }

          .stat-number {
               font-size: 3rem;
               font-weight: 800;
               color: #2a2827;
               display: block;
          }

          .stat-label {
               font-size: 1.1rem;
               opacity: 0.9;
          }
    @media (max-width: 768px) {
               .contact-form {
                    grid-template-columns: 1fr;
               }
          }

          /* Popup Style */
          .popup {
               position: fixed;
               top: 50%;
               left: 50%;
               transform: translate(-50%, -50%);
               background: #fff;
               padding: 20px 40px;
               border-radius: 15px;
               box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
               text-align: center;
               z-index: 9999;
               display: none;
               animation: popupIn 0.5s ease forwards;
          }

          .popup h3 {
               margin-bottom: 15px;
               color: #333;
          }

          .popup button {
               background: #ff6b35;
               color: #fff;
               border: none;
               padding: 10px 20px;
               border-radius: 10px;
               cursor: pointer;
          }
          .service-title {
               text-align: left;
          }
      
/*JOb Apply Section*/
         