@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar scrolled state - height removed to maintain same height */

.container {
    max-width: 1520px;
    margin: 0 auto;
    width: 100%;
}

/* Header/Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services {
    background: #fff;
}

.contact {
    background: #f9f9f9;
}

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Footer */

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Custom Button Hover Gradient */
.gradient-btn {
    transition: background 0.3s ease;
}

.gradient-btn:hover {
    background: linear-gradient(94.03deg, #00C7F0 7.2%, #3E28FF 99.19%);
}

.gradient-btn:hover span {
    background: transparent !important;
    color: white !important;
}

/* Selection Box with Corner Handles */
.selection-box {
    position: relative;
    display: inline-block;
    padding: 10px 14px;

    /* Gradient border */
    border: 2px solid transparent;
    border-image: linear-gradient(90deg,
            #00c7f0 0%,
            #3e28ff 100%) 1;
}

.selection-box h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;

    background: linear-gradient(94.03deg,
            #00c7f0 7.2%,
            #3e28ff 99.19%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .selection-box h2 {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .selection-box h2 {
        font-size: 96px;
    }
}

/* Corner squares */
.handle {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid;
    z-index: 2;
}

/* Left handles */
.top-left,
.bottom-left {
    border-color: #00c7f0;
    left: -8px;
}

/* Right handles */
.top-right,
.bottom-right {
    border-color: #6c72ff;
    right: -8px;
}

.top-left,
.top-right {
    top: -8px;
}

.bottom-left,
.bottom-right {
    bottom: -8px;
}

/* Circular Animation */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.circular-animation {
    animation: rotate 10s linear infinite;
}

/* Play Button Hover Effect */
.play-btn-hover {
    transition: opacity 0.3s ease;
}

.play-btn-container {
    position: relative;
    display: inline-block;
}

.play-btn-container img {
    transition: opacity 0.3s ease;
}

.play-btn-container .play-btn-white {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.play-btn-container:hover .play-btn-white {
    opacity: 1;
}

.play-btn-container:hover .play-btn-black {
    opacity: 0;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #E9F3FF 0%, #EFEBFA 50%, #ECE9F9 100%);
}

.card-create {
    background: linear-gradient(135deg, #2C1E8C 0%, #6B3FD4 55%, #A94FE0 100%);
}

.card-innovate {
    background: linear-gradient(135deg, #3B6B1E 0%, #1E9B7A 55%, #1EC0E8 100%);
}

.card-elevate {
    background: linear-gradient(135deg, #5A2A0E 0%, #C4571C 55%, #E0538A 100%);
}

.why-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 40px !important;
    overflow: hidden;
}

.why-card img {
    transition: transform 0.35s ease;
}

.why-card span {
    transition: font-size 0.35s ease, text-shadow 0.35s ease;
    font-size: 1.2em !important;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(28, 36, 99, 0.35);
}

.why-card:hover img {
    transform: scale(1.1);
}

.why-card:hover span {
    font-size: 2em !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* Products Section */
.products-section {
    background: #EAF2FF;
}

.gradient-btn {
    background: linear-gradient(94.03deg, #00C7F0 7.2%, #3E28FF 99.19%);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.gradient-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -14px rgba(28, 36, 99, 0.28);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #EAF6FF 0%, #EFF7FF 100%);
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(62, 40, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(62, 40, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 40%, transparent 90%);
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 40%, transparent 90%);
}

.google-play-btn {
    background: #0A0A0A;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.google-play-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.15);
}

.get-in-touch-btn {
    border-radius: 999px;
    border: 2px solid transparent;
    color: #1C2463;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(94.03deg, #00C7F0 7.2%, #3E28FF 99.19%) border-box;
    transition: 0.3s ease;
}

.get-in-touch-btn:hover {
    color: white;
    background:
        linear-gradient(94.03deg, #00C7F0 7.2%, #3E28FF 99.19%) padding-box;
}

/* Footer */
.site-footer {
    background: #F4F6FB;
}

.footer-nav-link {
    color: #5B6178;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #1C2463;
}

.footer-nav-link.active {
    color: #1C2463;
    font-weight: 600;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #EDEFF7;
    color: #1C2463;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    background: linear-gradient(94.03deg, #00C7F0 7.2%, #3E28FF 99.19%);
    color: white;
    transform: translateY(-2px);
}

.social-icon:hover svg path {
    fill: white;
}

.footer-watermark {
    line-height: 0.8;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, rgba(28, 36, 99, 0.10) 0%, rgba(28, 36, 99, 0.03) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}