/* ======= VARIABLES ======= */

:root {
    --brand-blue: #0f172a;
    --brand-purple: #8b5cf6;
    --brand-teal: #0ea5e9;
    --brand-gray: #f8fafc;
    --text-dark: #333;
    --text-gray: #666;
    --text-light: #f8fafc;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}


/* ======= ANIMATIONS ======= */

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

@keyframes slide-in-bottom {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Background Blob Animation */

.bg-blob {
    animation: pulse 3s infinite ease-in-out;
}

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


/* ======= RESET & BASE STYLES ======= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* ======= UTILITY CLASSES ======= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--brand-gray);
}

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

.text-purple {
    color: var(--brand-purple);
}

.text-gray {
    color: var(--text-gray);
}

.w-full {
    width: 100%;
}

.gradient-text {
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-light {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

.animate-slide-in-bottom {
    animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-delay-100 {
    animation-delay: 100ms;
}

.animate-delay-200 {
    animation-delay: 200ms;
}

.animate-delay-300 {
    animation-delay: 300ms;
}

.animate-delay-400 {
    animation-delay: 400ms;
}

.animate-delay-500 {
    animation-delay: 500ms;
}


/* ======= LOADING SCREEN ======= */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.progress-container {
    width: 16rem;
    height: 0.5rem;
    background-color: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
    margin: 0 auto 0.75rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #718096;
}


/* ======= NAVBAR ======= */


/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 987;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 987;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#101a2e+0,2b3064+60 */
    background: linear-gradient(to right, #101a2e 0%, #2b3064 60%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.navbar.scrolled {
    /* background-color: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    /* box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); */
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}


/* .scrolled .nav-link {
    color: var(--text-dark);
} */

.scrolled .nav-link {
    color: #fff;
}

.nav-link:hover {
    color: var(--brand-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

.mobile-nav {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-nav.show {
    max-height: 300px;
}

.mobile-nav .nav-link {
    color: var(--text-dark);
    display: block;
    padding: 0.75rem 0;
}

.mobile-nav .nav-link:hover {
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}


/* Mobile Navigation Animation */

.mobile-nav {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}


/* ======= BUTTONS ======= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--brand-purple);
    color: white;
}

.btn-primary:hover {
    background-color: #7c4df1;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.btn-gradient {
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    color: white;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #7c4df1, #0c93d4);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-light {
    background-color: white;
    color: var(--brand-blue);
}

.btn-light:hover {
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-right {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .animated-icon {
    animation: bounce 1.5s infinite;
}


/* ======= HERO SECTION ======= */

.hero {
    position: relative;
    background: linear-gradient(to bottom right, var(--brand-blue), #1a365d);
    color: white;
    padding: 8rem 0 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-in-out;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 32rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s ease-in-out;
}

.hero-buttons button {
    animation: fadeIn 1.5s ease-in-out;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    filter: blur(30px);
    opacity: 0.3;
    border-radius: 1rem;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-blob-1 {
    top: -10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background-color: rgba(139, 92, 246, 0.2);
    animation: float 8s ease-in-out infinite;
}

.bg-blob-2 {
    top: 20%;
    left: -5%;
    width: 30%;
    height: 30%;
    background-color: rgba(14, 165, 233, 0.2);
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

.bg-blob-3 {
    bottom: -10%;
    right: 20%;
    width: 25%;
    height: 25%;
    background-color: rgba(139, 92, 246, 0.15);
    animation: float 10s ease-in-out infinite;
    animation-delay: 4s;
}

.scroll-down {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    text-align: center;
    /* color: rgba(255, 255, 255, 0.8); */
    font-size: 0.875rem;
    color: #db9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
    z-index: 564;
}

.scroll-down i {
    margin-top: 0.5rem;
}


/* ======= SECTION STYLES ======= */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--brand-purple);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-line {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    margin: 0 auto 1.5rem;
    transition: width 0.5s ease;
}

.section:hover .section-line {
    width: 8rem;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 70rem;
    margin: 0 auto;
}


/* ======= ABOUT SECTION ======= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-image-container {
    position: relative;
    margin-top: 1rem;
}

.abouImg {
    width: 100%;
    height: 750px;
    border-radius: 0.75rem;
    /* box-shadow: var(--shadow-xl); */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.missionImg {
    width: 100%;
    height: 550px;
    border-radius: 0.75rem;
    /* box-shadow: var(--shadow-xl); */
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container .image-glow {
    height: 385px;
}

.about-image-container .image-glow.missionglow {
    height: 270px;
}


/* ======= SERVICES SECTION ======= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--brand-purple);
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(139, 92, 246, 0.2);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-gray);
}


/* ======= TECHNOLOGIES SECTION ======= */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-lg);
}

.tech-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--brand-purple);
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.tech-title {
    font-size: 1.25rem;
    color: var(--brand-blue);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background-color: #f3f4f6;
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background-color: rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
}

.cta-container {
    background: linear-gradient(to right, var(--brand-blue), #2d3a8c);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}


/* ======= CONTACT SECTION ======= */

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
}

.contact-form-container {
    position: relative;
}

.form-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--brand-purple), var(--brand-teal));
    border-radius: 0.75rem;
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--brand-purple);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}


/* ======= FOOTER ======= */

.footer {
    background-color: var(--brand-blue);
    color: white;
    padding: 4rem 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-text {
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: var(--brand-purple);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0;
    font-size: 0.875rem;
}


/* ======= TOAST NOTIFICATIONS ======= */

.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 450px;
    transform: translateX(150%);
    opacity: 0;
    animation: slide-in-right 0.3s forwards;
}

.toast-success {
    background-color: #10b981;
    color: white;
}

.toast-error {
    background-color: #ef4444;
    color: white;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toast-close:hover {
    opacity: 1;
}


/* ======= RESPONSIVE STYLES ======= */

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr 2fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 1023px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}


/* Spider Web Canvas Styling */

.spider-web {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}


/* new css added starting below */

.full-banner-containerBX {
    position: relative;
    width: 100%;
    z-index: 566;
}

.full-banner-containerBX .banner-content-bx {
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
    /* justify-content: space-between; */
    /* overflow: hidden; */
}

.full-banner-containerBX .banner-content-bx .image-glow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.slide01 {
    background: url("assets/images/bg1.jpg") no-repeat center center;
    min-height: 950px;
}

.slide02 {
    background: url("assets/images/bg2.jpg") no-repeat center center;
    min-height: 950px;
}

.slide03 {
    background: url("assets/images/bg3.jpg") no-repeat center center;
    min-height: 950px;
}

.slide04 {
    background: url("assets/images/bg4.jpg") no-repeat center center;
    min-height: 950px;
}

.slide02 .flxbx {
    display: flex;
    justify-content: flex-end;
}

.slide04 .flxbx .banner-leftBx {
    padding-left: 0px;
}

.slide04 .flxbx {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    .full-banner-containerBX .banner-content-bx {
        flex-direction: column-reverse;
        gap: 24px;
    }
}

.full-banner-containerBX .banner-content-bx .banner-rightBx {
    width: 100%;
    max-width: calc(100% - 500px);
    padding: 0px;
    background: #fff;
    border-radius: 0px;
    position: relative;
    z-index: 78;
}

@media screen and (max-width: 768px) {
    .full-banner-containerBX .banner-content-bx .banner-rightBx {
        max-width: 100%;
        padding-top: 0px;
    }
}

.full-banner-containerBX .banner-content-bx .banner-leftBx {
    position: relative;
    width: 100%;
    max-width: 600px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 850px;
}

@media screen and (max-width: 768px) {
    .full-banner-containerBX .banner-content-bx .banner-leftBx {
        max-width: 100%;
        padding: 0;
        gap: 16px;
        min-height: -moz-fit-content;
        min-height: fit-content;
        justify-content: center;
        align-items: center;
    }
}

.full-banner-containerBX .banner-content-bx .banner-leftBx h2 {
    display: block;
    font-size: 48px;
    line-height: 62px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    color: #2e2f65;
}

.full-banner-containerBX .banner-content-bx .banner-leftBx h2 span {
    font-size: 48px;
    line-height: 62px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    color: #db9000;
}

.full-banner-containerBX .banner-content-bx .banner-leftBx h4 {
    display: block;
    font-family: "Mooli", sans-serif;
    font-size: 36px;
    line-height: 46px;
    font-weight: 300;
    color: #8b5cf6;
}

.slide03 .banner-leftBx h2 {
    color: #fff !important;
}

.slide03 .banner-leftBx h4 {
    color: #fff !important;
}

@media screen and (max-width: 768px) {
    .full-banner-containerBX .banner-content-bx .banner-leftBx h2 {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
    .full-banner-containerBX .banner-content-bx .banner-leftBx h4 {
        display: block;
        font-size: 16px;
        line-height: 22px;
        font-weight: 300;
        color: #fff;
    }
}

.full-banner-containerBX .banner-content-bx .banner-leftBx .quateBtn {
    max-width: 160px;
}

.bannerslider {
    position: relative;
    width: 100%;
}

.bannerslider .slick-dots {
    bottom: 0;
}

.bannerslider .slick-dots li button::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #266ff2;
    opacity: 0.5;
    border-radius: 100%;
}

.bannerslider .slick-dots li.slick-active::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #266ff2;
    opacity: 0.5;
    border-radius: 100%;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.engagment-container {
    position: relative;
    width: 100%;
    padding: 52px 0;
}

@media screen and (max-width: 768px) {
    .engagment-container {
        padding: 18px 0;
    }
}

.engagment-container .engagmentBx {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.engagment-container .engagmentBx h2 {
    display: block;
    font-size: 40px;
    line-height: 120%;
    color: #1B2E59;
    font-family: "Codec Cold Trial";
    font-weight: 900;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .engagment-container .engagmentBx h2 {
        font-size: 24px;
    }
}

.engagment-container .engagmentBx p {
    display: block;
    font-size: 16px;
    line-height: 125%;
    color: #1B2E59;
    font-family: "Codec Cold Trial";
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .engagment-container .engagmentBx p {
        font-size: 14px;
    }
}

.engagment-container .engagmentBx .ourProductBx {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.engagment-container .engagmentBx .ourProductBx .productList {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 1);
}

.engagment-container .engagmentBx .ourProductBx .productList .serviceIcon {
    display: block;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.engagment-container .engagmentBx .ourProductBx .productList .serviceIcon img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.engagment-container .engagmentBx .ourProductBx .productList h3 {
    font-size: 32px;
    font-size: 700;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .engagment-container .engagmentBx .ourProductBx .productList h3 {
        font-size: 22px;
    }
}

.engagment-container .engagmentBx .ourProductBx .productList p {
    display: block;
    font-size: 16px;
    line-height: 125%;
    color: #1B2E59;
    font-family: "Codec Cold Trial";
    font-weight: 300;
    text-align: center;
    min-height: 90px;
}

@media screen and (max-width: 768px) {
    .engagment-container .engagmentBx .ourProductBx .productList p {
        font-size: 14px;
    }
}

.about-content p {
    margin-bottom: 22px;
}

.about-content ul {
    position: relative;
    width: 100%;
    li {
        position: relative;
        width: 100%;
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.project-list-area {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.projectBx {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 460px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.project-content {
    width: 100%;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-content img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 460px;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    padding: 32px;
    transition: 0.5s linear;
    opacity: 0;
}

.overlay h3 {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.overlay p {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    font-weight: 300;
}

.tags-area {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.tags-area span {
    background: #e5e7eb;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 300;
    color: #000;
}

.tags-area a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 0 8px;
    transform: rotate(45deg);
}

.projectBx:hover .overlay {
    top: 0;
    opacity: 1;
    transition: 0.5s linear;
}

.custom-banner-area {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1440px) {
    .projectBx {
        height: 320px;
        max-width: 260px;
    }
}