* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}
.fancyborder{
    border-radius: 0% 0% 27% 17% / 0% 0% 10% 17% ;
}
.hero-bg {
    background: linear-gradient(135deg, #0b1a3b 0%, #112255 60%, #0d2060 100%);
}

.orange-btn {
    background: #f37021;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.orange-btn:hover {
    background: #d95f10;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px 0 #f37021bb;
}

.outline-orange {
    border: 2px solid #f37021;
    color: #fff;
    transition: background 0.3s, color 0.3s;
}

.outline-orange:hover {
    background: #f37021;
    color: #fff;
}

.card-shadow {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.popular-card {
    background: #f37021;
}

.stat-icon {
    background: rgba(243, 112, 33, 0.12);
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0b1a3b;
}

.service-icon-bg {
    background: rgba(243, 112, 33, 0.10);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}

.service-icon-bg:hover {
    transform: scale(1.12) rotate(-6deg);
}

.footer-bg {
    background: #0b1a3b;
}

.nav-link {
    color: #0b1a3b;
    font-weight: 500;
    font-size: 0.93rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #f37021;
}

.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    background: #ddd;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(243, 112, 33, 0.13);
}

.check-orange {
    color: #f37021;
}

input,
textarea,
select {
    outline: none;
    transition: border-color 0.25s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #f37021 !important;
    box-shadow: 0 2px 12px #ffd2bb33;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    margin: 0 3px;
    transition: background 0.18s;
}

.dot.active {
    background: #f37021;
}

.dark-toggle {
    background: #1a2a5e;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.12s;
}

.dark-toggle:hover {
    background: #192040;
    transform: scale(1.1) rotate(-5deg);
}

.badge-popular {
    background: #fff;
    color: #f37021;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(243, 112, 33, 0.06);
}

/* Fancy animation for fade-in-up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(48px);
    }

    60% {
        opacity: 0.9;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.85s cubic-bezier(.35, .93, .46, 1.18) forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.25s;
}

.fade-in-delay-2 {
    animation-delay: 0.45s;
}

.fade-in-delay-3 {
    animation-delay: 0.65s;
}

/* Section title pulse anim */
@keyframes pulseOrange {
    0% {
        text-shadow: 0 0 0 #f3702110;
    }

    20% {
        text-shadow: 0 2px 12px #f3702188;
    }

    50% {
        text-shadow: 0 2px 24px #f37021cc;
    }

    100% {
        text-shadow: 0 0 0 #f3702110;
    }
}


.bounce-member {
    animation: bounceMember 2.2s cubic-bezier(.52, .08, .54, .94) infinite;
}

/* Animated contact icon */
@keyframes popfade {
    0% {
        transform: scale(0.7) rotate(-8deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.08) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.icon-popfade {
    animation: popfade 0.85s .25s cubic-bezier(.31, 1.03, .46, 1.12) both;
}

/* scroll bar */
::-webkit-scrollbar {
    width: 0%;
}

.nav-link {
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2.5px;
    background: #f37021;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    border-radius: 9999px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}