@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url("webfonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url("webfonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    src: url("webfonts/PlayfairDisplay-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 600;
    src: url("webfonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    src: url("webfonts/PlayfairDisplay-Bold.ttf") format("truetype");
}
body {
    font-family: "Poppins", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: var(--dark-color);
}
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #334155;
    --white: #ffffff;
    --gradient-primary: linear-gradient(90deg, #3f82fb 0%, #0f2453 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.09);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tstmnl-primary: #6366f1;
    --tstmnl-secondary: #8b5cf6;
    --faq-primary: #183571;
    --faq-secondary: #764ba2;
    --faq-accent: #8b5cf6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section {
    overflow: hidden;
}
html {
    scroll-behavior: smooth;
    font-display: swap;
}
body {
    color: var(--text-color);
    background: var(--white);
    line-height: 1.6;
}
a {
    text-decoration: none;
    transition: var(--transition);
}
.error-text {
    color: red;
    font-size: 13px;
    margin-top: 3px;
    display: block;
}
.input-error {
    border: 1px solid red !important;
}
.navbar {
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}
.navbar-brand img {
    max-height: 50px;
}
.nav-link {
    color: black;
    font-weight: 400;
    padding: 8px 16px !important;
    position: relative;
}
.nav-link:focus,
.nav-link:hover {
    color: #000;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}
.nav-link:hover {
    color: black !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: black;
}
@media (max-width: 992px) {
    .btn-gradient-primary {
        background: var(--gradient-primary);
        color: var(--white);
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: var(--transition);
        margin-top: 10px;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 27px 0;
    }
    .navbar-expand-lg {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
}
.btn-gradient-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}
.btn-gradient-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0f2453 0%, #3f82fb 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}
.btn-gradient-primary:hover::before {
    opacity: 1;
}
.btn-gradient-primary:hover {
    transform: translateY(-2px);
    color: white;
}
.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--gradient-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}
.btn-outline-light:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    padding: 0px;
}
.services h2 {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    position: relative;
    display: flex;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    font-size: 16px;
    justify-content: center;
    align-items: center;
}
.services h2:hover {
    transform: translateY(-2px);
    color: white;
}
.hero-section {
    position: relative;
    min-height: 90vh;
    align-items: center;
    overflow: hidden;
    display: flex;
    background-image: linear-gradient(-60deg, rgb(112, 82, 251) 0%, #0f2453 100%);
}
.bottom-shape img {
    width: 100%;
}
.down-bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.hero-section .container {
    z-index: 1;
}
.bg-shape-inner {
    position: absolute;
    bottom: -2px;
    width: 100%;
    z-index: 0;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.color-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.38;
    animation: blobFloat 24s ease-in-out infinite;
    will-change: transform;
}
.blob1 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, #ff9ec1 0%, transparent 70%);
    animation-delay: 0s;
}
.blob2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #ffb3d4 0%, transparent 70%);
    animation-delay: 5s;
}
.blob3 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, #c7ebfb 0%, #a0e7ff 40%, transparent 75%);
    animation-delay: 3s;
    opacity: 0.42;
}
.blob4 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #ffd1e8 0%, transparent 70%);
    animation-delay: 8s;
}
.blob5 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d0f3ff 0%, #c7ebfb 50%, transparent 75%);
    animation-delay: 10s;
    opacity: 0.4;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-right: 5em;
}
.experience-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff7d;
    color: var(--gradient-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideInLeft 1s ease;
    margin-bottom: 25px;
}
.hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: "Playfair Display", serif;
    animation: slideInLeft 1s ease 0.2s backwards;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: slideInLeft 1s ease 0.4s backwards;
}
.hero-buttons {
    animation: slideInLeft 1s ease 0.6s backwards;
    margin-bottom: 40px;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.stat-icon {
    font-size: 2.5rem;
    color: transparent;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 5px;
    display: inline-flex;
    align-items: baseline;
    font-family: "Poppins", sans-serif;
}
.stat-value {
    margin-right: 0.5rem;
}
.stat-plus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-color);
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.animated-text-wrapper {
    display: inline-block;
    vertical-align: bottom;
    min-width: 220px;
}
.animated-text {
    display: inline-block;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    font-weight: inherit;
    font-family: inherit;
    text-shadow: var(--shadow-sm);
    opacity: 0;
    animation: fadeInChar 0.2s ease forwards;
}
.animated-text.typing {
    opacity: 1;
}
@keyframes fadeInChar {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-text::after {
    content: "|";
    display: inline-block;
    margin-left: 3px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 30px 20px 0px rgba(0, 37, 93, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: slideInRight 1s ease;
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.form-group {
    margin-bottom: 15px;
}
.input-wrapper {
    position: relative;
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.form-textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 12px;
}
.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin: 15px 0;
    line-height: 1.5;
}
.submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #202c70;
    border-radius: 15px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: #202c70;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}
.industry-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    overflow: hidden;
}
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    opacity: 0.6;
    animation: rise 15s infinite ease-in;
}
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}
.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 14s;
    animation-delay: 2s;
}
.bubble:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 35%;
    animation-duration: 16s;
    animation-delay: 4s;
}
.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-duration: 13s;
    animation-delay: 1s;
}
.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 65%;
    animation-duration: 15s;
    animation-delay: 3s;
}
.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-duration: 11s;
    animation-delay: 5s;
}
.bubble:nth-child(7) {
    width: 55px;
    height: 55px;
    left: 90%;
    animation-duration: 17s;
    animation-delay: 2s;
}
@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateX(100px) scale(1.2);
    }
    100% {
        bottom: 110vh;
        transform: translateX(-50px) scale(0.8);
        opacity: 0;
    }
}
.content-wrapper {
    position: relative;
    z-index: 2;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Playfair Display", serif;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.industry-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.industry-btn {
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.industry-btn:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}
.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.6s ease-out backwards;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.industry-card:nth-child(1) {
    animation-delay: 0.1s;
}
.industry-card:nth-child(2) {
    animation-delay: 0.2s;
}
.industry-card:nth-child(3) {
    animation-delay: 0.3s;
}
.industry-card:nth-child(4) {
    animation-delay: 0.4s;
}
.industry-card:nth-child(5) {
    animation-delay: 0.5s;
}
.industry-card:nth-child(6) {
    animation-delay: 0.6s;
}
.industry-card:nth-child(7) {
    animation-delay: 0.7s;
}
.industry-card:nth-child(8) {
    animation-delay: 0.8s;
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.industry-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25);
}
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.industry-card:hover .card-image {
    transform: scale(1.1);
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    transition: all 0.5s ease;
}
.industry-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 20px;
}
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    font-family: "Poppins", sans-serif;
}
.cta-wrapper {
    text-align: center;
    margin-top: 60px;
    animation: fadeInUp 1.5s ease-out;
}
.down-bg img {
    filter: contrast(0.9);
}
.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-primary);
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    .industry-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .card-image-wrapper {
        height: 250px;
    }
    .card-title {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .tech-section .tech-section-header p {
        max-width: 100% !important;
    }
    .faq-header p {
        font-size: 1rem;
        max-width: 100% !important;
        line-height: 1.5;
    }
    .oss_service_icon {
        margin: 0 auto 16px;
    }
    .oss_service_title br {
        display: none;
    }
    .footer-social {
        justify-content: center !important;
    }
    .scroll-indicator {
        bottom: 60px;
    }
    .cta-wrapper {
        margin-top: 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .card-image-wrapper {
        height: 320px;
    }
    .card-title {
        font-size: 1.2rem;
    }
}
.oss_services_wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #ffffff 100%);
    padding: 60px 0;
    min-height: 100vh;
}
.oss_services_title {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}
.oss_services_subtitle {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
}
.oss_services_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}
.oss_service_card {
    background: linear-gradient(-60deg, #11295c 0%, rgb(60 124 240) 100%);
    padding: 40px 25px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}
.oss_service_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    z-index: 1;
}
.oss_service_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
.oss_service_icon i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oss_service_title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}
.oss_service_desc {
    font-size: 0.95rem;
    color: #f2f2f2;
    line-height: 1.6;
    margin: 0;
}
.oss_enquiry_btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.oss_enquiry_btn:hover {
    transform: scale(1.05);
}
.oss_enquiry_btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: oss_shine 2s infinite;
}
@keyframes oss_shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}
.oss_btn_container {
    text-align: center;
}
@media (max-width: 992px) {
    .scroll-indicator {
        bottom: 0px;
    }
    .oss_services_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .industry-card:hover .card-overlay {
        padding: 20px 20px;
    }
    .oss_services_title {
        font-size: 2rem;
    }
    .oss_services_subtitle {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .industry-section {
        padding: 50px 0;
    }
    .oss_services_wrapper {
        padding: 30px 0;
    }
    .oss_services_grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin: 0 15px;
    }
    .oss_services_title {
        font-size: 1.6rem;
    }
    .oss_services_subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    .oss_service_card {
        padding: 40px 25px;
    }
    .oss_service_icon {
        width: 70px;
        height: 70px;
        font-size: 45px;
    }
    .oss_service_title {
        font-size: 1.2rem;
    }
    .oss_enquiry_btn {
        padding: 12px 35px;
        font-size: 1rem;
        margin-top: 40px;
    }
}
@media (max-width: 500px) {
    .oss_services_title {
        font-size: 1.3rem;
    }
    .oss_services_subtitle {
        font-size: 1.1rem;
    }
    .oss_service_card {
        padding: 35px 20px;
    }
    .oss_enquiry_btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}
.oss_brand h1 {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.subtitle {
    font-size: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .oss_brand h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
}
.brands-container {
    padding: 60px 0;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
.brand-card {
    position: relative;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.brand-card:nth-child(5n) {
    border-right: none;
}
.brand-card:nth-last-child(-n + 5) {
    border-bottom: none;
}
.brand-card:hover {
    z-index: 10;
}
.brand-logo {
    max-width: 100%;
    max-height: fit-content;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}
@media (max-width: 1200px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .brand-card:nth-child(5n) {
        border-right: 1px solid #e0e0e0;
    }
    .brand-card:nth-child(4n) {
        border-right: none;
    }
    .brand-card:nth-last-child(-n + 5) {
        border-bottom: 1px solid #e0e0e0;
    }
    .brand-card:nth-last-child(-n + 4) {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-card:nth-child(4n) {
        border-right: 1px solid #e0e0e0;
    }
    .brand-card:nth-child(3n) {
        border-right: none;
    }
    .brand-card:nth-last-child(-n + 4) {
        border-bottom: 1px solid #e0e0e0;
    }
    .brand-card:nth-last-child(-n + 3) {
        border-bottom: none;
    }
    .oss_brand h1 {
        font-size: 2rem;
    }
    .brand-card {
        min-height: 140px;
        padding: 30px 15px;
    }
}
@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-card:nth-child(3n) {
        border-right: 1px solid #e0e0e0;
    }
    .brand-card:nth-child(2n) {
        border-right: none;
    }
    .brand-card:nth-last-child(-n + 3) {
        border-bottom: 1px solid #e0e0e0;
    }
    .brand-card:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .oss_brand h1 {
        font-size: 1.5rem;
    }
}
.tech-section {
    background: linear-gradient(-60deg, rgb(112, 82, 251) 0%, #0f2453 100%);
    padding: 60px 0 80px 0px;
    position: relative;
    overflow: hidden;
    background-image: url("Images/hosting-overlay.webp");
}
.tech-section .tech-section-header p {
    max-width: 80%;
    margin-bottom: 3em;
    color: #fff;
    opacity: 0.9;
}
.tech-section .faq-badge::before,
.faq-badge::after {
    background: linear-gradient(90deg, transparent, #fff, transparent) !important;
}
.tech-section .faq-header h1 {
    background: linear-gradient(135deg, #fff 0%, #ffffffa6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    animation: softDrift 30s ease-in-out infinite alternate;
}
@keyframes softDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, -20px) scale(1.05);
    }
    100% {
        transform: translate(-10px, 15px) scale(1);
    }
}
@keyframes gradientShift {
    0% {
        background-position: 30% 30%;
        transform: scale(1);
    }
    50% {
        background-position: 70% 70%;
        transform: scale(1.1);
    }
    100% {
        background-position: 30% 30%;
        transform: scale(1);
    }
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}
.tech-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #e7e7e7;
    padding: 25px 10px;
    text-align: center;
    transition:
        transform 0.35s ease,
        border-color 0.4s ease;
}
.tech-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
}
.tech-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
}
.tech-card:hover img {
    transform: scale(1.15);
}
.tech-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}
.tstmnl-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url(Images/map.webp);
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: center center;
}
.tstmnl-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    z-index: 0;
}
.tstmnl-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
.tstmnl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tstmnl-badge::before,
.tstmnl-badge::after {
    content: "●";
    font-size: 0.5rem;
    color: #8b5cf6;
}
.tstmnl-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: black;
    font-family: "Playfair Display, sans-serif ";
    margin: 0;
}
.tstmnl-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 20px;
}
.tstmnl-slider-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tstmnl-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.tstmnl-card {
    position: absolute;
    width: 450px;
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    will-change: transform, opacity;
}
.tstmnl-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.tstmnl-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f2f8;
}
.tstmnl-client-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}
.tstmnl-client-info p {
    font-size: 0.95rem;
    color: var(--tstmnl-primary);
    margin: 0;
}
.tstmnl-quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}
.tstmnl-rating {
    display: flex;
    gap: 5px;
}
.tstmnl-star {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
}
.tstmnl-card[data-position="left"] {
    left: 0;
    top: 50%;
    transform: translate(0, -50%) scale(0.85) rotate(-8deg);
    opacity: 0.6;
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tstmnl-card[data-position="center"] {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tstmnl-card[data-position="right"] {
    right: 0;
    left: auto;
    top: 50%;
    transform: translate(0, -50%) scale(0.85) rotate(8deg);
    opacity: 0.6;
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tstmnl-card[data-position="hidden-left"] {
    left: -100%;
    right: auto;
    top: 50%;
    transform: translate(0, -50%) scale(0.7) rotate(-15deg);
    opacity: 0;
    z-index: 0;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tstmnl-card[data-position="hidden-right"] {
    right: -100%;
    left: auto;
    top: 50%;
    transform: translate(0, -50%) scale(0.7) rotate(15deg);
    opacity: 0;
    z-index: 0;
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tstmnl-progress-bar {
    width: 450px;
    height: 4px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 2px;
    margin: 25px auto 0;
    overflow: hidden;
    position: relative;
}
.tstmnl-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: tstmnl-progress 7s linear;
}
@keyframes tstmnl-progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.tstmnl-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.tstmnl-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 0px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.tstmnl-nav-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #fff;
    border-top: 2.5px solid #fff;
    transition: border-color 0.3s ease;
}
.tstmnl-nav-btn.tstmnl-prev::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}
.tstmnl-nav-btn.tstmnl-next::after {
    transform: rotate(45deg);
    margin-right: 3px;
}
.tstmnl-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}
.tstmnl-nav-btn:hover::after {
    border-color: white;
}
@media (max-width: 1200px) {
    .tstmnl-card {
        width: 400px;
    }
    .tstmnl-progress-bar {
        width: 400px;
    }
}
@media (max-width: 992px) {
    .tstmnl-slider-wrapper {
        height: 500px;
    }
    .tstmnl-card {
        width: 350px;
    }
    .tstmnl-progress-bar {
        width: 350px;
    }
}
@media (max-width: 768px) {
    .tstmnl-section {
        padding: 30px 0;
    }
    .tstmnl-header h2 {
        font-size: 2.2rem;
    }
    .tstmnl-slider-wrapper {
        height: 450px;
    }
    .tstmnl-card {
        width: 90%;
        max-width: 400px;
        padding: 30px;
    }
    .tstmnl-progress-bar {
        width: 90%;
        max-width: 400px;
    }
}
@media (max-width: 576px) {
    .tstmnl-header h2 {
        font-size: 1.8rem;
    }
    .tstmnl-slider-wrapper {
        height: 500px;
    }
    .tstmnl-card {
        padding: 25px;
    }
    .tstmnl-avatar {
        width: 60px;
        height: 60px;
    }
    .tstmnl-client-info h3 {
        font-size: 1.1rem;
    }
    .tstmnl-quote-text {
        font-size: 0.95rem;
    }
}
.faq-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #f2f7fe;
}
.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.05) 0%, transparent 60%);
    z-index: 0;
    animation: faq-gradient-float 20s ease-in-out infinite;
}
@keyframes faq-gradient-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}
.faq-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 20px;
}
.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.faq-badge::before,
.faq-badge::after {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--faq-primary), transparent) !important;
}
.faq-header h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-header p {
    font-size: 1.1rem;
    color: #232323;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 2em;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: #183571e3;
}
.faq-item.faq-active {
    border-color: var(--faq-primary);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.faq-question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--faq-primary), var(--faq-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.faq-item.faq-active .faq-question::before {
    opacity: 1;
}
.faq-question-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3748;
    padding-right: 30px;
    transition: color 0.3s ease;
}
.faq-item.faq-active .faq-question-text {
    color: var(--faq-primary);
}
.faq-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.faq-item.faq-active .faq-icon {
    background: var(--gradient-primary);
    transform: rotate(180deg);
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #718096;
    transition: all 0.3s ease;
}
.faq-icon::before {
    width: 14px;
    height: 2.5px;
}
.faq-icon::after {
    width: 2.5px;
    height: 14px;
}
.faq-item.faq-active .faq-icon::before,
.faq-item.faq-active .faq-icon::after {
    background: white;
}
.faq-item.faq-active .faq-icon::after {
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
}
.faq-item.faq-active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px 30px;
    opacity: 1;
}
.faq-answer-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 5px;
    border-left: 3px solid rgba(102, 126, 234, 0.2);
    padding-left: 20px;
}
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.faq-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}
.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}
.faq-cta p {
    font-size: 1.05rem;
    color: #718096;
    margin-bottom: 25px;
}
.faq-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: white;
}
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 0;
    }
    .faq-header h2 {
        font-size: 2.2rem;
    }
    .faq-header p {
        font-size: 1rem;
    }
    .faq-question {
        padding: 20px;
    }
    .faq-question-text {
        font-size: 1.05rem;
    }
    .faq-item.faq-active .faq-answer {
        padding: 0 20px 25px 20px;
    }
    .faq-answer-text {
        font-size: 0.95rem;
    }
    .faq-cta {
        padding: 30px 20px;
    }
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    .faq-badge {
        font-size: 0.8rem;
    }
    .faq-question {
        padding: 18px;
    }
    .faq-question-text {
        font-size: 1rem;
    }
    .faq-icon {
        width: 30px;
        height: 30px;
    }
    .faq-cta h3 {
        font-size: 1.3rem;
    }
    .faq-cta p {
        font-size: 0.95rem;
    }
}
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: faq-fade-in 0.6s ease forwards;
}
@keyframes faq-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}
.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}
.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}
.faq-item:nth-child(8) {
    animation-delay: 0.8s;
}
.sticky-social {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    perspective: 1000px;
}
.sticky-social .social-icon {
    position: relative;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotateX(0deg) rotateY(0deg);
}
.sticky-social .social-icon:hover {
    transform: rotateX(-15deg) rotateY(15deg) scale(1.1);
}
.sticky-social .icon-face {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sticky-social .icon-image {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}
.sticky-social .social-icon:hover .icon-image {
    transform: scale(1.2);
}
.sticky-social .icon-base {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translateZ(-5px) scale(0.9);
    filter: blur(10px);
    transition: all 0.4s ease;
}
.sticky-social .social-icon:hover .icon-base {
    transform: translateZ(-8px) scale(1.1);
    filter: blur(15px);
}
.sticky-social .number-display {
    position: absolute;
    left: 85px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: #220049;
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
    backdrop-filter: blur(10px);
}
.sticky-social .number-display::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 8px solid #220049;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.sticky-social .social-icon:hover .number-display {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.sticky-social {
    animation: float 4s ease-in-out infinite;
}
@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
}
@media (max-width: 768px) {
    .sticky-social {
        left: 10px;
        bottom: 10px;
        gap: 1px;
    }
    .sticky-social .social-icon,
    .sticky-social .icon-face,
    .sticky-social .icon-base {
        width: 60px;
        height: 60px;
    }
    .sticky-social .icon-image {
        width: 50px;
        height: 50px;
    }
    .sticky-social .number-display {
        left: 75px;
        font-size: 12px;
        padding: 10px 15px;
    }
}
@media (max-width: 480px) {
    .sticky-social .sticky-social {
        left: 10px;
        bottom: 10px;
        gap: 0px;
    }
    .sticky-social .social-icon,
    .sticky-social .icon-face,
    .sticky-social .icon-base {
        width: 55px;
        height: 55px;
    }
    .sticky-social .icon-image {
        width: 30px !important;
        height: 30px;
    }
    .sticky-social .number-display {
        left: 70px;
        font-size: 11px;
        padding: 8px 12px;
    }
}
.sticky-social .social-icon:hover {
    transform: rotateX(-15deg) rotateY(15deg) scale(1.1) translateZ(20px);
}
.sticky-social .social-icon .icon-face img.icon-image {
    margin: 0;
    padding: 0;
    width: 50px;
}
.footer {
    background: linear-gradient(90deg, #0f2453 0%, #3f82fb 100%);
    color: var(--white);
    padding-top: 50px;
    overflow: hidden;
}
.footer:before {
    z-index: -1;
    content: "";
    width: 100%;
    height: 500px;
    position: absolute;
    top: 80px;
    left: 0px;
    opacity: 0.1;
    background: url("Images/ftr-shape.webp") 0% 30% / 100% no-repeat transparent;
}
.contact_inFOO .footer-links i {
    font-size: 1.3rem;
}
.contact_inFOO .footer-links a:hover {
    padding-left: 2px !important;
}
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-stats {
    display: flex;
    gap: 30px;
}
.footer-stat-item h4 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}
.footer-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}
.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #fff !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer-links i {
    font-size: 0.7rem;
}
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 15px;
}
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-form .btn {
    padding: 12px 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}
.footer-bottom {
    padding: 20px 0;
}
.copyright {
    color: #fff;
    margin: 0;
}
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.footer-bottom-links a:hover {
    color: var(--white);
}
@media (max-width: 500px) {
    .navbar {
        padding: 12px 0;
    }
    .navbar-brand img {
        max-height: 45px;
    }
    .navbar-toggler-icon {
        background-image: none !important;
    }
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        background-color: black;
        width: 26px;
        height: 2.5px;
        display: block;
        border-radius: 5px;
        transition: 0.3s ease;
    }
    .navbar-toggler-icon {
        position: relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
    }
    .navbar-toggler-icon::before {
        top: -7px;
    }
    .navbar-toggler-icon::after {
        top: 7px;
    }
    .navbar-toggler.open .navbar-toggler-icon {
        background-color: transparent;
    }
    .navbar-toggler.open .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    .navbar-toggler.open .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 22px;
        flex-wrap: nowrap;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .btn-outline-light {
        margin-top: 5px;
    }
    .navbar {
        background: white;
    }
    .contact-form-wrapper {
        padding: 30px 25px;
        margin-top: 1.8rem;
    }
    .faq-header h1 {
        font-size: 1.6rem;
    }
    .faq-header h2 {
        font-size: 1.4rem;
    }
}
@media (min-width: 501px) and (max-width: 992px) {
    .navbar-toggler-icon {
        background-image: none !important;
    }
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        background-color: black;
        width: 26px;
        height: 2.5px;
        display: block;
        border-radius: 5px;
        transition: 0.3s ease;
    }
    .navbar-toggler-icon {
        position: relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
    }
    .navbar-toggler-icon::before {
        top: -7px;
    }
    .navbar-toggler-icon::after {
        top: 7px;
    }
    .navbar-toggler.open .navbar-toggler-icon {
        background-color: transparent;
    }
    .navbar-toggler.open .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    .navbar-toggler.open .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }
    .col-lg-7,
    .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .contact-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .navbar {
        background: white;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 22px;
        flex-wrap: nowrap;
        display: flex;
        justify-content: center;
    }
    .stat-number {
        font-size: 2rem;
    }
    .contact-form-wrapper {
        padding: 30px 25px;
        margin-top: 2rem;
    }
    .blob1,
    .blob2,
    .blob3,
    .blob4,
    .blob5 {
        width: 250px;
        height: 250px;
    }
    .faq-header h1 {
        font-size: 1.8rem;
    }
    .faq-header h2 {
        font-size: 1.6rem;
    }
}
.AS-sticky-icons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.AS-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.AS-sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.AS-whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: AS-pulse-whatsapp 2s infinite;
}
.AS-call-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    animation: AS-pulse-call 2s infinite;
}
.AS-sticky-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.AS-sticky-icon:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: AS-ripple 1.5s infinite;
}
.AS-tooltip {
    position: absolute;
    left: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.AS-sticky-icon:hover + .AS-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes AS-pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes AS-pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}
@keyframes AS-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.AS-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.AS-footer p {
    font-size: 1rem;
    opacity: 0.8;
}

@media screen and (max-width: 1399px) {
    .services h2 {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .AS-sticky-icons {
        bottom: 10px;
        left: 10px;
    }
    .AS-sticky-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .tech-section {
        padding: 40px 0;
    }
}
@media (max-width: 767px) {
    .copyright {
        font-size: 14px;
    }
    .footer-bottom {
        padding: 10px 5em;
    }
    .footer-widget-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .wheel {
        background: #fff;
    }
    .mouse {
        border: 2px solid #fff;
    }
    .scroll-indicator {
        bottom: 50px;
    }
    .hero-section {
        padding-bottom: 3em;
    }
}
