@import url("https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");

body {
    box-sizing: border-box;
    object-fit: cover;
    background: linear-gradient(135deg, #1f0159, #1f0159);
}

a {
    color: #1f0159;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #06b6d4;
    --bg-light: #f0f9ff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --highlight-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

#services-container {
    position: absolute;
    top: 40px;
    left: 50%;
    width: max-content;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex!important;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-40%);
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  
  .service-box {
      flex: 0 0 auto;
      width: 15%;
  }
  
  .service-box a {
      text-decoration: none;
      color: #000;
      display: flex;
      align-items: center;
  }
  
  .service-box img {
      width: 50px;
      height: 50px;
      margin-right: 10px;
  }
  
  .service-title {
      font-size: 16px;
      font-weight: bold;
      color: #fff;
  }
  
  #services-menu:hover #services-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-40%);
  }
  
  .service-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4776E6, #8E54E9);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
  }
  
  .service-box:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .service-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    height: 100%;
  }
  
  .service-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .service-box:hover img {
    transform: scale(1.1);
  }
  
  .service-title {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .service-box:hover .service-title {
    color: #4776E6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    #services-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    #services-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Additional styling for mobile menu services */
  .mobile-menu .dropdown ul {
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-menu .dropdown.open ul {
    max-height: 500px;
  }
  
  .mobile-menu .dropdown ul li a {
    display: block;
    padding: 8px 15px;
    border-radius: 6px;
    background: #f8f9fa;
    transition: all 0.3s ease;
  }
  
  .mobile-menu .dropdown ul li a:hover {
    background: #e9ecef;
    transform: translateX(5px);
  }

  .mega-menu-item {
    position: relative;
  }
  
  .mega-menu-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .menu-icon {
    transition: transform 0.3s ease;
  }
  
  .mega-menu-item:hover .menu-icon {
    transform: rotate(180deg);
  }
  
  /* Enhanced mega menu container */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-50%);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
  }
  
  .service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 12px;
  }
  
  .service-box:hover::after {
    opacity: 1;
  }
  
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(71, 118, 230, 0.2);
  }
  
  .service-icon-container {
    background: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .service-box:hover .service-icon-container {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(71, 118, 230, 0.2);
  }
  
  .service-title {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin: 0 0 8px;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .service-description {
    display: block;
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 5px;
    height: 40px;
    overflow: hidden;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .service-box:hover .service-title {
    color: #4776E6;
  }
  
  .service-box:hover .service-description {
    opacity: 1;
  }
  
  .contact-btn {
    background: linear-gradient(90deg, #4776E6, #8E54E9);
    color: #fff;
  }
  
  .view-all-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
  }
  
  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
  }
  
  /* Back button for mobile */
  .mega-menu-back {
    display: none;
    grid-column: 1 / -1;
    background: transparent;
    border: none;
    color: #4776E6;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  /* Mobile optimizations */
  @media (max-width: 1200px) {
    .mega-menu {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .mega-menu {
      width: 95%;
      padding: 20px;
    }
    
    .service-description {
      display: none;
    }
    
    .service-icon-container {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 768px) {
    .mega-menu {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .mega-menu-back {
      display: block;
    }
    
    body.menu-open {
      overflow: hidden;
    }
  }
  
  /* Enhanced mobile menu services styling */
  .mobile-menu .dropdown ul {
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-menu .dropdown.open ul {
    max-height: 1000px;
  }
  
  .mobile-menu .dropdown ul li {
    margin: 10px 0;
  }
  
  .mobile-menu .dropdown ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
  }
  
  .mobile-service-icon {
    color: #4776E6;
    transition: transform 0.3s ease;
  }
  
  .mobile-menu .dropdown ul li a:hover {
    background: #e9ecef;
    transform: translateX(5px);
  }
  
  .mobile-menu .dropdown ul li a:hover .mobile-service-icon {
    transform: translateX(5px);
  }
  
  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    .mega-menu {
      background: #222;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
    
    .service-icon-container {
      background: #333;
    }
    
    .service-title {
      color: #e6e6e6;
    }
    
    .service-description {
      color: #bbb;
    }
    
    .service-box:hover .service-title {
      color: #5c89ff;
    }
    
    .view-all-btn {
      background: #333;
      color: #e6e6e6;
      border-color: rgba(255, 255, 255, 0.1);
    }
    
    .view-all-btn:hover {
      background: #444;
    }
    
    .mobile-menu .dropdown ul li a {
      background: #2d2d2d;
      color: #e6e6e6;
    }
    
    .mobile-menu .dropdown ul li a:hover {
      background: #333;
    }
  }


.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.blur-circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(37, 99, 235, 0.2);
    top: -50px;
    right: 15%;
}

.blur-circle-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(6, 182, 212, 0.15);
    bottom: 10%;
    left: 10%;
}

.horizontal-card {
    display: block;
    margin-bottom: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.horizontal-card .card-wrapper {
    display: flex;
    flex-direction: row;
    height: 150px;
}

.horizontal-card .blog-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.horizontal-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.horizontal-card:hover .blog-image img {
    transform: scale(1.08);
}

.horizontal-card .badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.horizontal-card .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.horizontal-card .badge.new {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.horizontal-card .badge.archived {
    background: linear-gradient(135deg, #9E9E9E, #757575);
}

.horizontal-card .blog-content {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

.horizontal-card .blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #757575;
}

.horizontal-card .category-text {
    position: relative;
    color: #2196F3;
    font-weight: 600;
    padding-left: 15px;
}

.horizontal-card .category-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #2196F3;
    border-radius: 50%;
}

.horizontal-card .date {
    opacity: 0.8;
}

.horizontal-card .blog-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2rem;
    color: #333;
    transition: color 0.3s ease;
    margin: 0;
}

.horizontal-card:hover .blog-title {
    color: #2196F3;
}

.horizontal-card .blog-description {
    font-size: 12px;
    line-height: 1rem;
    padding-top: 5px;
    color: #616161;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horizontal-card .read-more {
    align-self: flex-start;
    padding: 10px 22px;
    background: linear-gradient(135deg, #2196F3, #03A9F4);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-card .read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(33, 150, 243, 0.4);
}

@media (max-width: 768px) {
    .horizontal-card .card-wrapper {
        display: block;
        flex-direction: column;
        height: auto;
    }
    
    .horizontal-card .blog-image {
        flex: 0 0 200px;
    }
    
    .horizontal-card .blog-content {
        flex: auto;
    }
}

@media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 27px;
        line-height: 2rem;
    }

    .tescol9 {
        width: 100%;
    }

    .tescol3 {
        width: 100%;
    }

    .clientcontainer {
        width: -webkit-fill-available;
    }

    .clientcontainer .section-header .subtitle {
        font-size: 15px;
    }
    
    .blog-item {
        flex: 0 0 calc(100% - 30px);
    }
}

.offerbglayoutcontainer {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.offerrow {
    display: flex;
    flex-wrap: wrap;
}
.offercol3 {
    flex: 0 0 auto;
    width: 25%;
}
.offernewstext {
    display: flex;
    flex-wrap: wrap;
}
.offernewsupdate {
    flex: 0 0 auto;
    width: 50%;
}

.copyrighttextcenter {
    text-align: center;
}

.copyrightspace {
    padding: 20px 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    80% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

#management-software {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0;
}

.featuress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0;
}

#install-button img {
    width: 35px;
    height: auto;
}

.installtext {
    padding-left: 10px;
}

#install-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 125px;
    left: 15px;
    cursor: pointer;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #1f0159;
    box-shadow: 0 0 7px #1f0159;
    padding: 10px 20px;
    /* transform: rotate(270deg); */
}  

#installbtn {
    width: 35px;
    height: auto;
}

#installbtn {
    display: flex!important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.feature-item {
    background-color: #1f0159;
    border: none;
    border-top-right-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 20px 10px 20px;
    opacity: 0;
    color: #fff;
    animation: fadeInUp 1s ease-out forwards;
    transition: background 0.5s ease-in-out;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:hover {
    background: linear-gradient(45deg, #fff, #fff);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: #e2bd4a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4rem;
    text-align: justify;
}

.feature-item:hover {
    color: #333;
}

.cta {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.cta h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: #1f0159;
    margin-bottom: 15px;
}

.cta p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: #e2bd4a;
    border: 2px solid #1f0159;
    border-radius: 50px;
    color: #1f0159;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 10px 20px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

.btn-primary:hover {
    background-color: #1f0159;
    color: #e2bd4a;
    transform: scale(1.1);
}

#visitorCount {
    background-color: #fff;
    border: none;
    border-radius: 3px;
    color: #1f0159;
    padding: 5px 8px;
    margin-left: 5px;
}

.gallerybreadcrumbtext {
    padding-top: 100px;
    padding-bottom: 50px;
}

.gallerybreadcrumbtext h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.formrow {
    display: flex;
    flex-wrap: wrap;
}

.formcol6 {
    flex: 0 0 auto;
    width: 50%;
}

.blogposttext {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    color: #1f0159;
    padding: 20px;
}

.graphicscol12 {
    flex: 0 0 auto;
    width: 100%;
}

.graphicsimg {
    text-align: center;
}

.graphicsimg img {
    width: 500px;
    height: auto;
    margin: 0 auto;
}

.graphicsvideos video {
    position: absolute;
    opacity: .2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.graphicscontainer {
    padding: 20px;
}

.graphicsrow {
    display: flex;
    flex-wrap: wrap;
}

.graphicscol6 {
    flex: 0 0 auto;
    width: 50%;
}

.aboutspaces {
    padding: 0;
}

.seoscontainer {
    width: -webkit-fill-available;
    margin: 0 auto;
}

.seotexts {
    padding-left: 20px;
}

.seotexts h5 {
    color: #fff;
}

.seotexts h2 {
    color: #fff;
}

.seotexts p {
    color: #fff;
}

.seolink {
    list-style: none;
    padding: 0;
}

.seolink li {
    line-height: 1.5rem;
    color: #fff;
}

.seolayout {
    background-color: #fff;
    padding-top: 24px;
    padding-bottom: 24px;
}

.introductiontexts {
    padding-top: 100px;
}

.introductiontexts h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.introductiontexts p {
    text-align: justify;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.apicontainerbg {
    width: -webkit-fill-available;
    height: auto;
    background-color: #00000000;
    padding: 50px 70px 20px 70px;
    margin: 0 auto;
}

.apibg {
    background-image: url('../images/api.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 768px;
}

.apicontainers {
    width: -webkit-fill-available;
    height: auto;
    background-color: #fff;
    padding: 0 70px;
    margin: 0 auto;
}

.apiimg {
    text-align: center;
}

.apiimg img {
    width: 100%;
    height: auto;
}

.apilink {
    list-style: none;
    padding: 0;
}

.apilink li {
    line-height: 1.7rem;
    color: #000;
}

.apilink li strong {
    color: #000;
}

.apilinks {
    list-style: none;
    padding: 0;
}

.apilinks li {
    line-height: 1.7rem;
    color: #fff;
}

.apilinks li strong {
    color: #fff;
}

.apicontainer {
    width: -webkit-fill-available;
    height: auto;
    background-color: #fff;
    padding: 50px 70px 20px 70px;
    margin: 0 auto;
}

.introductiontext h2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.introductiontext p {
    text-align: justify;
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.ecommercevideos video {
    position: absolute;
    opacity: .2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
}

.hero-sections {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.ecommercetexts {
    color: white;
    max-width: 768px;
    z-index: 3;
    margin-top: 50px;
}

.ecommercetexts h5 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
}

.ecommercetexts h1 {
    font-size: 47px;
    font-weight: 700;
    line-height: 4rem;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 10px;
}

.ecommercetexts p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: capitalize;
    margin-top: 17px;
    margin-bottom: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

.btnecommerce a {
    text-decoration: none;
}

.apphr {
    margin-top: -4px;
    margin-bottom: 0;
}

.servicecontainers {
    width: 90%;
    padding: 50px 0;
    margin: 0 auto;
}

.servicecontainers h5 {
    color: #fff;
    padding-bottom: 15px;
    margin: 0;
}

.ecommercecntent h2 {
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
}

.ecommercecntentparagraph p {
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
}

.draft {
    text-align: center;
    margin: 10px;
}

.draft img {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 20px;
}

.ecommercecntents h2 {
    color: #fff;
}

.ecommercecntents p {
    color: #fff;
}

.ecommercerow {
    display: flex;
    flex-wrap: wrap;
}

.ecommercecol6 {
    flex: 0 0 auto;
    width: 50%;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: -webkit-fill-available;
    height: 100vh;
    margin-top: -40px;
}

.ecommercecontainer {
    position: initial;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fill-available;
    padding: 20px;
    z-index: 2; 
}

.ecommercetext {
    color: white;
    max-width: 1200px;
    z-index: 3;
    margin-top: 50px;
}

.ecommercetext h5 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
}

.ecommercetext h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 5.5rem;
    margin-top: 0;
    margin-bottom: 10px;
}

#ecommercechangingText {
    color: #ffcc00; 
}

.ecommercetext p {
    opacity: 0.8;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 50px;
}

.btnecommerce {
    background-color: #ffcc00;
    color: #1f0159;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
}

.btnecommerce:hover {
    background-color: #e6b800; 
}

.ecommercevideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
}

@media (max-width: 768px) {
    .ecommercetext h1 {
        font-size: 30px;
        line-height: 2.2rem;
    }

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

.rows {
    display: flex;
    flex-wrap: wrap;
}

.colmd3 {
    flex: 0 0 auto;
    width: 25%;
    margin-bottom: 20px;
}

.colmd12 {
    flex: 0 0 auto;
    width: 100%;
}

.cursor-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 2px solid #e31e70;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 9998;
  animation: ripple-animation 0.6s ease-out forwards;
}

@keyframes ripple-animation {
  to {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.custom-cursor {
  position: fixed;
  width: 25px;
  height: 25px;
  background-color: #e31e70;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease, background-color 0.2s, opacity 0.5s ease;
  opacity: 0;
}

.change-password-container {
    width: 40%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 80px auto 20px auto;
}

.change-password-container h1 {
    color: #302047;
    margin-top: 0;
    margin-bottom: 20px;
}

.update-profile-container {
    width: 40%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 80px auto 20px auto;
}

.update-profile-container h1 {
    color: #302047;
    margin-top: 0;
    margin-bottom: 20px;
}

/* .form-group {
    margin-bottom: 1.5rem;
} */

.form-group label {
    color: #302047;
}

.form-group input {
    width: -webkit-fill-available;
    height: auto;
}

.form-group button {
    width: -webkit-fill-available;
    height: auto;
}

.signin-btn img {
    width: 24px;
    height: auto;
    border-radius: 100px;
}

.profiletext {
    padding-left: 4px;
}

.herosectionflexcenter {
    display: flex;
    justify-content: left;
    align-items: center;
}

.logincontainer {
    width: 40%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px #333333;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 100px auto 50px auto;
}

.logintext h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: #302047;
    margin: 0;
}

.logintext p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4rem;
    color: #302047;
    margin-top: 10px;
    margin-bottom: 0;
}

.logincontainer form {
    margin-top: 20px;
}

.loginmb {
    margin-bottom: 1.5rem;
}

.loginmb label {
    color: #302047;
}

.loginmb input {
    width: -webkit-fill-available;
    height: auto;
    outline: none;
}

.form-check label {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #302047;
}

.loginmb .btnlogin {
    width: -webkit-fill-available;
    height: auto;
    margin-top: 20px;
    margin-bottom: 0;
}

.loginmb p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none!important;
}

.goog-te-gadget-simple {
    background-color: transparent!important;
    border: none!important;
    border-radius: 0!important;
    padding: 0!important;
    margin-right: 10px!important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    display: none!important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    display: none!important;
}

.goog-te-gadget-icon {
    background-image: url('../images/icon/india.webp')!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    width: 60px!important;
    height: 40px!important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    left: 0!important;
    top: 70px!important;
}

.col3 .borderservicetext {
    background-color: #fff;
    border-radius: 12px;
    padding-top: 20px;
    padding-bottom: 1px;
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
}

.col3 .borderservicetext:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #3498db, #9b59b6);
    border: 4px solid #fff;
    color: #fff;
}

.flip-container {
    width: 100%; 
    max-width: -webkit-fill-available; 
    height: 180px;
    perspective: 1000px;
    transition: transform 0.5s ease-in-out;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

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

.back {
    text-align: center;
    transform: rotateY(180deg);
    opacity: 0;
}

.flip-container:hover .back {
    opacity: 1;
}

.back p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0 20px;
}

.flip-container {
    perspective: 1000px; 
}
.flip-container:hover .flipper {
    transform: rotateY(180deg) scale(1.05);
}

.layoutcontainers {
    width: 90%;
    height: auto;
    background-color: #ffffff;
    border-radius: 100px;
    padding-top: 20px;
    margin: -4px auto; 
    box-sizing: border-box;
}

.animated-image {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-image.visible {
    opacity: 1;
    transform: scale(1);
}

.cbg {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    box-sizing: border-box;
}

.carousel {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    overflow: hidden;
    width: 100%;
}

.carousel li {
    display: inline-block;
    flex: 0 0 14%;
    transition: opacity 1s ease-in-out;
    box-sizing: border-box;
}

.carousel li img {
    width: 50px;
    height: auto;
}

.carousel li p {
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .carousel li {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .carousel li {
        flex: 0 0 50%;
    }
}

.mb2 {
    margin-bottom: 1.5rem;
}

input[type="checkbox"] {
    width: auto;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 0;
}

.cwd {
    padding-top: 50px;
    padding-left: 80px;
}

.imglayouts img {
    width: 100%;
    height: auto;
}

.cwd h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px;
}

.cwd p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 10px;
}

.breadcrumbcol .breadcrumb {
    position: relative;
    top: 40px;
    float: right;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #302047;
    padding: 5px 20px;
}

.dropdown {
    position: relative;
    display: block;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #302047;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    z-index: 1;
}

.dropdown ul li {
    border-bottom: 1px solid #fff;
    padding: 10px;
    text-align: left;
}

.dropdown ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.dropdown ul li a:hover {
    background-color: #444;
}

@media screen and (min-width: 768px) {
    .dropdown:hover ul {
        display: block;
    }

    .dropdown > a {
        display: block;
        text-decoration: none;
        color: #333;
    }

    .dropdown:hover > a {
        background-color: transparent;
    }
}

@media screen and (max-width: 767px) {
    .dropdown ul {
        display: none;
    }

    .dropdown.open ul {
        display: block;
    }
}

.dropdown-content img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px 40px;
    margin: 0 auto;
}

.mmparagraph {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #fff;
    padding-top: 10px;
    margin: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.breadcrumbtext h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    padding-bottom: 5px;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    opacity: 0;
    background: linear-gradient(135deg, #1f0159, #3b01ab);
    border: 3px solid #fff;
    min-width: 100%;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    padding: 20px;
    margin: 0;
}

.dropdown-content a {
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: transparent;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
}

.close-btns {
    background-color: #302047;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 12px;
    transition: color 0.3s ease;
}

strong {
    color: #302047;
}

.team-member:hover {
    background: linear-gradient(135deg, #e31e70, #db247561, #250169);
    border: 2px solid #fff;
    color: #fff;
}

.subscribelabel {
    font-size: 14px;
    font-weight: 600;
    color: #302047;
    margin: 0;
}

.btnsubscribe {
    cursor: pointer;
    width: 100%;
    background-color: #302047;
    border: 1px solid #302047;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
}

.popup-modals {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-contents {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    width: 60%;
    max-width: 800px;
    padding: 20px;
}

.popup-lefts {
    flex: 1;
    padding-right: 20px;
}

.popup-lefts img {
    max-width: 100%;
    border-radius: 10px;
}

.popup-rights {
    flex: 1;
}

.popup-rights h2 {
    font-size: 24px;
    font-weight: 600;
    color: #302047;
    margin-bottom: 20px;
}

.popup-rights p {
    font-size: 14px;
    line-height: 1.5rem;
}

.popup-rights form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment {
    background-color: #ecdeff;
    border: 1px solid #ecdeff;
    border-radius: 5px;
    color: #302047;
    padding: 10px 20px;
    margin: 10px 0;
}

.comment-form {
    padding-right: 20px;
}

.comment-form p {
    background-color: yellow;
    border: 1px solid yellow;
    border-radius: 5px;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5rem !important;
    padding: 10px;
    margin-bottom: 20px !important;
}

.comment-form .mb3 {
    margin: 0 20px 20px 0 !important;
}

.comments-section h3 {
    margin: 0;
}

.categorytext {
    color: #e2bd4a;
}

.post-container {
    width: 70%;
    height: auto;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 7px #30416a;
    margin: 120px auto 0 auto;
}

.post {
    padding: 50px;
}

.post h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
}

.post p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
    padding-top: 10px;
    margin: 0;
}

.post .categorytext {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.post img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 0 30px -15px #30416a;
    margin-top: 25px;
    margin-bottom: 25px;
}

.social-share {
    margin-top: 0;
}

.social-share h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0;
}

.social-icons li {
    display: inline;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: auto;
    text-align: center;
    line-height: normal;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: transparent;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    vertical-align: middle;
    margin: 0;
}

.thankyoutext {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-top: -20px;
}

.thankyoutext a {
    color: #e2bd4a;
    text-decoration: none;
}

.thankyou img {
    width: 40%;
    height: auto;
    padding-top: 40px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e2bd4a;
    border: 1px solid #e2bd4a;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #000;
    margin-bottom: 2px;
    margin-right: 5px;
}

.textdark {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.navrow {
    display: flex;
    flex-wrap: wrap;
}

.navcol8 {
    flex: 0 0 auto;
    width: 66.7%;
}

.navcol4 {
    flex: 0 0 auto;
    width: 33.3%;
}

.forminputs {
    width: -webkit-fill-available;
    height: auto;
    background-color: transparent;
    border: 1px solid #dadada;
    border-radius: 5px;
    outline: none;
    color: #000;
    padding: 10px;
    margin: 0;
}



.estimatebudget {
    width: 95%;
    height: auto;
    background-color: #1f0159;
    border: 1px solid #1f0159;
    border-radius: 5px;
    padding: 15px;
    margin-left: 8px;
}

.estimatebudget a {
    color: #fff;
    text-decoration: none;
}

.whatsappchat {
    width: 95%;
    height: auto;
    background-color: yellow;
    border: 2px solid #1f0159;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
    margin-left: 8px;
}

.whatsappchat a {
    font-weight: 600;
    color: #1f0159;
    text-decoration: none;
}

.mobile-menu ul {
    list-style-type: none;
    text-align: left;
    padding: 0 10px;
    margin-top: 10px;
}

.mobile-menu ul li {
    border-bottom: 1px solid #1f0159;
    padding: 10px 0;
}

.mobile-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #1f0159;
    text-decoration: none;
    text-transform: capitalize;
    padding: 0;
}

.mobile-menu ul li a:hover {
    color: #1f0159;
}

.close-btnss {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #1f0159;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.close-btnss:hover {
    color: #ccc;
}

.mobile-menu.active {
    display: block;
}

.mscontainer {
    width: 95%;
    margin: 0 auto;
}

.mswhite {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
}

.mstext h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 20px;
    margin: 0;
}

.mstext p {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
}

.featurescontainer {
    width: 95%;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease-in-out;
}

.col6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 50%;
}

.hcontentspace {
    padding-left: 40px;
}

.hcontentspace h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}

.hcontentspace h3 {
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    padding-top: 8px;
    margin: 0;
}

.headinglift h3 {
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    padding-bottom: 20px;
    padding-left: 40px;
    margin: 0;
}

.signin-btn a {
    color: #fff;
    text-decoration: none;
}

.headinglift h4 {
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    padding-top: 20px;
    padding-left: 40px;
    margin: 0;
}

.headinglift h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    background: linear-gradient(135deg, #e31e70, #d51c6e1a, #22065500);
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    margin: 0;
}

.hrfd {
    margin-top: 20px;
    margin-bottom: 20px;
}

.heading .layoutbtn {
    padding-left: 40px;
    display:flex;
    gap:20px;
}

.fcol2 {
    flex: 0 0 auto;
    width: 16.6%;
}

.btnwhites {
    background: linear-gradient(135deg, #e61e71, #db2475);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
}

.btnwhites a {
    color: #fff;
    text-decoration: none;
}

.btnlightwhites {
    background: transparent;
    border: 1px solid #e61e71;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
}

.btnlightwhites a {
    color: #e61e71;
    text-decoration: none;
}

.btnwhite {
    font-size: 16px;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    display: inline-block;
    transition: background 0.4s, color 0.4s;
    padding: 12px 24px;
    margin-top: 30px;
}

.btnlightwhite {
    font-size: 16px;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: background 0.4s, color 0.4s;
    padding: 12px 24px;
    margin-top: 30px;
}

.offerbglayout {
    background-color: #fff;
    border: none;
    padding: 20px;
}

.btnwhite a, .btnlightwhite a {
    text-decoration: none;
    color: inherit;
}

.imglayout {
    text-align: right;
}

.imglayout img {
    position: relative;
    bottom: -2px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.cwdbgcolor {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cwdtextcontent {
    padding-top: 50px;
}

.hbiadcontent h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.cwdborder {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    margin: 20px;
}

.cwdborder img {
    width: 100px;
    height: auto;
}

.hbiadcontent p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5rem;
    color: #fff;
    margin: 0;
}

.cwdtextwhite h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.cwdtextwhite p {
    color: #fff;
    margin: 0;
}

.cwdtextcontent .h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
}

.owdp {
    width: 25%;
    height: auto;
    border-bottom: 1px solid #fff;
    margin-top: 15px;
    margin-bottom: 22px;
    margin-left: 0;
    margin-right: 0;
}

.cwdtextcontent p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.layoutcontainer {
    width: 90%;
    height: auto;
    background: linear-gradient(135deg, #e31e70, #e31e70);
    border-radius: 100px;
    padding-top: 20px;
    margin: -64px auto 0 auto;
}

.col3 {
    flex: 0 0 auto;
    width: 25%;
}

.textcenter {
    text-align: center;
}

.countparagraph {
    color: #fff;
    margin: 0;
}

.aboutspace {
    padding: 20px 0;
}

.imglayouts {
    text-align: center;
}

.imglayouts img {
    width: 100%;
    height: auto;
}

.servicestext h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
}

.borderservicetext {
    text-align: center;
}

.borderservicetext img {
    width: 100px;
    height: auto;
}

.borderservicetext h4 {
    margin-top: 10px;
}

.servicecontainer {
    width: 90%;
    margin: 0 auto;
}

.col4 {
    flex: 0 0 auto;
    width: 33.3%;
}

@media (max-width: 768px) {
    .colsss3 {
        max-width: 100%;
    }
}

.col2, .cols2 {
    flex: 0 0 auto;
    width: 16.6%;
}

.clienttext img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

.prev, .next {
    position: absolute;
    top: 58%;
    width: auto;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background-color: rgba(48, 32, 71, 0.65);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
    padding: 7px 16px;
    transform: translateY(-50%);
}

.prev {
    left: 14px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.clienttext {
    text-align: center;
}

.cols3 {
    flex: 0 0 auto;
    width: 25%;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

@keyframes scaleRotate {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(50deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.borderservicetext img {
    animation: scaleRotate 1.5s ease-out forwards;
}

#backToTopBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    background-color: #fff;
    color: #302047;
    border: none;
    border-radius: 100%;
    padding: 10px 17px 12px 17px;
    cursor: pointer;
    font-size: 16px;
}

#backToTopBtn:hover {
    background-color: #fff;
}

.breadcrumbtext {
    padding-top: 20px;
    
}

.breadcrumbtext h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.breadcrumb {
    text-align: center;
    color: #fff;
}

.breadcrumb a {
    color: #302047;
    text-decoration: none;
}

.teamtext h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
}

.teamtext h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin: 0;
}

#team {
    text-align: center;
    padding: 20px 0;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    background-color: #f1f1f1;
    border-radius: 50%;
    width: 30px;
    height: 30px; /* Specify height explicitly for uniformity */
    object-fit: cover; /* Ensure consistent scaling */
}

.team-member .teamimg {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin: 10px 0;
}

.team-member p {
    font-size: 16px;
    margin: 10px 0 20px 0;
}

.social-links {
    list-style: none;
    padding-top: 20px;
    padding-left: initial;
    padding-right: initial;
    margin: 0 auto;
}

.social-links li {
    display: inline-block;
    margin: 0 2px;
}

.blogspace {
    padding: 20px 0;
}

.contacttexts, .contacttext {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-top: 20px;
    margin-right: 10px;
}

.contacttexts img, .contacttext img {
    width: 80px;
    height: 80px;
}

.contacttexts p, .contacttext p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    padding-left: 10px;
}

.ppy2 {
    padding-top: 2rem;
}

.map {
    border: 0;
    border-radius: 10px;
    width: 100%; /* Ensure responsive scaling */
}

.formtext {
    padding: 30px 20px 0 20px;
}

.formtext h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    padding-bottom: 10px;
    margin: 0;
}

.formtext h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    color: #fff;
    margin: 0;
}

.mb3 {
    margin-bottom: 1.5rem;
}

label {
    color: #fff;
}

.forminput {
    width: -webkit-fill-available;
    height: auto;
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: 5px;
    outline: none;
    color: #000;
    padding: 10px;
    margin: 0;
}

.btnsubmit {
    width: 100%;
    background-color: #e2bd4a;
    border: 1px solid #e2bd4a;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #302047;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnsubmit:hover {
    background-color: #d0aa42;
}

.mx3 {
    margin-right: 10px;
}

.developed a {
    color: #fff;
    text-decoration: none;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.popup-content {
    width: 50%;
    height: auto;
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
}

.popup-content h2 {
    padding-bottom: 10px;
    margin: 0;
}

.popup-content p {
    padding-bottom: 20px;
    margin: 0;
}

.close-btn {
    float: right;
    background-color: #302047;
    border: 1px solid #302047;
    border-radius: 100px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 0 10px 4px 10px;
}

.col6 .mb3 {
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 20px;
}

.close-btn:hover,
.close-btn:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

form input, form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin: 0;
}

form button {
  padding: 10px 20px;
  background-color: #302047;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #302047;
}

.cols {
    flex: 0 0 auto;
    width: 20%;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cols.show {
  opacity: 1;
  transform: translateY(0);
}

.cols:nth-child(1) {
  animation-delay: 0.2s;
}
.cols:nth-child(2) {
  animation-delay: 0.4s;
}
.cols:nth-child(3) {
  animation-delay: 0.6s;
}
.cols:nth-child(4) {
  animation-delay: 0.8s;
}
.cols:nth-child(5) {
  animation-delay: 1s;
}

.cols h4 {
    color: #302047;
    margin: 0;
}

.cols img {
    width: 100px;
    height: auto;
}

.imglayoutss {
    text-align: center;
}

.imglayoutss img {
    width: 100%;
    height: auto;
}

.gfchdsj {
    padding: 20px;
}

.colss6 {
    flex: 0 0 auto;
    width: 50%;
}

.breadcrumbs {
    color: #fff;
    margin-bottom: 25px;
}

.breadcrumbs a {
    color: #e2bd4a;
    text-decoration: none;
}

.appspace {
    padding-top: 0;
}

.apph5 {
    width: 18%;
    height: auto;
    background-color: #fff;
    border-radius: 50px;
    color: #1f0159;
    padding: 10px 20px;
}

.apph2 {
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin-top: 10px;
}

.imgdot {
    color: #fff;
    padding-top: 10px;
}

.imgdot img {
    width: 10px;
    height: auto;
}

.apph4 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.appdevelopmentimgs {
    text-align: center;
}

.appdevelopmentimgs img {
    width: 100%;
    height: auto;
}

.appdevelopmentimg {
    text-align: center;
}

.appdevelopmentimg img {
    width: 100%;
    height: auto;
}

.cols6 {
    flex: 0 0 auto;
    width: 50%;
}

.cols4 {
    display: flex;
    justify-content: left;
    align-items: center;
    flex: 0 0 auto;
    width: 33.3%;
}

.cols8 {
    flex: 0 0 auto;
    width: 66.7%;
}

.colsss6 {
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex: 0 0 auto;
    width: 50%;
}

.androidtext {
    padding-left: 80px;
}

.androidtext h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.androidtext h2 {
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 0;
}

.androidtext p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7rem;
    margin-top: 20px;
    margin-bottom: 0;
}

.adbgwhite {
    background-color: #fff;
    padding: 30px 0;
}

.popup-lefts video {
    width: 100%;
    height: auto;
}

.appoffertext h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.btnappcontact {
    float: right;
    background-color: #1f0159;
    border: 1px solid #1f0159;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
}

.btnappcontact a {
    color: #fff;
    text-decoration: none;
}

.colss4 {
    flex: 0 0 auto;
    width: 33.3%;
}

.mpanel {
    display: none;
}

.postrow {
    display: flex;
    flex-wrap: wrap;
}

.colsss3 {
    flex: 0 0 auto;
    width: 25%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.cols3:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.badges {
    position: absolute;
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.badge {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #FF6347;
    border-top-left-radius: 8px;
    color: #fff;
    padding: 5px 10px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.badge.featured {
    background-color: #FFD700;
}

.badge.new {
    background-color: #28a745;
}

.badge:hover {
    opacity: 0.8;
}

.appbgwhite {
    background-color: #fff;
}

header.scrolled .signin-btn {
    background-color: transparent;
    border: 1px solid #302047;
    color: #302047;
}

@media screen and (max-width: 768px) {

    .apilinks li {
         font-size: 14px;
    }
    
    .col6 .introductiontexts {
         padding-top: 20px;
    }
    
    .apicontainerbg {
         padding: 20px;
    }
    
    .introductiontext p {
         font-size: 14px;
         line-height: 1.5rem;
    }
    
    .apilink li {
        font-size: 14px;
    } 
    
    .introductiontext h2 {
        font-size: 20px;
    }
    
    .apicontainers {
        padding: 20px;
    }

    .apicontainer {
        padding: 20px;
    }
    
    .hero-sections {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .ecommercetexts h5 {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 10px;
    }
    
    .ecommercetexts h1 {
        font-size: 22px;
        font-weight: 700;
        line-height: 2rem;
    }
    
    .ecommercetexts p {
        font-size: 12px;
        text-align: justify;
        margin-top: 10px;
    }

    .mscontainer h2 {
        font-size: 18px;
        line-height: 1.8rem;
    }

    .featurescontainer h2 {
        font-size: 17px;
        line-height: 1.7rem;
    }

    #management-software {
        padding: 5px 0;
    }

    .feature-item h3 {
        font-size: 17px;
        line-height: 1.5rem;
    }

    .feature-item p {
        font-size: 12px;
    }

    .mstext p {
        font-size: 14px;
        line-height: 1.4rem;
    }
    
    .colmd3 {
        width: 100%;
    }

    .update-profile-container {
        width: 80%;
    }
    
    .change-password-container {
        width: 80%;
    }
    
    .logincontainer {
        width: -webkit-fill-available;
        margin: 80px 20px 20px 20px;
    }

    .logintext h1 {
        font-size: 20px;
    }

    .logintext p {
        font-size: 10px;
        line-height: 1rem;
    }

    .loginmb p {
        font-size: 10px;
    }

    .loginmb label {
        font-size: 12px;
    }    

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

    .goog-te-gadget-icon {
        width: 40px !important;
        height: 20px !important;
    }

    .contact-btns {
        font-size: 10px;
        padding: 10px;
    }

    .signin-btn {
        display: none;
    }

    .services-container {
        display: none;
    }

    .colsss3, .colss3, .cols3 {
        width: 100%;
    }

    .mpanel {
        position: fixed;
        display: block;
        bottom: 0;
        width: 100%;
        height: auto;
        background-color: #fff;
        padding: 10px;
        margin: 0;
    }

    .mrow {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .home img,
    .app img,
    .support img,
    .whatsapp img {
        display: block;
        width: 27px;
        height: auto;
        margin-left: 10px;
    }

    .mcol3 {
        flex: 0 0 25%;
        box-sizing: border-box;
    }

    .mcol3:last-child {
        margin-right: 0;
    }

    .androidtext {
        padding-left: 10px;
    }

    .adbgwhite {
        padding: 20px 0;
    }

    .btnappcontact {
        float: left;
        margin-top: 20px;
    }

    .colss4, .colsss6, .cols6 {
        width: 100%;
    }

    .appspace {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cols8, .cols4 {
        width: 100%;
    }

    .appdevelopmentimg {
        padding-top: 50px;
    }

    .appdevelopmentimgs {
        padding-top: 10px;
    }

    .btnlightwhite {
        font-size: 14px;
        padding: 5px 10px;
    }

    .apph2 {
        font-size: 30px;
    }

    .apph4 {
        font-size: 14px;
    }

    .imgdot {
        font-size: 14px;
    }

    .apph5 {
        width: 17%;
    }

    .socialmedia img {
        width: 30px;
    }

    .gfchdsj {
        padding: 20px 0;
    }

    .fcol2, .col4 {
        width: 100%;
    }

    .cwdborder img {
        width: 50px;
    }

    .cwdtextwhite p {
        font-size: 14px;
    }

    .hbiadcontent h2 {
        font-size: 18px;
    }

    .hbiadcontent p {
        font-size: 14px;
    }

    .carousel li img {
        width: 50px;
    }

    .cwdtextwhite h2 {
        font-size: 18px;
    }

    .cols2 {
        width: 50%;
    }

    .layoutcontainers {
        border-radius: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin: 50px auto 0 auto;
    }

    #install-button {
        display: none!important;
    }

    .cols h4 {
        font-size: 11px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .cwdtextcontent {
        padding-top: 0;
    }

    .cwdtextcontent .h2 {
        font-size: 24px;
    }

    .btnwhite {
        font-size: 14px;
        padding: 5px 10px;
        margin-top: 0;
    }

    .estimatebudget {
        width: -webkit-fill-available;
        outline: none;
        color: #fff;
        padding: 10px;
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .mobile-actions .whatsappchat {
        width: -webkit-fill-available;
        background-color: #e2bd4a;
        border: 2px solid #e2bd4a;
        outline: none;
        border-radius: 5px;
        color: #000;
        font-size: 14px;
        text-decoration: none;
        padding: 10px;
        margin-top: 10px;
        margin-right: 10px;
    }

    .dropdown ul {
        background-color: #e2bd4a;
        border-radius: 5px;
    }

    .mobile-menu .dropdown ul li {
        margin: 0;
    }

    .servicestext h2 {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.6rem;
    }

    .cols {
        width: 50%;
    }

    .imglayouts img {
        display: none;
    }

    .cwd h1 {
        font-size: 22px;
        line-height: 2rem;
    }

    .cwd p {
        text-align: justify;
    }

    .cwd {
        padding-top: 70px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .breadcrumbtext h1 {
        font-size: 48px;
        margin-bottom: 0;
    }

    .breadcrumbcol .breadcrumb {
        top: 14px;
        float: left;
        padding: 5px 10px;
    }

    .dropdown-content.show ul {
        top: 0 !important;
    }

    .dropdown-content img {
        background-color: transparent;
        border-radius: 0;
        padding: 0;
    }

    .mmparagraph {
        color: #000;
    }

    .dropdown-content {
        position: relative;
        text-align: left;
        padding: 10px 0;
    }

    .dropdown:hover .dropdown-content.show {
        display: inline-grid;
        justify-content: left;
        align-items: center;
        height: 193px;
    }

    .dropdown-content.show a {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.7rem;
        color: #fff;
    }

    .popup-lefts img {
        display: flex;
        max-width: 60%;
        height: auto;
        margin: 35px auto 0 auto;
    }

    .close-btns {
        position: absolute;
        top: 8px;
        right: 14px;
    }

    .popup-rights p {
        display: none;
    }

    .popup-contents {
        flex-wrap: wrap;
        width: -webkit-fill-available;
        padding: 10px;
    }

    .popup-lefts, .popup-rights {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
    }

    .post-container {
        width: 94%;
        border-radius: 20px;
        margin: 70px 10px 0 10px;
    }

    .socialmedia {
        padding-bottom: 24px;
    }

    .post {
        padding: 20px;
    }

    .post h1 {
        font-size: 17px;
        line-height: 1.5rem;
    }

    .mcol2 {
        flex: 0 0 auto;
        width: 20%;
    }
    
    .loginright p {
        font-size: 10px;
    }

    .post img {
        border-radius: 10px;
        margin-bottom: 0;
    }

    .col4 {
        width: 100%;
        margin-top: 60px;
        margin-bottom: 50px;
    }

    .mx3 {
        margin-right: 0;
    }

    .formtext {
        padding-left: 0;
    }

    .single-testimonial::before {
        left: -15px;
        top: -10px;
        width: 50px;
        height: 50px;
        background-position: 17px 16px;
    }

    .single-testimonial::after {
        right: -15px;
        bottom: -10px;
        width: 50px;
        height: 50px;
        background-position: 17px 16px;
    }

    .single-testimonial p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4rem;
        padding: 20px 0;
    }

    .client-info span {
        font-size: 6px;
    }

    .single-testimonial {
        width: 80%;
        border: 2px solid #fff;
        border-radius: 25px;
    }

    .col6 .mb3 {
        margin-left: 0 !important;
    }

    .teamtext h2 {
        font-size: 24px;
    }

    .team-member h3 {
        margin: 0;
    }

    .team-member p {
        margin: 0;
    }

    .fcol3 {
        flex: 0 0 auto;
        width: 100%;
    }

    .borderservicetext h4 {
        font-size: 10px;
        padding-top: 10px;
        margin: 0;
    }

    .cols3 {
        width: 100%;
    }

    .servicestext h5 {
        margin-top: 40px;
    }

    .borderservicetext {
        padding: 10px;
    }

    .blogtext h5 {
        font-size: 14px;
    }

    .col2 {
        width: 50%;
    }

    .flip-container {
        height: 130px;
    }

    .clienttext {
        padding: 10px 0;
        margin: 14px 8px 0 8px;
    }

    .blogtext h2 {
        font-size: 20px;
        line-height: 1.7rem;
    }

    .abouttext h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: normal;
    }

    .abouttext h5 {
        font-size: 15px;
        font-weight: 400;
    }

    .abouttext p {
        font-size: 14px;
        font-weight: 400;
    }

    header.scrolled .nav-menu ul {
        top: 0;
    }

    .mb3 {
        margin-bottom: 1rem;
    }

    .layoutcontainer {
        width: 95%;
        border-radius: 5%;
        padding: 10px;
        margin: 25px auto;
    }

    .col3 {
        flex: 0 0 auto;
        width: 50%;
    }

    .count {
        font-size: 30px;
    }

    .col6 {
        width: 100%;
    }

    .contact-btn {
        display: none;
    }

    .back p {
        font-size: 9px;
        line-height: 1rem;
        padding: 0;
    }

    .hcontentspace {
        padding-left: 20px;
    }

    .hcontentspace h3 {
        font-size: 14px;
        padding-top: 7px;
    }

    .headinglift h3 {
        font-size: 14px;
        padding-left: 20px;
    }

    .headinglift h2 {
        font-size: 17px;
        line-height: 1.5rem;
        padding-top: 17px;
        padding-bottom: 17px;
        padding-left: 20px;
    }

    .features {
        gap: 20px;
        padding: 0;
        margin: 0;
    }

    .cta h3 {
        font-size: 17px;
    }

    .cta p {
        font-size: 11px;
        line-height: 1.2rem;
        margin-bottom: 20px;
    }

    .cta a {
        position: relative;
        top: 14px;
    }

    .headinglift h4 {
        font-size: 14px;
        line-height: 1.5rem;
        padding-left: 20px;
    }

    .heading .layoutbtn {
        padding-left: 20px;
    }

    .colss6 {
        width: 100%;
    }

    .header-actions {
        margin-top: 0;
    }

    .nav-menu.active {
        display: block;
    }

    .open ul li a {
        color: #fff;
    }
    
    .ecommercecol6 {
        width: 100%;
    }
    
    .ecommercecntents h2 {
        font-size: 16px;
    }
    
    .ecommercecntents p {
        font-size: 14px;
        line-height: 1.5rem;
    }

    .open ul li {
        border-bottom: 1px solid #fff;
    }
    
    .seolayout {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .graphicscol6 {
        width: 100%;
    }
    
    .seolayout .layoutcontainer {
        border-radius: 0;
        margin: 0;
    }
    
    .graphicsimg img {
        width: 100%;
    }

    .imglayout img {
        display: none;
    }
}