@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.otf") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.otf") format("woff2");
  font-weight: bold;
  font-style: normal;
}

:root {
  --fontFamily: "Satoshi", sans-serif;
  --fontFamily2: "Outfit", sans-serif;

  --primary-color: #4e1df9;
  --secondary-color: #3498db;
  --light-bg: #f8f9fa;

  --blackColor: #111111;
  --paragraphColor: #666666;
  --card-title-fontSize: 24px;
  --fontSize: 16px;
  --transition: 0.5s;
  --boxShadow: rgba(114, 114, 114, 0.1) 0px 0px 8px;
}
/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: 80px;
}

a:focus,
a:hover {
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #111111;
  background-color: #f8f9fa;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}

p {
  font-family: var(--fontFamily);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--clr-para-text);
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 500;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  z-index: 1;
}

/* Browser Reset End */

/* Common CSS */
.section-padding {
  padding: 60px 0;
}

.no-pt {
  padding-top: 0 !important;
}

.no-pb {
  padding-bottom: 0 !important;
}

.common-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  width: 167px;
  height: 50px;
  background: #4e1df9;
  color: #f8f9fa;
  border-radius: 80px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-weight: 600;
  transition: all 0.2s ease-in;
  border: none;
}

.common-btn:hover {
  background: #ffffff;
  color: #3b16c7;
}

.heading-section {
  margin-bottom: 20px;
}

.heading-section .subheading {
  font-size: 14px;
  font-weight: 400;
  color: #f8f9fa;
  letter-spacing: 1.5px;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.heading-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0;
  font-family: var(--fontFamily2);
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px;
  }
}

/* Common CSS End */

/* ____________________Header Navbar section_____________________________ */

.navbar {
  background: #ffffff0d;
  backdrop-filter: blur(50px);
  height: 90px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .navbar-toggler {
  border: none; /* Remove default border */
  outline: none; /* Remove focus outline */
  box-shadow: none !important; /* Remove Bootstrap's focus shadow */
  background-color: transparent; /* Make background transparent */
  padding: 8px 12px; /* Adjust padding */
}

.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:active {
  outline: none;
  box-shadow: none !important;
  border: none;
}

.navbar .navbar-toggler i {
  font-size: 28px;
}

.navbar-nav .nav-link {
  color: #ececec;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 15px;
}

.nav-btn {
  background-color: #4e1df9;
  color: #ececec;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
}

.nav-btn:hover {
  background-color: #4a22db;
  color: #ececec;
}

.offcanvas {
  background: rgba(18, 18, 18, 0.6); /* Dark semi-transparent background */
  backdrop-filter: blur(20px); /* Smooth glass effect */
  color: white;
  border-left: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

/* Style the menu title */
.offcanvas-header h5 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f8f9fa; /* Light text */
}

/* Style the close button */
.offcanvas .btn-close {
  filter: invert(1); /* White close button */
  opacity: 0.8;
}

/* Style the menu links */
.offcanvas-body .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  color: #e1e1e1;
}

.offcanvas-body .nav-link:hover {
  background: rgba(255, 255, 255, 0.15); /* Subtle hover effect */
  color: #fff;
}

/* Optional: Adjust the spacing of items */
.offcanvas-body .navbar-nav {
  gap: 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
  background: linear-gradient(to bottom, #000000, #2938be);
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease forwards;
}
.terms-nav {
  background: linear-gradient(to bottom, #000000, #2938be);
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ____________________Hero section_____________________________ */

.hero-container {
  min-height: 100vh;
  width: 100%;
  padding: 40px 20px;
  background: url("../images/hero-bg.png") center center / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-content-wrapper {
  padding-top: 80px;
}

.left-container {
  max-width: 600px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.left-container h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--fontFamily2);
}

.left-container ul {
  padding-left: 30px;
  list-style: disc;
}

.left-container ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-form-container {
  background: rgba(0, 0, 0, 0.85);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 100%;
}

.hero-form-container h3 {
  text-align: center;
  font-family: var(--fontFamily2);
  font-weight: 600;
}

.hero-form-container p {
  text-align: center;
  font-weight: 600;
}

.hero-form-container .form-control {
  background-color: transparent;
  color: #f8f9fa;
  border: 0.73px solid #ffffff26;
}

.hero-form-container .form-control::placeholder {
  color: #f8f9fa;
  opacity: 70%;
  font-size: 12px;
}

.hero-form-container .form-select {
  background-color: #111111;
  border: 0.73px solid #ffffff26;
  opacity: 90%;
  font-size: 12px;
  color: white; /* Text color */
  appearance: none; /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='white'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.error {
  color: red;
  font-size: 0.875rem;
  margin-top: 5px;
}

.is-invalid {
  border-color: red !important;
}

.form-label span {
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }
  .left-container {
    max-width: 100%;
  }
  .left-container h2 {
    font-size: 2rem;
  }
  .left-container ul {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 40px 15px;
    align-items: center;
  }
  .left-container {
    text-align: left;
    align-items: center;
    gap: 15px;
  }
  .left-container h2 {
    font-size: 1.8rem;
  }
  .left-container ul li {
    font-size: 1rem;
  }
  .hero-form-container {
    max-width: 100%;
    padding: 20px;
  }
  .hero-form-container {
    display: none;
  }
  .hero-container {
    min-height: 80vh;
  }
}

@media (max-width: 576px) {
  .hero-container {
    flex-direction: column;
    padding: 30px 0;
  }
  .left-container {
    text-align: center;
    width: 100%;
  }
  .left-container h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .left-container ul {
    padding: 0;
    text-align: left;
  }
  .left-container ul li {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  .hero-form-container {
    max-width: 100%;
    padding: 15px;
  }
  .hero-form-container h3 {
    font-size: 1.2rem;
  }
  .hero-form-container p {
    font-size: 10px;
  }
  .hero-form-container .form-control,
  .hero-form-container .form-select {
    font-size: 0.9rem;
  }
  .btn.common-btn {
    font-size: 1rem;
    padding: 10px;
  }
  .hero-form-container {
    display: none;
  }
  .hero-container {
    min-height: 80vh;
  }
}

/* ____________________Why Choose Us Section_____________________________ */
.why-choose-us {
  background-color: #000000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.why-choose-us::before,
.why-choose-us::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(200px);
  z-index: 0;
}

.why-choose-us::before {
  background: #1d3af9;
  top: -100px;
  left: -150px;
}

.why-choose-us::after {
  background: #1d3af9;
  top: -150px;
  right: -150px;
}

/* Feature Box */
.feature-box {
  background: transparent;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.feature-box h4 {
  font-size: 18px;
}

.feature-box p {
  font-size: 14px;
  opacity: 70%;
}

.feature-box .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.icon img {
  max-width: 100%;
  height: auto;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .feature-box {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
  }
}

@media (max-width: 576px) {
  .why-choose-us .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-box {
    width: 100%;
    max-width: 280px;
    padding: 5px 10px;
  }
  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 14px;
    opacity: 70%;
    line-height: 1.2;
    margin-top: 5px;
  }

  .why-choose-us::before,
  .why-choose-us::after {
    width: 150px;
    height: 150px;
    filter: blur(100px);
  }

  .why-choose-us::before {
    top: -50px;
    left: -50px;
  }

  .why-choose-us::after {
    top: -50px;
    right: -50px;
  }
}

@media (max-width: 480px) {
  .why-choose-us::before,
  .why-choose-us::after {
    width: 100px;
    height: 100px;
    filter: blur(80px);
  }

  .why-choose-us::before {
    top: -30px;
    left: -30px;
  }

  .why-choose-us::after {
    top: -30px;
    right: -30px;
  }
}

/* ------------------------ Services Section ---------------- */
.our-services {
  background-color: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
}

/* Heading Section */
.our-services .service-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.our-services .subheading {
  max-width: 1200px;
}

.our-services .service-heading img {
  height: 50px;
  width: 50px;
}

.our-services .heading-section p {
  color: #000000;
  font-size: 16px;
}

.service__card__container {
  gap: 20px;
}

/* Service Card */
.service-card {
  width: 100%;
  max-width: 306px;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 5px -1px #00000040;
  border: 1px solid #00000033;
  text-align: left;
  margin: auto;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #f4f4f4;
  border: 1px solid #00000033;
}

.service-card img {
  width: 100%;
  max-width: 252px;
  height: 201px;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 5px;
}

/* Typography Adjustments */
.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.service-card p {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .our-services .service-heading {
    gap: 10px;
  }

  .our-services .service-heading img {
    height: 40px;
    width: 40px;
  }

  .our-services .heading-section p {
    font-size: 14px;
  }

  .service-card {
    max-width: 280px;
    /* height: 400px; */
  }

  .service-card h4 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service__price__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .service-card {
    max-width: 100%;
  }

  .service-card img {
    max-width: 100%;
  }
}

/* ____________________Pricing Section_____________________________ */

.pricing-section {
  background-color: #000000;
  color: #ececec;
  position: relative;
  overflow: hidden;
}

/* Adding color effects */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(200px);
  z-index: -99;
}

.pricing-section::before {
  background: #1d3af9;
  top: -100px;
  left: -213px;
}

.pricing-section::after {
  background: #1d3af9;
  bottom: -100px;
  right: -150px;
}

.pricing-section h3 {
  font-size: 35px;
  font-weight: 900;
  font-family: var(--fontFamily);
}
.pricing-section h3 span {
  color: var(--primary-color);
}

.pricing-container {
  padding: 50px 20px;
}
.pricing-card {
  background: #ffffff;
  color: #000000;
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: auto;
  border: 1.05px solid #dcdcdc;
  position: relative;
}

.silver-card {
  border-radius: 20px;
}

.best-selling-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #4e1df9;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 16px 0;
  border-radius: 32px 32px 5px 0;
  letter-spacing: 1px;
  transform: translateY(-80%);
}

.pricing-card ul {
  text-align: left;
  padding: 0;
  list-style: none;
}
.pricing-card ul li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  color: #181818;
}
.pricing-card ul li i {
  color: #4e1df9;
  margin-right: 10px;
}
.pricing-card .pricing-note {
  color: #181818;
  font-size: 15px;
}

.pricing-card .btn-primary {
  background: #4e1df9;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  transition: all 0.4s ease;
}
.pricing-card .btn-primary:hover {
  background: #ffff;
  border: 1px solid #00000033;
  color: #4e1df9;
}

.pricing-card .pricing-top-content {
  height: 140px;
  width: 100%;
  background-color: #ececec;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-card .pricing-top-content img {
  height: 32px;
  width: 32px;
}

.pricing-card .pricing-top-content h3 {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  text-align: center;
}
.pricing-card .pricing-top-content p {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.ecommerce-pricing-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ecommerce-pricing-top .top-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.ecommerce-pricing-top .top-badge h3 {
  font-size: 20px;
}

.enterprise-card {
  position: relative;
}
.enterprise-card img {
  position: absolute;
  top: -5px;
  left: -4px;
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
  }
  .pricing-section::before,
  .pricing-section::after {
    width: 200px;
    height: 200px;
    filter: blur(200px);
  }

  .pricing-section::before {
    top: -50px;
    left: -100px;
  }

  .pricing-section::after {
    bottom: -50px;
    right: -100px;
  }

  .pricing-card .pricing-top-content {
    width: 100%;
  }
  .pricing-section h3 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .pricing-container {
    padding: 0;
  }
  .pricing-card .pricing-top-content {
    width: 100%;
  }
  .pricing-section::before,
  .pricing-section::after {
    width: 100px;
    height: 200px;
    filter: blur(100px);
  }

  .pricing-section::before {
    top: -30px;
    left: -50px;
  }

  .pricing-section::after {
    bottom: -30px;
    right: -50px;
  }
  .silver-card {
    margin-top: 50px;
  }

  .pricing-card::before,
  .pricing-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(200px);
    z-index: -99;
  }

  .pricing-card::before {
    background: #1d3af9;
    top: -100px;
    left: -213px;
  }

  .pricing-card::after {
    background: #1d3af9;
    bottom: -100px;
    right: -150px;
  }
}
/* View Price Modal Otp */
.otp-container {
  gap: 5px;
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
}

#otpSection p {
  font-family: var(--fontFamily);
  font-size: 14px;
}
#otpSection a {
  color: #1d3af9;
}

/* Features section */

.feature {
  background-color: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.feature .feature-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.feature .heading-section .subheading {
  color: #666;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.feature-list {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 48px;
  height: 48px;
}

.feature-text h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-text p {
  color: #777;
  margin: 0;
  font-size: 16px;
}

.feature-image {
  flex: 1;
  max-width: 400px;
}

.feature-image img {
  width: 100%;
}

.feature-btn {
  width: 141px;
  height: 48px;
  text-align: center;
  margin-top: 30px;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  border: 1px solid #4e1df9;
}

.feature-btn:hover {
  background: #5548e6;
  color: #f8f9fa;
}

.feature-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    align-items: center;
  }
  .feature-item {
    align-items: center;
  }

  .feature-list {
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Banner Section */
.banner__section {
  background-color: #4e1df9; /* Primary color */
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Blur Effect */
.banner__section::before,
.banner__section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  filter: blur(100px);
  z-index: 0;
}

.banner__section::before {
  background: #ffffff;
  top: -100px;
  left: -150px;
}

.banner__section::after {
  background: #ffffff;
  top: -150px;
  right: -150px;
}

.banner__section h2 {
  color: #ffffff;
  max-width: 679px;
  font-size: 40px;
  font-weight: 500;
  font-family: var(--fontFamily2);
}

.banner__section p {
  color: #ffffffcc;
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner__section {
    height: auto;
    padding: 40px 20px;
  }

  .banner__section h2 {
    font-size: 22px;
    text-align: center;
  }

  .banner__section .btn {
    margin: 10px auto;
    text-align: center;
  }

  .banner__section p {
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  /* Blur Effect */
  .banner__section::before,
  .banner__section::after {
    width: 0;
    height: 0;
  }
}

/* About Us Section */
.aboutus {
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.aboutus::before,
.aboutus::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(150px);
  z-index: -999;
}

.aboutus::before {
  background: #4e1df9;
  top: 20px;
  left: -150px;
}

.aboutus::after {
  background: #4e1df9;
  top: -198px;
  right: -150px;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 15px;
}

.aboutus h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}

.aboutus p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffffcc;
  font-weight: 400;
  margin-bottom: 25px;
}

.aboutus .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aboutus .features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffffcc;
  font-weight: 400;
  font-size: 16px;
}

.aboutus .features img {
  width: 20px;
  height: 20px;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
  .text-section {
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
  }

  .aboutus h2 {
    font-size: 2.2rem;
  }

  .aboutus p {
    font-size: 1rem;
  }

  .aboutus::before,
  .aboutus::after {
    width: 250px;
    height: 250px;
    filter: blur(120px);
  }
}

@media (max-width: 768px) {
  .aboutus {
    padding: 60px 0;
  }

  .text-section {
    margin-bottom: 30px;
  }

  .aboutus h2 {
    font-size: 2rem;
  }

  .aboutus p {
    font-size: 0.95rem;
  }

  .aboutus .features span {
    font-size: 14px;
  }

  .aboutus::before {
    top: 0;
    left: -100px;
  }

  .aboutus::after {
    bottom: -100px;
    right: -100px;
  }
}

@media (max-width: 576px) {
  .aboutus {
    padding: 40px 0;
  }

  .aboutus h2 {
    font-size: 1.8rem;
  }

  .aboutus p {
    font-size: 0.9rem;
  }

  .aboutus .features span {
    font-size: 13px;
  }

  .aboutus .features img {
    width: 18px;
    height: 18px;
  }

  .aboutus::before,
  .aboutus::after {
    width: 200px;
    height: 200px;
    filter: blur(100px);
  }
}
/* Custom Styles for We Work For Section */
/* Custom Styles for We Work For Section */
.work-for {
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.work-for .heading-section .subheading {
  color: #ffffffcc;
  margin-top: 10px;
}

.work-for::before,
.work-for::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  filter: blur(100px);
  z-index: -999;
}

.work-for::after {
  background: #0077ff;
  top: 120px;
  right: -120px;
}

.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 20px 0;
  padding: 10px;
}

.work-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.1);
}

.work-item p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}

.industry-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  font-family: var(--fontFamily);
  color: #4e1df929;
  z-index: -1;
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .work-item {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .industry-text {
    font-size: 100px;
  }
}

@media (max-width: 991px) {
  .work-item {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .industry-text {
    font-size: 80px;
  }

  .work-for::before,
  .work-for::after {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }

  .work-for::after {
    top: 100px;
    right: -100px;
  }
}

@media (max-width: 768px) {
  .work-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .industry-text {
    font-size: 60px;
  }

  .work-for::before,
  .work-for::after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .work-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .industry-text {
    font-size: 40px;
  }

  .work-for::before,
  .work-for::after {
    width: 150px;
    height: 150px;
    filter: blur(60px);
  }

  .work-for::after {
    top: 50px;
    right: -50px;
  }

  .work-item img {
    width: 35px;
    height: 35px;
  }

  .work-item p {
    font-size: 13px;
  }
}

/* Our Portfolio Section */
.our-portfolio {
  background: #000;
  color: #fff;
  position: relative;
  padding: 50px 0;

  overflow: hidden;
}

.our-portfolio::before,
.our-portfolio::after {
  content: "";
  position: absolute;
  width: 307px;
  height: 307px;
  filter: blur(100px);
  z-index: -999;
}

.our-portfolio::before {
  background: #0077ff;
  top: 21px;
  left: -297px;
}

/* Portfolio Item Styling */
.portfolio-item {
  text-align: center;
  margin-bottom: 20px;
}

.laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.laptop-wrapper h5 {
  font-size: 22px;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

/* Laptop Image */
.laptop {
  width: 350px;
  height: 296px;
}

.laptop-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Screen Content */
.screen-content {
  position: absolute;
  top: 6%;
  width: 320px;
  height: 64%;
  overflow: hidden;
  transform: scale(0.98);
}

.screen-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 3s ease-in-out;
}

@media (max-width: 768px) {
  .our-portfolio::before,
  .our-portfolio::after {
    width: 100px;
    height: 200px;
    filter: blur(80px);
  }

  .our-portfolio::before {
    top: 20px;
    left: -150px;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
  .our-portfolio::before,
  .our-portfolio::after {
    width: 150px;
    height: 150px;
    filter: blur(60px);
  }

  .our-portfolio::before {
    top: 15px;
    left: -80px;
  }
}

/* Get in touch Modal */
.getInTouchModal {
  padding: 20px;
}

.getInTouchModal .modal-content {
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

/* Close button at top-right */
.getInTouchModal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 13px;
  z-index: 10;
}

/* Adjusting header section */
.getInTouch-top {
  margin-top: 0;
  text-align: center;
  padding-top: 10px;
}

.getInTouch-top h3 {
  color: #4e1df9;
  font-family: var(--fontFamily);
  font-weight: bolder;
  font-size: 36px;
}

.form-label-required {
  color: red;
}

.getInTouch-top p {
  font-family: var(--fontFamily);
  font-weight: 700;
  font-size: 16px;
}

/* Form styling */
.getInTouchModal .form-label {
  font-weight: 500;
  font-family: var(--fontFamily);
  font-size: 14px;
  color: #00000099;
}

.getInTouchModal .form-control {
  border-radius: 8px;
}

.getInTouchModal .form-control::placeholder {
  color: #000000cc;
  font-family: var(--fontFamily);
  font-weight: 400;
  font-size: 13px;
}

/* Button */
.getInTouchModal .common-btn {
  width: 100%;
  border: none;
}

.getInTouchModal .common-btn:hover {
  border: 1px solid #00000033;
}

.getInTouchModal .error {
  color: red;
  font-size: 14px;
}

.getInTouchModal .form-control.is-invalid {
  border-color: red;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .getInTouchModal {
    padding: 5px;
  }

  .getInTouchModal .modal-content {
    padding: 10px;
  }

  .getInTouch-top h3 {
    font-size: 30px;
  }

  .getInTouch-top p {
    font-size: 14px;
  }

  .getInTouchModal .btn-close {
    font-size: 14px;
  }
}


/* Request Callback Section */
.callback-section {
  background-color: #191818;
  padding: 60px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Title & Subtitle */
.callback-title {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin-bottom: 10px;
}
.callback-subtitle {
  color: #aaa;
  font-size: 16px;
  text-align: left;
}

/* Callback Form */
.callback-form {
  background-color: #ffffff14;
  border-radius: 28px;
  color: white;
  padding: 20px;
}

/* Form Labels & Inputs */
.callback-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.callback-form .form-control,
.callback-form .form-select {
  background-color: transparent;
  color: #f8f9fa;
  border: 0.73px solid #ffffff26;
}
.callback-form .form-control::placeholder {
  color: #f8f9fa;
  opacity: 70%;
  font-size: 12px;
}

.callback-form .form-select {
  background-color: #2d2c2c;
  font-size: 12px;
  color: white; /* Text color */
  appearance: none; /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='white'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

/* Submit Button */
.callback-form .common-btn {
  width: 100%;
}

/* Contact Info Section */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.contact-info .info-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 250px;
}
.contact-info .info-card p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff99;
}
.icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff14;
  border-radius: 50%;
  color: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0e0e0;
  margin-bottom: 30px;
}

.icon-box img {
  height: 16px;
  width: 16px;
}

/* 📌 Responsive Adjustments */
@media (max-width: 992px) {
  .callback-title {
    font-size: 30px;
  }
  .callback-subtitle {
    font-size: 16px;
  }
  .callback-form {
    margin: 0;
  }
  .callback-section .row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .callback-title {
    font-size: 26px;
  }
  .callback-subtitle {
    font-size: 16px;
  }
  .callback-form {
    padding: 15px;
    border-radius: 20px;
  }
  .contact-info .info-card {
    max-width: 100%;
  }

  .callback-section {
    padding: 7px 4px;
  }

  .contact-info .info-card p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .callback-title {
    font-size: 24px;
  }
  .callback-subtitle {
    font-size: 12px;
  }
  .callback-form {
    padding: 10px;
    border-radius: 15px;
  }
}

/* Footer Styling */
.footer-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Social Icons */
.social-icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons ul li a:hover img {
  transform: scale(1.1);
}

/* Copyright */
.copyright {
  font-size: 14px;
  font-weight: 600;
}

/* Policy Links */
.policy-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.policy-links ul li {
  font-size: 14px;
  font-weight: 600;
}

.policy-links ul .divider {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 576px) {
  .policy-links ul {
    flex-wrap: wrap;
    font-size: 12px;
    gap: 6px;
  }

  .policy-links ul li {
    font-size: 12px;
  }

  .social-icons ul li a img {
    width: 20px;
    height: 20px;
  }
}

/* Tearms & Conditions & Refund & Privacy Policy Pages Section */
.terms-conditions {
  background-color: #000000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.terms-conditions::before,
.terms-conditions::after {
  content: "";
  position: absolute;
  width: 307px;
  height: 307px;
  filter: blur(150px);
  z-index: -99;
}

.terms-conditions::before {
  background: #4e1df9;
  top: 21px;
  left: -205px;
}

.terms-conditions::after {
  background: #4e1df9;
  bottom: -198px;
  right: -150px;
}

.terms-container {
  padding: 20px;
}

.terms-container h2 {
  font-size: 36px;
  font-style: var(--fontFamily2);
  font-weight: 600;
}
.terms-container p {
  font-size: 14px;
  font-style: var(--fontFamily);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.terms-container ul li {
  list-style: disc;
  margin-bottom: 10px;
  font-size: 14px;
}

.terms-section ul {
  padding-left: 20px;
}

.terms-container h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fontFamily2);
  margin-bottom: 10px;
}

.terms-section {
  margin-bottom: 26px;
}

@media (max-width: 576px) {
  .terms-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .terms-container p {
    font-size: 12px;
    line-height: 1.8;
  }
  .terms-container h4 {
    font-size: 16px;
  }
  .terms-container {
    padding: 16px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Background Circle */
.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Button Hover Effect */
.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Smooth Pulse Animation */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Background Circle Animation */
@keyframes backgroundPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
