@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  overflow-x: hidden !important;
}
body {
    background: #f4f4f4;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    overflow-x: hidden !important;
}
/* hero section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 1;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 100px;
  }
  
  .hero-content h1 {
    font-size:65px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 24px;
    line-height: 1.6;
    /* max-width: 800px; */
    margin: 0 auto;
    margin-bottom: 30px;

  }
  .container-button{
display: flex;
justify-content: center;
  }

  .btn-talk {
    background-color: rgba(32, 122, 252, 1);
    color: rgba(255, 255, 255, 1);
    padding: 10px 30px;
    margin-right: 20px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    width: 169px;
    height: 65px;
  }
  
  .btn-talk:hover {
    background-color: rgb(28, 110, 225) !important;
  }
  /* For smaller screens */
  @media (max-width: 768px) {
    .btn-talk {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
    .hero-content{
      margin-top: 100px;
    }
  }
  /* For very small devices */
  @media (max-width: 480px) {
    .btn-talk {
      width: 200px !important;
      text-align: center;
      display: block;
      height: 55px;
    }
    .hero-content{
      margin-top: 100px;
    }
  }
  .btn-talk:hover {
    background-color: #4B2FA3;
  }
  
  /* ========================
     Responsive Design
     ======================== */
  
  @media (max-width: 1024px) {
    .hero-content h1 {
      font-size: 32px;
    }
    .hero-content p {
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 60px 0;
    }
    .hero-content h1 {
      font-size: 26px;
    }
    .hero-content p {
      font-size: 15px;
    }
    .btn-talk {
      width: 100%;
      max-width: 150px;
      align-self: center;
    }
  }
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 22px;
    }
  
    .hero-content p {
      font-size: 14px;
    }
  
    .hero-overlay {
      padding: 0 10px;
    }
  }
/*
/* .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
} */
.hero-container {
    width: 100%;
}
/* close btn */
.close-btn{
border: none;
height: 23px;
width: 23px;
background-color: none;
display: none;
}
/* Responsive Styles for mobile */
@media (min-width: 1025px) {
    .menu-toggle {
        display: none !important;
    }
}
@media (max-width: 1024px) {
    .navbar {
        background-color: #333;
        color: white;
        padding: 15px 20px;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        display: block;
    }
    .nav-item{
        display: none;
    }
    .nav-menu ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 20px;
        z-index: 1000;
        display: none;
    }
    .nav-menu.active ul {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .contact-btn {
        display: none;
    }
    .hero-content h1 {
        font-size: 33px;
        font-weight: 600;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-container{
       width: 100%;
    }
}
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}
@media (max-width: 425px) {
    .hero {
        width: 100%;
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .btn-talk {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* service section */
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f4f4f4;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}
.navbar {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.logo img {
    max-width: 150px;
    height: auto;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}
.contact-btn {
  background-color: rgba(32, 122, 252, 1);
  color: rgba(255, 255, 255, 1);
  padding: 10px 30px;
  margin-right: 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  width: 149px;
  height: 60px;
}

.contact-btn:hover {
  background: #0056c1;
}
.menu-toggle {
    display: inline-block;
    font-size: 1.5rem;
    background: none;
    border: none !important;
    cursor: pointer;
}
.menu-toggle:focus,
.close-btn:focus {
  outline: none;
  border: none;
}
.menu-toggle:focus-visible,
.close-btn:focus-visible {
  outline: none;
  border: none;
}
/* portfolio section */
.portfolio-container {
  background: linear-gradient(to right, rgba(193, 218, 254, 0.8), rgba(255, 255, 255, 1));
  border-radius: 40px;
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1320px; /* Updated width */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  margin-bottom: 70px;
}

  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .portfolio-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
  }
  .portfolio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .portfolio-controls a {
    color: #0066ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  .arrows button {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
  }
 /* Scroll wrapper to allow scroll */
 .portfolio-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden !important;      /* 🚫 prevent vertical scrollbar */
  scroll-behavior: smooth;
  position: relative;
  width: 100%;
  white-space: nowrap;     /* items stay in one row */
}
.portfolio-scroll-wrapper > * {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.portfolio-scroll-wrapper {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}

.portfolio-scroll-wrapper::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
}
  

.arrows button img{
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.arrows img{
  cursor: pointer;
}
.image-web {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  width: max-content;
  padding-bottom: 10px;
}
.image-web img {
  width: 100%;
  height: 100%;
  max-width: 341px;
  max-height: 238px; /* You can set max-height to keep it uniform */
  object-fit: cover; /* Ensures images maintain their aspect ratio */
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
  /* Responsive */
  @media (max-width: 768px) {
    .portfolio-header h2 {
      font-size: 24px;
    }
    .portfolio-controls {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .image-web img {
      max-width: 280px;
    }
  }
 
/* footer section */
.curve-bg {
  background-color: #160082;
  height: 220px;
  border-bottom-left-radius: 47% 90%;
  border-bottom-right-radius: 47% 90%;
  position: relative;
}

.newsletter-box {
  position: relative; /* Changed from fixed to relative */
  margin: -100px auto 40px auto; /* Pull it up over the curve */
  width: 90%;
  max-width: 1320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
}


.newsletter-left {
  max-width: 500px;
}

.newsletter-left img {
  width: 130px;
  transform: translateX(-10px);
}

.newsletter-left h2 {
  margin: 15px 0 8px;
  font-size: 24px;
}

.newsletter-left p {
  font-size: 14px;
  color: #666;
}

.newsletter-right {
width: 100%;
max-width: 550px;
margin: 0 auto; /* Center on desktop */
display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-right input {
padding: 12px 15px !important;
border: 1px solid #ccc !important;
border-radius: 8px !important;
width: 100% !important;
height: 50px !important;
box-sizing: border-box !important;
}

/* Mobile Responsive: optional but safe */
@media (max-width: 600px) {
.newsletter-right input {
width: 100%;
max-width: 100%;
}
}


.newsletter-right button {
  background-color: #160082;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 5%;
  width: 170px;
  transform: translateX(-23px);
  height: 43px;
}

.footer {
  margin-top: 130px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
}

.location {
  max-width: 220px;
  display: flex;
  gap: 10px;
}

.location i {
  margin-top: 4px;
}

.social {
display: flex;
align-items: center; 
gap: 10px; 
font-size: 20px;
}

.social-icons {
display: flex;
gap: 10px;
}

.bottom-bar {
  border-top: 2px solid #1906824D;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #777;
}

.bottom-bar a {
  color: #777;
  text-decoration: none;
  margin-left: 15px;
}
.light {
font-weight: normal !important; 
font-size: 18px;  
color: #666;      
line-height: 28px;
}

.bold{
  font-size: 20px;
}
.newsletter-box input::placeholder {
  font-size: 18px; 
  color: #888;  
  font-weight: 300;

}



@media (max-width: 768px) {
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin-top: -180px;
  }

  .newsletter-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 45px;
  }

  .social {
    align-items: center;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  /* .newsletter-right input {
min-width: auto;
width: 100%;
} */
  .newsletter-right button {
    right: 9%;
    width: 100px;
    font-size: 13px;
    transform: translateY(-8px);

  }
  .newsletter-box input::placeholder {
    font-size: 14px; 
    color: #888;  
  
}
.location img{
  margin-top: 10px;
  gap: 0px;
}
}
 /* form */
 
    /* New outer container */
    .main-container {
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(to bottom, #d6eaff 60%, #ffffff 50%);
      padding: 80px 10px;
    }

    /* Existing contact-container */
    .contact-container {
      max-width: 1320px;
      margin: 0 auto;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      overflow: hidden;
    }

    .contact-left {
      background: none;
      background-image: url('icons/Frame\ 1000007555.png');
      background-size: cover;
      background-position: center;
      color: white;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      margin: 30px;
      border-radius: 30px;
    }

    .contact-left h2 {
      font-size: 55px;
      font-weight: 700;
      margin-top: 0;
      margin-bottom: 30px;
      line-height: 1.4;
      /* transform: translateY(-100px); */
      padding: 20px;
      max-width: 500px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
      font-size: 15px;
      padding: 20px;
    }

    .contact-info div {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
    }

    .contact-info i {
      color: white;
      font-size: 20px;
      margin-right: 10px;
    }

    .contact-right {
      flex: 2;
      padding: 40px;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
    }

    .form-group {
      margin-bottom: 25px;
    }
/* 
    .form-toggle-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .form-toggle-group button {
      border: none;
      padding: 8px 15px;
      border-radius: 20px;
      background: #e0e0e0;
      color: #333;
      cursor: pointer;
      box-sizing: border-box;
    } */
    .form-toggle-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .form-toggle-group button {
      box-sizing: border-box;  /* ✅ Fix added */
      border: 1px solid #e0e0e0;
      padding: 10px 20px;
      border-radius: 999px;
      background: #f5f5f5;
      color: #333;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      margin-top: 5px;
    }
 

    .form-toggle-group button:hover {
      background: #a4c7f2;
      color: #0082ED;
      border: 3px solid #0082ED;
    }
   

    .input-row{
      display: flex;
      gap: 20px;
 
    }

    input[type="text"],
    input[type="email"],
    textarea {
      border: none;
      border-bottom: 1px solid #ccc;
      width: 100%;
      padding: 8px 4px;
      font-size: 15px;
      background: transparent;
      outline: none;
    }

    textarea {
      resize: vertical;
      height: 80px;
    }

    .file-upload {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .file-upload input[type="file"] {
      display: none;
    }

    .file-upload .file-upload-button {
      padding: 12px 20px;
      background-color: #007bff;
      color: white;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
    }

    .file-upload .file-upload-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .file-upload .file-upload-button:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    .file-upload label {
      font-size: 16px;
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
    }

    .file-upload input[type="file"]:focus {
      outline: none;
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    .submit-btn {
      margin-top: 25px;
    }

    .submit-btn button {
      background-color: #160082;
      color: #fff;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s ease;
    }

    .submit-btn button:hover {
      background-color: #003bb3;
    }

    /* Responsive */
    @media (max-width: 768px) {
  .main-container {
    padding: 0;
    height: auto;
    background: #d6eaff;
  }

  .contact-container {
    flex-direction: column;
    height: auto;
    box-shadow: none;
    border-radius: 0;
  }

  .contact-left {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 20px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
  }

  .contact-left h2 {
    transform: none;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0;
  }

  .contact-info div {
    font-size: 16px;
    transform: translateX(-36px);
  }

  .contact-right {
    width: 100%;
    padding: 30px 20px;
  }

  .input-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-toggle-group {
    gap: 8px;
    flex-direction: column;
  }

  .form-toggle-group button {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    text-align: left;
  }

  .file-upload .file-upload-button {
    font-size: 14px;
    padding: 10px;
  }

  .submit-btn button {
    width: 100%;
  }
  .light {
font-weight: normal !important; 
font-size: 14px !important;  
color: #666;      
line-height: 28px;
}

}

/* services */
.services-container-web {
    width: 95%;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}
.services-container-heading-web {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0 15px;
}
.services-container-heading-web span {
    color: #1a1faa;
}
.services-grid-web {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1320px;   /* Limit width */
  margin: 0 auto;       /* Center the grid container */
}


.services-card-web {
    background: white;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #626262;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.services-card-web:hover {
    background: linear-gradient(to bottom, #a0c4ff, #ffffff);
}

.services-web-icon video {
    width: 70px;
    padding-top: 15px;
}

.services-card-heading,
.services-card-heading-web,
.services-card-heading-apps {
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto;
    margin-top: 24px;
}
.services-card-web p {
    margin-top: 20px;
    font-size: 15px;
    color: #363636;
    padding: 0 33px;
}
.services-web {
    opacity: 0;
    height: 0;
    margin-top: 20px;
    text-align: left;
    color: #363636; 
    padding-left: 15px;
    font-size: 14px;
}
.services-web li {
  padding-left: 30px;
  list-style-position: inside; /* This ensures the bullet stays inside the list item */
}

.services-card-web:hover p {
    opacity: 1;
    display: none;
}
.services-card-web:hover .services-web {
    opacity: 1;
    margin-left: 10px;
}
.services-web-btn {
    display: inline-block;
    background: #160682;
    color: #FFFFFF;
    border-radius: 43px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    padding: 15px 40px;
    margin-top: 60px;
}
.services-web-btn:hover{
  color: white;
  background-color:#2108c2;
  text-decoration: none;
}
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .services-grid-web {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 3 equal-width columns */
    gap: 20px;
  }
    .services-container-heading-web {
        font-size: 34px;
        line-height: 1.4;
    }
    .carousel-childd {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;   
    }
    .carousel-child{
      display: flex;
      justify-content: center;
      color: rgba(54, 54, 54, 1);
    }
    .services-card-heading,
    .services-card-heading-web,
    .services-card-heading-apps {
        font-size: 18px;
    }

    .services-card-web p {
        font-size: 14px;
    }

    .services-web {
        font-size: 13px;
    }

    .services-web-btn {
        width: auto;
        font-size: 18px;
        padding: 12px 30px;
    }
    .services-card-web{
      max-height: 300px !important;
    }
}
@media screen and (max-width: 480px) {
    .services-container-heading-web {
        font-size: 28px;
    }
    .services-web-icon video {
        width: 60px;
    }
    .services-card-web {
        padding: 15px;
    }
}
/* banner  */
.services-web-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url("img/servicesbanner.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 0 20px; /* add some horizontal padding for small screens */
}

.services-web-banner-content {
    position: relative;
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

.services-web-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.ser-web-ban-head {
    font-size: 58px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ser-web-ban-para {
    font-size: 22px;
    font-weight: 300;
    line-height: 35px;
    margin-bottom: 20px;
    color: #ffffff;
}

.ser-web-ban-btn {
    background: white;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin-top: 20px;
}

.ser-web-ban-btn:hover {
    background: black;
    color: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

/* --- RESPONSIVE STYLES --- */
@media screen and (max-width: 1024px) {
    .ser-web-ban-head {
        font-size: 44px;
    }

    .ser-web-ban-para {
        font-size: 15px;
        line-height: 30px;
    }

    .ser-web-ban-btn {
        font-size: 20px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 768px) {
    .services-web-banner {
        height: 450px;
    }

    .ser-web-ban-head {
        font-size: 36px;
    }

    .ser-web-ban-para {
        font-size: 13px;
        line-height: 28px;
    }

    .ser-web-ban-btn {
        font-size: 18px;
        padding: 10px 20px;
    }
}
@media screen and (max-width: 480px) {
    .services-web-banner {
        height: auto;
        padding: 40px 20px;
        margin-bottom: 50px;
    }

    .ser-web-ban-head {
        font-size: 28px;
    }

    .ser-web-ban-para {
        font-size: 10px;
        line-height: 26px;
    }

    .ser-web-ban-btn {
        font-size: 16px;
        padding: 8px 18px;
    }
}
kick start */ 

/* .container{
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
} */


.text-content h1 {
    text-align: center !important;
    font-size: 38px;
    font-family: Source Sans Pro;
    font-weight: 600;
    color: #363636;
    margin-bottom: 10px;
    padding-top: 70px;
}
.text-content h1 span {
    color: #160682;
}
.text-content p {
    color: #363636;
    font-size: 18px;
    line-height: 100%;
    max-width: 700px;
    margin: 0 auto 20px;
    font-weight: 300;
    text-align: center;
}
.list-video-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
    align-items: flex-start;
    /* Aligns items to the top */
}
.list-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-200px);  
  line-height: 45px;
}

.list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 0px;
}
.list-container ul li {
    font-size: 18px;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: center;
    margin-left: 265px;
}
.list-container ul li::before {
    content: "\25CF";
    /* Solid circle bullet */
    color: grey;
    font-size: 18px;
    margin-right: 10px;
}
.video-content {
    flex: 1;
    display: flex;
    justify-content: center;
}
.video-content img{
    width: 500px;
height: 500px;
}
.video-content video {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}
@media (max-width: 480px) {
    .text-content h1 {
        font-size: 27px !important;
        padding-top: 30px;
    }
    .text-content p {
        font-size: 15px;
        padding: 23px;
    }

    .list-container ul li {
        font-size: 15px;
    }
    .video-content video {
        border-radius: 15px;
        padding: 10px;
    }
   
      .list-container {
        flex: 1;
        /* display: flex
    ; */
        /* flex-direction: column; */
        /* justify-content: flex-start; */
        transform: translateX(-130px) !important;
         line-height: 18px;      
    }    
   
    .portfolio-container{
      margin: 7px 10px 30px 17px !important;
    }
    .prevBtn img,.nextBtn img{
      width: 45px !important;
    }
    .portfolio-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
    
    }
  
    .portfolio-controls .arrows {
      display: flex;
    }
  
    #prevBtn,
    #nextBtn {
      width: 50px;     
      height: 50px;
      object-fit: contain;
      transition: transform 0.2s ease;
    }
  
    #prevBtn:hover,
    #nextBtn:hover {
      transform: scale(1.1); /* slight hover zoom */
    }
    .image-group {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;                  /* reduced gap for tighter look */
      justify-content: center;
      margin-bottom: 40px;
      padding: 0 16px;            /* horizontal padding for mobile */
    }
    
    .image-group img {
      width: 180px;               /* fixed size for neat layout */
      height: auto;
      border-radius: 12px;        /* smooth corners */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* light shadow */
      transition: transform 0.3s ease;
    }
    
    .image-group img:hover {
      transform: scale(1.05);     /* zoom on hover */
    }

}
/* why choose us  */
.choose-container {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 80px;
}

.choose-container-h2 {
    font-size: 48px;
    font-weight: 600;
}

.highlight {
    color: #190682;
}

.desc {
    color: #363636;
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 28px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Layout: Video + Features --- */
.features-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;          /* center the whole container */
  padding: 0 20px;         /* side padding for smaller screens */
  box-sizing: border-box;  /* prevent overflow from padding */
}

/* Laptop video */
.laptop video {
    width: 100%;
    max-width: 488px;
     border-radius: 50px;
}
/* Features Grid */
.features {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}
.features {
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    height: 425px;
}
.feature-box {
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}
.feature-box:hover {
    border: 3px solid;
    border-image-source: linear-gradient(97deg, #190682, #0082ED);
    border-image-slice: 1;
    border-radius: 10px;
}
.feature-box strong {
    font-family: Source Sans Pro;
    font-weight: 600;
    font-size: 18px;
    line-height: 308%;
    letter-spacing: 0%;
    color: #000000;
}
.feature-box p {
    font-size: 15px;
    line-height: 22px;
    color: #333;
}
/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {
    .choose-container-h2 {
        font-size: 32px;
    }
    .desc {
        font-size: 17px;
    }
    .laptop video {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    .features {
        grid-template-columns: 1fr;
        width: 100%;
        margin-bottom: 50px;
    }
    .feature-box {
        text-align: center;
    }
    .feature-box img {
        margin: 0 auto 10px;
    }
}
@media (max-width: 480px) {
    .choose-container-h2 {
        font-size: 28px;
    }
    .choose-container {
        margin-top: 43px;
        padding: 0px;
    }

    .desc {
        font-size: 14px;
    }

    .feature-box strong {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 14px;
    }
}
/* innovative custom section */
/* Container spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Left Content (Text Area) */
  .left-content {
    flex: 1;
    min-width: 280px;
  }
  
  .custom-content {
    margin-bottom: 40px;
  }
  
  .custom-content h1 {
    font-size: 2.5rem;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
  }
  
  .custom-content h1 span {
    color: #160682;
  }
  
  .custom-content p {
    color: #363636;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Right Content (Services) */
  .right-content {
    flex: 1;
    min-width: 280px;
  }
  
  .service {
    margin-bottom: 30px;
    position: relative;
    padding: 20px 20px 20px 80px;
    border-radius: 12px;
  }
  
  .service h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
  }
  
  /* Icons Styling */
  .icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .group-icon {
    width: 30px;
    height: 30px;
  }
  
  .frame-icon {
    height: 100px;
    margin-top: 10px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .custom-content h1 {
      font-size: 2rem;
    }
  
    .service {
      padding-left: 70px;
    }
  
    .icons {
      left: 10px;
    }
  }
  
  @media (max-width: 768px) {
    .container-life{
      margin: 0 !important;
    }
    .container-vid{
      margin: 0 !important;
    }
    .container-photo{
      margin: 0 !important;
    }
    .container-email{
      margin: 0 !important;
    }
    .container-tik{
      margin: 0 !important;
    }
    .containersnap{
      margin: 0 !important;
    }
    .container-googgle{
            margin: 0 !important;
    }
    .container-meta{
      margin: 0 !important;
    }
    .container-seo{
      margin: 0 !important;
    }
    .container-soc{
      margin: 0 !important;
    }
    .container-enter{
      margin: 0 !important;
    }
    .container-prod{
      margin: 0 !important;
    }
    .container-assurance{
      margin: 0 !important;
    }
    .container-app{
    margin: 0 !important;
    }
    .custom-row {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .custom-content h1 {
      font-size: 1.8rem;
    }
  
    .custom-content p {
      font-size: 0.95rem;
    }
  
    .service h2 {
      font-size: 1.1rem;
    }
  
    .service p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .custom-container{
      margin: 0 !important;
    }
    .custom-content h1 {
      font-size: 28px;
      font-weight: 600;
      margin-top: 45px;
    }
  
    .service {
      padding-left: 60px;
      margin-top: -32px;
    }
  
    .frame-icon {
      height: 80px;
    }
  }
  /* .service {
    opacity: 0;
    transform: none;
  }
  
  .service.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service.hidden {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
  } */
    /* Responsive Custom Section */
.custom-section h2 {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 auto 30px;
    font-family: Source Sans Pro;
    color: #363636;
    text-align: center;
    width: 90%;
}

.custom-section h2 span {
    color: #160682;
}

/* Flex container with horizontal scroll */
.custom-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 60px 20px;
    scroll-snap-type: x mandatory;
    max-width: 1350px;
    margin: auto;
  
}

.custom-container::-webkit-scrollbar {
    display: block;
}
.custom-container {
    -ms-overflow-style: block;
    scrollbar-width: block;
}

/* application ka container */




/* Card Styles */
.card-container {
    flex: 0 0 90%;
    max-width: 420px;
    background: #CACACA42;
    padding: 100px 30px 40px;
    border-radius: 24px;
    scroll-snap-align: start;
    position: relative;
}

.ellipse video {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.feature p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #000;
    line-height: 1.5;
}


@media (max-width: 768px) {
  .custom-section h2 {
      font-size: 28px;
  }
  .card-container {
    flex: 0 0 90%;
    max-width: 420px;
    background: #CACACA42;
    padding: 70px 30px 20px;}
}
/* business section */
.reown {
  color: rgba(54, 54, 54, 1);
  font-family: Source Sans Pro;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 10px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1350px;
  margin: 20px auto 0 auto; /* top 20px, left & right auto for centering */
  box-sizing: border-box;
}
.highlight-container-1 {
  width: 100%;
  max-width: 1350px;
  margin: 50px auto;
  text-align: center;
  padding: 0 15px;
}


.business-card {
  background: white;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid rgba(25, 6, 130, 1);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgba(98, 98, 98, 1);
  font-weight: 600;
  text-align: center;
}
.business-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(98, 98, 98, 1);
  text-align: center;
}

.blue-box {
  background: rgba(0, 130, 237, 0.97);
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin: 0 auto;
}

.business-content {
  padding-top: 30px;
  text-align: center;
}
.highlight-container {
  width: 80%;
  margin: 50px auto;
  text-align: center;
}
.highlight-heading {
  font-size: 50px;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 80px;
}
.highlight {
  color: #160682;
}
@media (max-width: 1024px) {
  .highlight-heading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .highlight-heading {
    font-size: 1.3rem;
    line-height: 40px;
    margin-bottom: 40px;
  }
  .reown {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .highlight-heading {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .reown {
    font-size: 16px;
  }
}
.banner {
  background: linear-gradient(135deg, #0082EDBD, #0082EDBD);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: left;           /* center content */
  width: 90%;                   /* increase base width */
  max-width: 1350px;
  margin: 70px auto 0 auto;     /* center the banner horizontally */
}


.banner h1 {
  font-size: 2.5em;
  margin: 0 0 20px;
}

.banner p {
  font-size: 1.2em;
  margin: 0 0 20px;
  font-family: Source Sans Pro;
}

.banner button {
  background-color: #FFFFFF;
  color: #626262;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  /* margin-left: 400px; */

}

.banner button:hover {
  background-color: #f0f0f0;
}

.content img{
  padding-right: 10px;
}

/* Responsive Settings */
@media (max-width: 1024px) {
  .banner {
      margin-left: auto;
      margin-right: auto;
      margin-top: 80px;
      text-align: center;
  }

  .banner button {
      margin: 20px auto 0;
      display: block;
  }

  .banner h1 {
      font-size: 2em;
  }
}

@media (max-width: 768px) {
  .banner {
      margin-top: 60px;
      width: 90%;
      padding: 30px;
  }

  .banner h1 {
      font-size: 1.8em;
  }

  .banner p {
      font-size: 1em;
  }

  .banner button {
      padding: 12px 25px;
      font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .banner {
      margin-top: 40px;
      padding: 20px;
      text-align: center;
      width: 85%;
  }

  .banner h1 {
      font-size: 1.5em;
      line-height: 1.4;
  }

  .banner button {
      padding: 10px 20px;
      font-size: 0.9em;
  }
}
.services-container-web {
  width: 95%;
  margin: auto;
  text-align: center;
  padding: 0 15px;
}

.services-container-heading-web {
  font-size: 53px;
  font-weight: 600;
  margin: 80px auto;
  line-height: 70px;
  font-family: Source Sans Pro;
}

.services-container-heading-web span {
  color: #1a1faa;
}
/* circle section */
/* Circle Section - Desktop and Larger Screens */
.circle-section {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 5px solid rgba(25, 6, 130, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.item {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item:nth-child(1) { top: -10%; left: 50%; transform: translateX(-50%); }
.item:nth-child(2) { top: 35%; right: -10%; transform: translateY(-50%); }
.item:nth-child(3) { bottom: 2%; right: -7%; transform: translateX(-50%); }
.item:nth-child(4) { bottom: 12%; left: 7%; transform: translateY(50%); }
.item:nth-child(5) { top: 35%; left: -10%; transform: translateY(-50%); }
.circle img {
  width: 172px;
  height: 142px;
}
/* Responsive Styles for Tablets and Smaller Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .circle {
    width: 280px;
    height: 280px;
  }
  .item {
    width: 60px;
    height: 60px;
  }
  .item:nth-child(1) { top: -5%; left: 50%; transform: translateX(-50%); }
  .item:nth-child(2) { top: 30%; right: -8%; transform: translateY(-50%); }
  .item:nth-child(3) { bottom: 5%; right: -6%; transform: translateX(-50%); }
  .item:nth-child(4) { bottom: 12%; left: 10%; transform: translateY(50%); }
  .item:nth-child(5) { top: 30%; left: -8%; transform: translateY(-50%); }

  .circle img {
    width: 150px;
    height: 120px;
  }
}

/* Responsive Styles for Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  .circle {
    width: 250px;
    height: 250px;
    margin-top: -60px;
  }

  .item {
    width: 50px;
    height: 50px;
  }

  .item:nth-child(1) { top: -10%; left: 50%; transform: translateX(-50%); }
.item:nth-child(2) { top: 35%; right: -10%; transform: translateY(-50%); }
.item:nth-child(3) { bottom: 2%; right: -7%; transform: translateX(-50%); }
.item:nth-child(4) { bottom: 12%; left: 7%; transform: translateY(50%); }
.item:nth-child(5) { top: 35%; left: -10%; transform: translateY(-50%); }
  .circle img {
    width: 120px;
    height: 100px;
  }
}
/* Responsive Styles for Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  .circle {
    width: 200px;
    height: 200px;
    margin-top: -50px;
  }

  .item {
    width: 40px;
    height: 40px;
  }

  .item:nth-child(1) { top: -10%; left: 50%; transform: translateX(-50%); }
.item:nth-child(2) { top: 35%; right: -10%; transform: translateY(-50%); }
.item:nth-child(3) { bottom: 2%; right: -7%; transform: translateX(-50%); }
.item:nth-child(4) { bottom: 12%; left: 7%; transform: translateY(50%); }
.item:nth-child(5) { top: 35%; left: -10%; transform: translateY(-50%); }

  .circle img {
    width: 100px;
    height: 85px;
  }
}

/* .educational-software {
  padding: 60px 20px;
} */

.services-container-web {
  text-align: center;
  margin-bottom: 40px;
}
.services-container-heading-web {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.services-container-heading-web span {
  color: #160682;
}
.carousel-child {
  font-size: 20px;
  color: #4b4b4b;
  margin-bottom: 40px;
  max-width: 1100px;
  margin: 20px auto;
}
.education-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px;
}

.box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(139, 139, 139, 1);
  padding: 15px 20px;
  gap: 15px;
  transition: 0.3s;
  width: 100%;
}

.eduicon-container {
  width: 72px;
  height: 72px;
  background: rgba(0, 130, 237, 0.97);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eduicon-container img {
  width: 40px;
  height: 40px;
}

.text {
  font-size: 18px;
  color: rgba(98, 98, 98, 1);
  font-weight: 400;
}

.video-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive Design Start */

@media (max-width: 992px) {
  .services-container-heading-web {
    font-size: 40px;
    line-height: 1.3;
    margin-top: 40px;
  }

  .carousel-child {
    font-size: 18px;
  }

  .row.align-items-center {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .col-lg-6 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .education-container {
    margin-left: 0;
    align-items: center;
  }

  .box {
    flex-direction: row;
  }

  .eduicon-container {
    width: 60px;
    height: 60px;
  }

  .eduicon-container img {
    width: 35px;
    height: 35px;
  }

  .text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .services-container-heading-web {
    font-size: 28px;
    line-height: 36px;
  }

  .carousel-child {
    font-size: 16px;
  }

  .eduicon-container {
    width: 50px;
    height: 50px;
  }

  .eduicon-container img {
    width: 30px;
    height: 30px;
  }

  .text {
    font-size: 15px;
  }

  .box {
    padding: 12px 15px;
  }

  .education-container {
    gap: 15px;
  }
  .business-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}


  /* offer section */
.offer-section h2 {
  font-size: 50px;
  line-height: 80.45px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Source Sans Pro;
  color: rgba(54, 54, 54, 1);
  margin: auto;
  width: 90%;
  text-align: center;
  padding-top: 100px;
}

.offer-section h2 span {
  color: rgba(22, 6, 130, 1);
}

.offer-section p {
  color: #363636;
  font-weight: 300;
  max-width: 900px;
  margin: 20px auto 40px auto;
  font-size: 25px;
  text-align: center;
  font-family: Source Sans Pro;
}

.offer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* Desktop: 4 columns */
  gap: 20px;
  margin-top: 30px;
  width: 90%;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}


.offer-cards {
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 6px 10px rgba(0, 0, 0, 0.12),    /* bottom shadow */
    0 -6px 10px rgba(0, 0, 0, 0.03);   /* top shadow */
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 200px;
  margin: 50px 0 9px 0;
  gap: 30px;
  position: relative; /* ensure shadows render properly */
  z-index: 1;
}


.offer-cards:hover {
 justify-content: end;
  background: linear-gradient(to bottom, #a0c4ff, #ffffff);
}

.paid-icon img {
  width: 80px;
  height: 80px;
  margin-top: -40px;
}

.content h3 {
  font-family: Source Sans Pro;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: rgba(98, 98, 98, 1);
  padding-bottom: 10px;
}

/* Responsive Design Start */
@media (max-width: 992px) {
  .offer-section h2 {
      font-size: 42px;
      line-height: 60px;
      padding-top: 80px;
  }
  .offer-section p {
      font-size: 20px;
  }
}

@media (max-width: 768px) {
  .offer-container {
      grid-template-columns: repeat(2, 1fr);
  }
  .offer-section h2 {
      font-size: 34px;
      line-height: 48px;
      padding-top: 60px;
  }
  .offer-section p {
      font-size: 18px;
      margin: 15px auto 30px auto;
  }
  .offer-cards {
      gap: 20px;
      margin: 30px 0 9px 0;
      height: auto;
      padding: 20px 0;
  }
  .paid-icon img {
      width: 65px;
      height: 65px;
      margin-top: -30px;
  }
  .content h3 {
      font-size: 18px;
  }
}

@media (max-width: 480px) {
  .offer-container {
      grid-template-columns: 1fr;
  }
  .offer-section h2 {
      font-size: 26px;
      line-height: 38px;
      padding-top: 90px;
  }
  .offer-section p {
      font-size: 16px;
      padding:30px ;
  }
  .highlight-container-1 {
    padding: 0 25px;
  }
  .offer-cards {
      gap: 15px;
      margin: 20px 0 9px 0;
      height: auto;
      padding: 15px 0;
  }
  .paid-icon img {
      width: 55px;
      height: 55px;
      margin-top: -25px;
  }
  .content h3 {
      font-size: 16px;
  }
}
/* Tech Section Styles (Desktop & Larger Screens) */
.tech-section {
  padding: 18px 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: url(./img/back-img.jpg);
  background-size: cover;
  background-position: center;
}

.tech-section h2 {
  font-size: 36px;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.tech-section p {
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  margin-top: 10px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Flex layout for the sliders */
.SSS,
.SSS-1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}

.arrow {
  transform: translateY(-300%);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.arrow:focus,
.arrow:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.slider-container {
  overflow: hidden;
  flex: 1;
}

/* Main slider structure */
.slide-set {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  transition: opacity 0.4s ease;
  gap: 30px;
}

.slide-set.active {
  display: flex;
}

.slide {
  min-width: 120px;
  margin: 0 10px;
  text-align: center;
}

.slide img {
  width: 60px;
  height: 60px;
}

.slide p {
  margin: 8px 0 0;
  font-size: 14px;
  color: white;
}

.btn-arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.arrow {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.arrow img {
  width: 60px;
  height: 60px;
}

/* Responsive Styles for Small Screens */

/* Large Tablets and Smaller (1024px and below) */
@media (max-width: 1024px) {
  .SSS, .SSS-1 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .slide {
    min-width: 100px;
    margin: 10px;
    text-align: center;
  }

  .slide img {
    width: 50px;
    height: 50px;
  }

  .slide p {
    font-size: 13px;
  }

  .arrow img {
    width: 50px;
    height: 50px;
  }

  .arrow {
    transform: translateY(-100%);
  }
}

/* Medium Tablets and Smaller (768px and below) */
@media (max-width: 768px) {
  .tech-section h2 {
    font-size: 24px;
  }

  .tech-section p {
    font-size: 14px;
    padding: 0 10px;
  }

  .btn-arrows {
    gap: 12px;
    margin-top: 20px;
  }

  .arrow img {
    width: 40px;
    height: 40px;
  }

  .arrow {
    transform: translateY(-80%);
  }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
  .slide {
    min-width: 80px;
  }

  .slide img {
    width: 45px;
    height: 45px;
  }

  .slide p {
    font-size: 12px;
  }

  .arrow img {
    width: 35px;
    height: 35px;
  }
  .arrow {
    transform: translateY(-60%);
  }
  /* Adjust text content for mobile screens */
  .tech-section h2 {
    font-size: 20px;
  }
  .tech-section p {
    font-size: 12px;
    padding: 0 5px;
  }
}
@media (max-width: 425px) {
  .slide {
    min-width: 20px;
  }

  .slide img {
    width: 45px;
    height: 45px;
  }

  .slide p {
    font-size: 12px;
  }

  .arrow img {
    width: 35px;
    height: 35px;
  }
  .arrow {
    transform: translateY(-60%);
  }
  /* Adjust text content for mobile screens */
  .tech-section h2 {
    font-size: 20px;
  }
  .tech-section p {
    font-size: 12px;
    padding: 0 5px;
  }
}
.carousel-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 50px;
}
.carousel-child{
  display: flex;
  justify-content: center;
  color: rgba(54, 54, 54, 1);
  margin-top: -66px;
}
 /* fintech section */
 .fintech-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1350px;
  margin: 50px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.heading-container {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.heading {
  font-size: 46px;
  font-weight: bold;
  color: rgba(54, 54, 54, 1);
  max-width: 800px;
  margin: 0 auto;
}

.heading span {
  color: rgba(22, 6, 130, 1);
}

.left-content {
  width: 55%;
  padding-top: 20px;
}

.points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #555;
  padding: 22px;
}

.point img {
  width: 30px;
  height: 30px;
}

.right-image {
  width: 40%;
  text-align: center;
}

.right-image img {
  width: 100%;
  max-width: 400px;
  padding-top: 20px;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .left-content {
    width: 100%;
    margin-top: -50px;
    display: flex;
    justify-content: center;
}
  .right-image {
      width: 100%;
      margin-top: 30px;
  }

  .points {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .heading {
      font-size: 30px;
      margin-top: -23px;
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .heading {
      font-size: 24px;
      line-height: 1.4;
      margin-top: 50px !important;
  }
  .fintech-section{
    margin-top: -53px;
  }
  .points {
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
  }
  .left-content{
    margin-top: -50px;
  }
  .point {
      font-size: 14px;
  }

  .point img {
      width: 24px;
      height: 24px;
  }

  .right-image img {
      padding-top: 10px;
  }
}
/* custom food section */
.highlight-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  padding: 0 15px;
}

.highlight-heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 50px;
}

.highlight {
  color: #160682;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.highlight-card {
  background: white;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid #9B9B9B;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
}

.highlight-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.highlight-icon img {
  height: 55.5px;
  width: 55.5px;
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: rgba(99, 99, 99, 1);
  font-weight: 600;
  text-align: center;
}

.highlight-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #636363;
  text-align: center;
}

@media (max-width: 768px) {
  .highlight-heading {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .highlight-icon img {
    height: 45px;
    width: 45px;
  }

  .highlight-card h3 {
    font-size: 18px;
  }

  .highlight-card p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 100px;
  }
}
@media (max-width:1024px) {
  .process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
  }
}
/* process section */
.process-section {
  text-align: center;
  max-width: 1350px;
  margin: 50px auto;
  padding: 20px;
}

.process-heading {
  font-size: 45px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.process-heading .action {
  color: #160682;
}

.process-description {
  font-size: 20px;
  font-weight: 300;
  color: #363636;
  margin: 0 auto 60px;
  max-width: 900px;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.step {
  flex: 1 1 calc(20% - 20px);
  min-width: 220px;
  text-align: center;
  padding: 15px;
  position: relative;
}

.icons-container {
  width: 100px;
  height: 100px;
  background: #f0f4ff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.icons-container img {
  width: 60%;
  height: auto;
}

.step h3 {
  font-size: 18px;
  font-weight: bold;
  color: #0082EDF7;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #423D3D;
  line-height: 22px;
}

/* Dashed Arrows */
.dashed-arrow {
  width: 120px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.arrow-top {
  background-image: url('./img/arrow1.png');
  top: 30px;
  right: -70px;
}

.arrow-bottom {
  background-image: url('./img/arrow2.png');
  bottom: 155px;
  right: -69px;
}

.step:last-child .dashed-arrow {
  display: none;
}
/* Responsive: Tablet and below */
@media (max-width: 992px) {
  .process-heading {
    font-size: 36px;
  }
  .process-description {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .process-steps {
    justify-content: center;
    gap: 0px;
  }
  .step {
    flex: 1 1 calc(45% - 20px);
  }
  .arrow-top, .arrow-bottom {
    display: none;
  }
}
/* Responsive: Mobile phones */
@media (max-width: 600px) {
  .process-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .process-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .step {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
  .icons-container {
    width: 80px;
    height: 80px;
  }
  .step h3 {
    font-size: 16px;
  }
  .step p {
    font-size: 13px;
  }
}
@media (max-width:576px) {
  .process-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .process-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .step {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
  .icons-container {
    width: 80px;
    height: 80px;
  }
  .step h3 {
    font-size: 16px;
  }
  .step p {
    font-size: 13px;
  }
}
  /* counter section */
  .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #8B8B8B29;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.stat-box {
    flex: 1 1 200px;  /* Minimum width set kiya for responsiveness */
    max-width: 220px;  /* max limit for better visual balance */
    margin: 10px;
    padding: 10px;
}

.stat-number {
  font-size: 38px;
    font-weight: 700;
    color: #636363;
    padding-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #636363;
}
.stat-box {
  flex:  25%; 
  max-width: 22%;
}

/* Tablet Devices */
@media (max-width: 992px) {
    .stat-number {
        font-size: 38px;
    }
    .stat-label {
        font-size: 13px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
   
      .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        grid-auto-rows: auto;                 /* automatic row height */
        gap: 20px;
        text-align: center;
      }
   
    .stat-box {
        flex: 1 1 45%;  /* 2 boxes ek line me on small screens */
        max-width: 45%;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-label {
        font-size: 12px;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .stat-box {
        flex: 1 1 100%;  /* ek row me ek box on extra small screens */
        max-width: 100%;
    }
    .stat-number {
        font-size: 28px;
    }
    .stat-label {
        font-size: 11px;
    }
}
 /* shapingsection */
 .container-shaping {
  text-align: center;
  padding: 50px 20px;
  font-family: Source Sans Pro;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
}
.container-shaping span {
  color: #160682;
}

.blue-section {
  background-color: #297ef1;
  position: relative;
  height: 590px;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto 80px auto;
}

.content-box {
  background-color: #ffffff;
  padding: 125px 11px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 730px;
  width: 100%;
  height: 405px;
  position: absolute;
  top: 249px;
  left: 76px;
}
.content-box p {
  width: 585px;
  max-width: 100%;
  font-family: Manrope;
  font-weight: 400;
  font-size: 22px;
  line-height: 167%;
  text-align: center;
  margin-top: -88px;
  padding: 17px;
}


.images-container {
  position: absolute;
  bottom: 64px;
  right: 300px;
  width: 500px;
  max-width: 100%;
  height: auto;
}
.images-container img {
  width: 90%;
  height: auto;
  margin-left: 130px;
  margin-top: 58px;
  max-width: 100%;
}

.vertical-container {
  position: absolute;
  right: 31px;
  bottom: 63px;
}
.vertical-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: #FFFFFF;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  height: 362px;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 29px;
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
  .blue-section {
    height: 550px;
    width: 95%;
  }
  .content-box {
    top: 220px;
    left: 40px;
    padding: 80px 10px;
    height: auto;
  }
  .images-container {
    right: 200px;
    bottom: 50px;
  }
  .images-container img {
    margin-left: 80px;
    margin-top: 40px;
  }
}

@media (max-width: 992px) {
  .container-shaping {
    font-size: 50px;
  }
  .blue-section {
    height: 820px;
  }
  .content-box {
    position: static;
    margin: -30px auto;
    transform: none;
  }
  .images-container {
    position: static;
    margin: 20px auto;
    text-align: center;
  }
  .images-container img {
    margin: 0 auto;
  }
  .vertical-container {
    position: static;
    margin: 20px auto;
    text-align: center;
  }
  .vertical-text {
    writing-mode: horizontal-tb;
    height: auto;
  }
}

@media (max-width: 768px) {
  .container-shaping {
    font-size: 38px;
  }
  .content-box p {
    font-size: 18px;
  }
  .vertical-container img{
    display: none;
  }
  .vertical-text{
    display: none;
  }
}

@media (max-width: 576px) {
  .container-shaping {
    font-size: 28px;
  }
  .content-box p {
    font-size: 16px;
  }
  .vertical-text {
    font-size: 20px;
  }
  .vertical-container img{
   display: none;
  }
}

 /* offer section */

.paid-icon img {
  width: 80px;
  height: 80px;
  margin-top: -40px
}
.content h3 {
  font-family: Source Sans Pro;
font-weight: 600;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: rgba(98, 98, 98, 1);
padding-bottom: 10px;
}
@media (max-width: 768px) {
  .offer-container {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .offer-container {
      grid-template-columns: repeat(1, 1fr);
  }
}
.line-img img{
max-width: 100%;
}
.line-icon{
width: 16px;
height: 16px;
margin-left: 260px;
padding-top: 10px;
}
.content2 img {
  display: flex;
  margin-left: -100px;
  width: 8px;
  margin-bottom: -25px;
  margin-top: 22px;
}
.content2 h3{
  margin-left: -100px;
  font-family: Source Sans Pro;
font-weight: 600;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: rgba(98, 98, 98, 1);
}
.content2 p {
  margin-left: -191px;
  margin-top: -5px;
  font-size: 24px;
}
/* foundation section */
.foundation-section .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;          /* center the container */
  padding: 0 20px;         /* spacing from edges on smaller screens */
  box-sizing: border-box;  /* ensure padding doesn't break width */
}


.left-section {
  width: 40%;
}
.right-section {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-container {
  display: flex;
  align-items: center;
}
.mission-section {
  width: 525px;
  background-color: #8b8b8b2e;
  padding: 23px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: padding-left 0.3s ease-in-out;
}
.icon-container img {
  width: 70%;
}
.mission-section:hover {
  background-color: #d0e7ff;
  color: #636363;
}


.left-heading {
  background: linear-gradient(90deg, #160682, #0082ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  font-weight: 600;
}
.left-para {
  color: #8b8b8bcc;
  line-height: 35px;
  font-size: 17px;
}
.mission-head {
  color: #8b8b8b;
}
.mission-para {
  color: #8b8b8b;
}

/* CEO Section */
.ceo-section .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;          /* center container horizontally */
  padding: 0 20px;         /* padding for mobile view */
  box-sizing: border-box;  /* prevent padding overflow */
}

.text-box {
  width: 30%;
  color: #636363;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  transform: translateY(55px);
}
.text-box2 {
  width: 30%;
  color: #636363;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  margin-top: 110px;
}
.image-box {
  width: 30%;
  text-align: center;
}
.image-box img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
}
.quote {
  font-size: 40px;
  color: #b0c4de;
  font-weight: bold;
}
.ceo-name {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
  padding-top: 100px;
  color: #626262;
}
.ceo-title {
  text-align: center;
  font-size: 20px;
  color: #626262;
  font-weight: 600;
  margin: 0;
}
.line {
  width: 115px;
  height: 1px;
  margin: 0 auto;
}

/* Responsive Settings */

@media (max-width: 1200px) {
  .left-section,
  .right-section {
    width: 100%;
  }
  .mission-section {
    width: 100%;
  }
  .text-box2{
    width:auto;
    margin-top: 10px;
    text-align: center;
  }
  .left-heading{
    margin-top: 50px;
  }
  .ceo-section .text-box,
  .ceo-section .image-box {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .foundation-section .container {
    flex-direction: column;
    align-items: center;
  }
  .left-section {
    width: 90%;
    text-align: center;
    margin-top: -75px;
  }
  .right-section {
    width: 100%;
  }
  .mission-section {
    width: 100%;
  }
  .ceo-section .container {
    flex-direction: column;
    align-items: center;
  }
  .ceo-section .text-box,
  .ceo-section .image-box {
    width: 90%;
    text-align: center;
  }
  .ceo-name {
    padding-top: 0px;
  }
}

@media (max-width: 576px) {
  .left-heading {
    font-size: 32px;
    margin-top: 50px;
  }
  .left-para {
    font-size: 15px;
    line-height: 28px;
  }
  .mission-para {
    font-size: 14px;
  }
  .mission-section {
    padding: 15px;
  }
  .ceo-name {
    font-size: 26px;
    padding-top: 30px;
  }
  .ceo-title {
    font-size: 12px;
  }
}

/* pricing section */

.website h1 {
  margin-top: 150px;
  text-align: center;
  font-size: 65px;
  font-weight: 700;
}

.application {
  margin-top: 50px;
  text-align: center;
}

.application h1 {
  font-size: 65px !important;
  font-weight: 700;
}

.webpage {
  margin-top: 50px;
  text-align: center;
}

.webpage h1 {
  font-size: 65px;
  font-weight: 700;
}

.website span,
.application span,
.webpage span {
  color: #1a1faa;
}

.pricing-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.plan {
  background: white;
  border-radius: 15px;
  padding: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 390px;
  min-height: 550px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 10px solid #0082EDF7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.plan::before {
  content: "";
  width: 100%;
  height: 220px;
  background: #ddd;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  z-index: 0;
}

.plan h2 {
  position: relative;
  z-index: 1;
  color: #190682;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 600;
}

.plan .price {
  position: relative;
  z-index: 1;
  color: #190682;
  font-size: 70px;
  font-weight: 700;
  transform: translateY(-45px);
  margin-top: 50px;
}

.up-dollar {
  position: relative;
  top: -30px;
  color: #190682;
  font-size: 30px;
  font-weight: 700;
}

.ul-web {
  margin-top: auto;
  list-style: none;
  padding: 0 30px;
  text-align: center; /* ⬅ This will center align the list text */
}

.plan li {
  margin-bottom: 10px;
  display: block;  /* ⬅ No need for flex here */
  line-height: 30px;
}


.plan:hover ul li {
  color: #333;
}

.btn5 {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: white;
  color: #0082EDF7;
  font-weight: bold;
  border: 1px solid #0082EDF7;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
}

.btn5-2 {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: white;
  color: #0082EDF7;
  font-weight: bold;
  border: 1px solid #0082EDF7;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
  transform: translateY(122px);
}
.btn5-1 {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background-color: white;
  color: #0082EDF7;
  font-weight: bold;
  border: 1px solid #0082EDF7;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
  transform: translateY(160px);
}


.plan:hover .btn5,.btn5-1,.btn5-2 {
  background: linear-gradient(to bottom, #190682, #0082EDF7);
  color: white;
  border: 1px solid #0082EDF7;
}
.plan:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

/* TOP BACKGROUND CHANGE ON HOVER */
.plan:hover::before {
  background: linear-gradient(to bottom, #190682, #0082EDF7);
}

/* HEADING COLOR CHANGE ON HOVER */
.plan:hover h2 {
  color: white;
}

/* PRICE COLOR CHANGE ON HOVER */
.plan:hover .price {
  color: white;
}

/* DOLLAR COLOR CHANGE ON HOVER */
.plan:hover .up-dollar {
  color: white;
}

/* media query */
/* Responsive for Tablets (max-width: 992px) */
/* Responsive for Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .website h1,
  .application h1,
  .webpage h1 {
    font-size: 45px;
    margin-top: 100px;
  }

  .plan {
    width: 300px;
    min-height: 500px;
    padding: 20px;
  }

  .plan h2 {
    font-size: 25px;
    margin-top: 30px;
  }

  .plan .price {
    font-size: 55px;
    transform: none;
    margin-top: 20px;
  }

  .up-dollar {
    font-size: 25px;
    top: 0;
  }

  .btn5,
  .btn5-1,
  .btn5-2 {
    padding: 8px 20px;
    font-size: 14px;
    transform: none;
    margin-top: 20px;
  }

}

/* Responsive for Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .website h1,
  .application h1,
  .webpage h1 {
    font-size: 32px !important;
    margin-top: 120px;
  }
  .application-ul,.webpage-ul{
    margin-top: 100px;

  }
  .plan {
    width: 100%;
    min-height: 450px;
    padding: 18px;
  }

  .plan h2 {
    font-size: 22px;
    margin-top: 25px;
  }

  .plan .price {
    font-size: 45px;
    transform: none;
    margin-top: 15px;
  }

  .up-dollar {
    font-size: 22px;
    top: 0;
  }

  .btn5,
  .btn5-1,
  .btn5-2 {
    padding: 7px 18px;
    font-size: 13px;
    transform: none;
    margin-top: 20px;
  }

  .pricing-section {
    padding: 20px 10px;
    gap: 15px;
  }
  .ul-web{
    margin-top: 70px;
  }
    .plan:hover {
  transform: scale(1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}
.plan::before {
  content: "";
  width: 100%;
  height: 170px;

}
}




/* mobile side bar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  overflow-y: auto;
  transition: left 0.4s ease;
  padding: 20px;
  box-shadow: 3px 0 15px rgba(0,0,0,0.2);
  z-index: 1000;
}
.dropdown-content {
  display: none;
  padding-left: 15px;
  transition: all 0.3s ease;
}
.dropdown-item-mobile.open > .dropdown-content {
  display: block;
}
.sidebar.active {
  left: 0;
}
.dropdown-item-mobile {
  margin-bottom: 10px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #333;
}
.dropdown-toggle img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.dropdown-item-mobile.open .dropdown-toggle img {
  transform: rotate(180deg);
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 15px;
}
.dropdown-item-mobile.open .dropdown-content {
  max-height: 1000px;
}
.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}
.dropdown-content a img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.sidebar-links a img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}


/* top go arrow */
#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999;
    background-color: white;
    color: rgba(32, 122, 252, 1); /* Sky blue */
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none; /* Hidden initially */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease;
}

#scrollToTopBtn:hover {
    background-color: #f1f1f1;
}
@media (max-width: 600px) {
    #scrollToTopBtn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: 25px;
        right: 15px;
    }
}