/* style.css */

/* General */
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; background: #f8f9fa; color: #363636; margin:0; }

/* Sticky Navbar */
.navbar { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); position: sticky; top:0; z-index:100; }
.navbar a.navbar-item { font-weight:600; transition: color 0.3s; }
.navbar a.navbar-item:hover { color:#3273dc; }
.navbar a.navbar-item.is-active {
    color: #3b82f6;        /* Blue highlight */
    font-weight: 700;       /* Bold */
    border-bottom: 2px solid #3b82f6; /* optional underline */
}


/* Hero */
.hero.is-link.is-fullheight-with-navbar {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #fff;
}
.hero-body { display:flex; flex-direction:column; justify-content:center; text-align:center; }
.hero .button.is-light { background: #fff; color: #3b82f6; font-weight: bold; transition: all 0.3s ease; }
.hero .button.is-light:hover { background: #e0e7ff; transform: translateY(-3px); }

/* Sections */
section { padding: 4rem 1.5rem; }
section.has-background-light { background: #ffffff; }
section h2.title { margin-bottom: 2rem; font-weight: 700; }
.container > p, .container > div { line-height: 1.6; font-size: 1.1rem; }

/* Columns list style */
ul { list-style: disc; margin-left: 1.5rem; }
.columns { margin-top: 1.5rem; }

/* Buttons */
.button.is-link { transition: all 0.3s ease; }
.button.is-link:hover { background-color: #2563eb; transform: translateY(-2px); }

/* Notification styling */
.notification { border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Testimonials Slider */
#testimonials { background: #f0f4f8; padding-top: 6rem; padding-bottom: 6rem; }
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide .card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: auto;
    background:#fff;
    text-align:center;
    transition: transform 0.3s ease;
}
.swiper-slide .card:hover { transform: translateY(-5px); }
.swiper-slide .icon { color: #3b82f6; margin-bottom: 0.5rem; }

/* Footer */
footer.footer { padding: 3rem 1.5rem; }
footer.footer p { color: #ffffff; font-size: 0.95rem; }
footer.footer strong { color: #ffffff; }
/* Footer tech icons */
.footer-icons i {
    margin: 0 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    vertical-align: middle;
}

/* Individual icon colors */
.icon-android { color: #3DDC84; }  /* Android green */
.icon-apple   { color: #A2AAAD; }  /* Apple silver/grey */
.icon-windows { color: #0078D6; }  /* Windows blue */
.icon-html5   { color: #E34F26; }  /* HTML5 orange */
.icon-cloud   { color: #00BFFF; }  /* Cloud sky blue */

/* Hover effect: scale + subtle bounce */
.footer-icons i:hover {
    transform: scale(1.2) translateY(-3px);
    opacity: 0.9;
}

/* Flex container */
.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}



/* Responsive */
@media screen and (max-width: 768px) {
  .swiper-slide .card { max-width: 90%; }
  .hero .title { font-size: 2.2rem; }
  .hero .subtitle { font-size: 1.3rem; }
}

/* Scroll to top button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #3273dc;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
#scrollTopBtn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Portfolio cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.project-card img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    object-fit: cover;
}
