/* ======= 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;
    }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(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: 'Rubik', sans-serif;
    color: #181818;
    line-height: 26px;
    overflow-x: hidden;
    background-color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    
}

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: 3rem 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.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;
    
    transition: color 0.3s ease;
}

.scrolled .nav-link {
    color: var(--text-dark);
}

.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;
    
    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);
    font-size: 20px; 
}

.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: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    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:#7c3aed; color:#fff;
    
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: none;;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.section-title {
    font-size: 32px;
    line-height: 52px;
    font-weight: 400; 
    margin-top: 70px;;
    
    
}

.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 {
    
    max-width: 70rem;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
    color: #4c4c4c;
   
}


/* ======= ABOUT SECTION ======= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-content,.about-animated-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: #4c4c4c;
    margin-bottom: 16px;
}

/*mobile view*/
@media screen and (max-width: 768px) {
    .about-content,.about-animated-content p {
        font-size: 16px;
        line-height: 24px;
    }
}

.subsection-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: #181818;
}

.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%;
   
    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(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}
.gradient-border, .service-card {
    height: 100%;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.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-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: rgb(24, 24, 24);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-gray);
}

.gradient-border {
  position: relative;
  padding: 2px;
  border-radius: 0.85rem;
  background: linear-gradient(270deg, #7c3aed, #0ea5e9, #f472b6, #7c3aed);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.3s;
}
.gradient-border:hover {
  animation-duration: 2s;
  box-shadow: 0 8px 32px rgba(123,58,237,0.13);
}
.gradient-border > .service-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 1;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* ======= TECHNOLOGIES SECTION ======= */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  @media (max-width: 900px) {
    .tech-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .tech-grid {
      grid-template-columns: 1fr;
    }
  }
  
.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: 22px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: #181818;

}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 12px;
  }
  .tech-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    margin-bottom: 10px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    
  
  }
  .tech-tag i {
    font-size: 2.5em;    
    margin-bottom: 4px;
  
  }
  .tech-tag span {
    font-size: 12px;    
  
  }

.tech-tag:hover {
  
    /* background: var(--brand-purple); */
    /* color: #fff; */
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 4px 16px rgba(123, 58, 237, 0.15);
    z-index: 1;
    /* padding: 1px; */
}

.pulse-icon {
  animation: pulse 1.6s infinite;
}



.cta-container {
    background: linear-gradient(to right, var(--brand-blue), #8b5cf6);
    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: 22px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
   
    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: 500;
    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: 16px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #181818;
    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: #0E061F;
    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: 18px;
    font-weight: 400;
    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;
    top: 20px;
    right: 20px;
    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;
    }
}

/* Reduce gap between sections in mobile view */
@media screen and (max-width: 768px) {
    .section {
        padding: 2rem 0 !important;
    }
    .section-header {
        margin-bottom: 2rem !important;
    }
    .about-grid,
    .services-grid,
    .tech-grid,
    .footer-grid,
    .engagment-container,
    .project-list-area {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0 !important;
    }
}


/* 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;
}

@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: calc(100% - 662px);
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@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: 52px;
    line-height: 62px;
    font-weight: 900;
    color: #fff;
}

.full-banner-containerBX .banner-content-bx .banner-leftBx h4 {
    display: block;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    color: #fff;
}

@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;
}

@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;
    }
}

/* Fix extra space above and below video slider banners */
.hero,
.hero-slider,
.hero-slide {
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.hero-slider {
    /* Remove any flex/grid that may cause spacing */
    display: block !important;
}

.hero-slide {
    position: relative !important;
    overflow: hidden !important;
}

.hero-slide video {
    position: absolute !important;
    top: 0; left: 0;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: 1;
}

.hero-slide .container {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0 !important;
}

.banner-content-bx {
    margin: auto !important;
    padding: 0 !important;
    /* background: rgba(18,0,47,0.55); */
    border-radius: 18px;
    /* box-shadow: 0 4px 24px rgba(80,0,120,0.12); */
    color: #fff;
    max-width: 700px;
}

.banner-content-bx h1 {
    font-size: 42px;
    line-height: 1.2;
     font-weight: 400; 
    margin-bottom: 1rem;
}
.banner-content-bx h3 {
   font-size:18px; 
   font-weight:400; 
   margin-bottom:32px;
    
}

/* h1 , h3 for mobile view */
@media screen and (max-width: 768px) {
    .banner-content-bx h1 {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 0.5rem;

    }
    .banner-content-bx h3 {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}



body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* rgba(139, 92, 246, 0.1) */


@keyframes bounceShape {
    0% { transform: translateY(0);}
    100% { transform: translateY(-20px);}
}
/* Shorten About Us image height on mobile */
@media screen and (max-width: 768px) {
    .about-animated-image img {
        max-height: 250px !important;
    }
}

@keyframes uncommonEntranceLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotateY(-30deg) scale(0.8);
  }
  80% {
    opacity: 1;
    transform: translateX(10px) rotateY(10deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}
@keyframes uncommonEntranceRight {
  0% {
    opacity: 0;
    transform: translateX(80px) rotateY(30deg) scale(0.8);
  }
  80% {
    opacity: 1;
    transform: translateX(-10px) rotateY(-10deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

.uncommon-animate {
  opacity: 0;
  transform: scale(0.9) rotateY(0deg);
  will-change: transform, opacity;
}
.uncommon-animate.in-view {
  opacity: 1;
  animation: uncommonEntranceLeft 1.1s cubic-bezier(0.77,0,0.175,1) forwards;
  animation-delay: var(--delay, 0ms);
}
.uncommon-animate.in-view:nth-child(even) {
  animation-name: uncommonEntranceRight;
}

.service-card.uncommon-animate:hover {
  transform: rotateY(180deg) scale(1.04);
  box-shadow: 0 24px 48px -12px rgba(123,58,237,0.18);
  z-index: 2;
}

.floating-icon {
  animation: float 2.8s ease-in-out infinite;
}

.service-card.uncommon-animate:hover .floating-icon {
  animation: pulse 0.7s infinite alternate;
  filter: drop-shadow(0 0 12px #8b5cf6);
}

.floating-card {
  animation: floatingBobbing 3.8s ease-in-out infinite;
}
.services-grid .floating-card:nth-child(2) {
  animation-delay: 0.7s;
}
.services-grid .floating-card:nth-child(3) {
  animation-delay: 1.4s;
}
.services-grid .floating-card:nth-child(4) {
  animation-delay: 2.1s;
}
.services-grid .floating-card:nth-child(5) {
  animation-delay: 2.8s;
}
.services-grid .floating-card:nth-child(6) {
  animation-delay: 3.5s;
}
@keyframes floatingBobbing {
  0% {
    transform: translateY(0px);
  }
  20% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0px);
  }
  70% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}


.privacy h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
    color: #181818;
    margin-bottom: 1rem;
}

.privacy p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #4c4c4c;
    margin-bottom: 1rem;
}


.section-title-2{
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 50px;;
} 

/* section title 2 for mobile view */
@media screen and (max-width: 768px) {
    .section-title-2 {
        font-size: 27px;
        line-height: 32px;
        margin-bottom: 18px;
        margin-top: 20px;
    }

    .section-title{
        font-size: 27px;
        line-height: 30px;
        margin-bottom: 18px;
        margin-top: 20px;
    }
    .section-subtitle{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
        margin-top: 20px;
    }
}

/* Industries Grid Styles */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 24px 0 32px 0;
}

.industry-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  font-size: 20px;

 
  transition: box-shadow 0.3s, transform 0.3s;
}
.industry-card i {
  font-size: 30px;

}
.industry-card span {
  color: #181818;
}
.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.03);
}
.industry-icon-box{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  padding: 3px;
  background-color: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .industry-card {
    font-size: 12px;
    padding: 1rem 0.75rem;
    flex-direction: column; /* <-- Add this line */
    align-items: center;     /* Center the icon and text */
    text-align: center;      /* Center the text */
  }
  .industry-card span {
    margin-top: 0.5rem;      /* Add some space between icon and text */
  }
} 


.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  @keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }

.form-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}



