/* GLOBAL */
body {
    background: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.glass-nav {
    backdrop-filter: blur(10px);
   /* background: #2068ce; */
    
    background: linear-gradient(120deg, #0044FF, #2068ce, #4f2de8, #097b9e);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    border-bottom: 0px solid rgba(255, 255, 255, 0.15);
}

.nav-link:hover {
    color: #ffd !important;
}

#home {
    position: relative;
    overflow: hidden;
    /*background: #000;  fallback */
    
    background: linear-gradient(120deg, #0044FF, #2068ce, #4f2de8, #097b9e);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

#spiderCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}


.hero-section {
    height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(120deg, #0044FF, #2068ce, #4f2de8, #097b9e);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.store-btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 10px 18px;
}

.store-btn small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn b {
    font-size: 1rem;
}

.store-btn i {
    font-size: 2rem;
}

.store-btn:hover {
    background: #147ee2;
    transform: translateY(-4px);
    border-color: #147ee2;
}

/* Optional: Google Play color accent */
.google-play:hover {
    background: linear-gradient(45deg, #34a853, #4285f4, #fbbc05, #ea4335);
    color: white;
}

/* Optional: Apple Store glass effect */
.apple-store:hover {
    background: rgba(255,255,255,0.25);
    color: #000;
}


.typed {
    color: #ffffff;
    font-weight: 700;
    border-right: 3px solid #fff;
    padding-right: 5px;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}


/* BUTTONS */
.neon-btn {
    background: white;
    color: #5B0CE0;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.neon-btn:hover {
    background: #e0e0e0;
}

.outline-btn {
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    transition: 0.3s;
}

.outline-btn:hover {
    background: white;
    color: #5B0CE0;
}

/* SECTIONS */
.section-padding {
    padding: 80px 0;
}

/* SERVICE CARDS */ 


/* Background Layer */
#service-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Floating objects */
#service-bg::before,
#service-bg::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20,126,226,0.35), transparent 70%);
    filter: blur(80px);
    animation: float1 12s infinite linear alternate;
}

#service-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,141,51,0.35), transparent 70%);
    animation: float2 15s infinite linear alternate;
}

/* Animations */
@keyframes float1 {
    0% { top: -10%; left: -10%; }
    100% { top: 60%; left: 70%; }
}

@keyframes float2 {
    0% { bottom: -10%; right: -10%; }
    100% { bottom: 50%; right: 60%; }
}

 

/* 
.service-box {
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0px 0px 10px lightgrey;
    border: 1px solid rgb(140, 181, 235) !important;
  
} */

.service-box h5{
      color: #606060;
}
 
/* SERVICE BOX ANIMATION */
  
/* ----------- CARD DESIGN ----------- */
.service-box {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #ffffff55;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

/* Objects Layer */
.service-box .float-object {
    position: absolute;
    opacity: 0.7;
    pointer-events: none;
    animation: drift linear forwards;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.7));
}

/* Shapes */
.shape-circle {
    background: rgba(0,140,255,0.4);
    border-radius: 50%;
}

.shape-diamond {
    background: rgba(255,0,255,0.35);
    transform: rotate(45deg);
}

.shape-blob {
    background: rgba(255,150,0,0.35);
    border-radius: 60% 40% 70% 50%;
}

.shape-star {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(255,255,0,0.4);
    transform: rotate(35deg);
}

.shape-hex {
    width: 30px;
    height: 17px;
    background: rgba(0,255,180,0.4);
    position: relative;
}
.shape-hex:before,
.shape-hex:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.shape-hex:before {
    top: -15px;
    border-bottom: 15px solid rgba(0,255,180,0.4);
}
.shape-hex:after {
    bottom: -15px;
    border-top: 15px solid rgba(0,255,180,0.4);
}
 
/* Drifting Animation */
@keyframes drift {
    from {
        transform: translate(var(--x-start), var(--y-start)) scale(var(--scale)) rotate(0deg);
        opacity: var(--opacity);
    }
    to {
        transform: translate(var(--x-end), var(--y-end)) scale(calc(var(--scale) * 0.6)) rotate(360deg);
        opacity: 0;
    }
}
/* ICON ANIMATION */
.icon-box i {
    color: #147ee2;
    animation: iconFloat 3s ease-in-out infinite;
    display: inline-block;
}

/* Hover Animation */
.service-box:hover .icon-box i {
    animation: iconPulse 0.6s ease-in-out 1;
    transform: scale(1.2);
}

/* Floating animation */
@keyframes iconFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Pulse animation */
@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(20, 126, 226, 0.1); /* light blue background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section {
  background: linear-gradient(135deg, #147ee2 0%, #0a4c9a 100%);
  padding: 80px 0;
  color: white;
  overflow: hidden;
  position: relative;
 /* border-radius: 0 0 40px 40px;*/
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* Decorative circles */
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), rgba(255,255,255,0));
  animation: float 3s ease-in-out infinite;
  z-index: 1;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

.shape-3 {
  width: 90px;
  height: 90px;
  top: 50%;
  right: 35%;
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Ensure text stays above shapes */
#about .container {
  position: relative;
  z-index: 5;
}


.contact-section {
    background: linear-gradient(135deg, #f2f5f8 0%, #eff0f1 100%);
    padding: 100px 0;
    
    position: relative;
    overflow: hidden;
}

/* Floating blurred shapes */
.shape-c1,
.shape-c2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #839cb6, #9ac4ec);
    filter: blur(4px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.shape-c1 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
}

.shape-c2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

/* Glass card */
.contact-card {
    backdrop-filter: blur(15px);
    background: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 20px;
    color: #0c5eb8;
    max-width: 500px;
    z-index: 5;
    position: relative;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Contact lines */
.contact-line {
    font-size: 1.2rem;
    color: #0c5eb8;
    margin-bottom: 12px;
}

.contact-line i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: #0c5eb8;
}

/* Smooth float */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.team-section {
    padding: 90px 0;
    background: #f7f9fc;
}

/* Card */
.team-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(20,126,226,0.25);
}

/* Avatar Circle (pure CSS) */
.avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #147ee2, #0a54b8); */
    display: flex;
    align-items: center;
    justify-content: center;
    color:  rgb(33, 108, 179);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(20,126,226,0.4);
}

/* Roles */
.role {
    font-weight: 600;
    color: #147ee2;
    margin-top: -5px;
}

.desc {
    font-size: 0.95rem;
    color: #555;
}


/* FOOTER */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #147ee2 0%, #0c5eb8 100%);
    padding: 70px 0;
    overflow: hidden;
    color: white;
}

/* Glass floating shapes */
.footer-shape1, .footer-shape2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.footer-shape1 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -20px;
}

.footer-shape2 {
    width: 160px;
    height: 160px;
    bottom: -30px;
    right: -10px;
    animation-delay: 2s;
}

.footer-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.4rem;
    color: white;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #dceeff;
    transform: translateY(-5px);
}

/* Float Animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}


.apps-section {
    padding: 90px 0;
    background: #f7f9fc;
}

/* Card box */
.app-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.app-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(20,126,226,0.25);
}

.app-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(135deg, #147ee2, #0a54b8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(20,126,226,0.35);
}

/* Store Buttons */
.store-btn {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    min-width: 160px;
}

.store-btn small {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.store-btn i {
    font-size: 1.8rem;
}

/* Hover effect */
.store-btn:hover {
    background: #147ee2;
    color: #fff;
    border-color: #147ee2;
    transform: translateY(-4px);
}

/* Google Play */
.google-play i {
    color: #34a853; /* green play icon */
}

/* iOS Store */
.apple-store i {
    color: #000;
}

.store-btn:hover i {
    color: #fff !important;
}
