﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    overflow-y: auto;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 200px;
}

.nav-item {
    position: relative;
    content: counter(name);
    transition: color 0.5s ease, border-bottom 0.3s ease;
}

    .nav-item:hover {
        color: orange !important;
        border-bottom: 2px solid orange;
    }

.btn-gradient {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #ff416c, #ff4b2b);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    }

.form-control:focus {
    border-color: #ff416c;
    box-shadow: 0 0 0 0.2rem rgba(255,65,108,0.25);
}


.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.pd-100 {
    padding: 100px 0;
}

#rcs img:hover {
    transform: scale(1.05);
}

.hero-section {
    height: 70vh;
    background: linear-gradient(135deg, #9fb0c4, #9d90b0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    transition: transform 0.2s;
}

    .hero-btn:hover {
        transform: scale(1.05);
    }

.custom-btn {
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

    .custom-btn:hover {
        background-color: #e0a800;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }


.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.card img {
    width: 40px;
    display: block;
    margin: 0 auto 10px;
}

.card {
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(255, 165, 0, 0.6);
}

    .card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 165, 0, 0.6);
    }

.card-1 {
    transition: all 0.4s ease-in-out;
    border: 2px solid rgba(11, 14, 58, 0.6);
    border-radius: 20px;
}

    .card-1:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        border: 2px solid rgba(36, 42, 124, 0.6);
    }

.form-card {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: #fefefe;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .form-card h2 {
        margin-bottom: 25px;
        font-weight: 700;
        text-align: center;
    }

.btn-primary {
    width: 100%;
}


@media only screen and (max-width: 600px) {
    .navbar-collapse {
        text-align: start !important;
        background: #535352;
        padding: 15px;
    }

    .navbar-nav .nav-link.active {
        color: white;
    }

    .nav-item:hover {
        background-color: #e0a800;
        padding-left: 10px;
    }
}
