@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700; নিশ্চিত&display=swap');

body {
    font-family: "Times New Roman", Times, 'Tinos', serif;
    background: #ffffff;
}

/* main.css / style.css */
.font-times {
    font-family: "Times New Roman", Times, serif;
}

.hero-bg {
    background: linear-gradient(135deg,
            #f7f7ff 0%,
            #ffffff 50%,
            #f0f4ff 100%);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shadow-soft {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.globe-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.globe {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(79, 70, 229, 0.3), 0 20px 40px rgba(0, 0, 0, 0.1);
}

.globe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%,
            transparent 40%,
            rgba(255, 255, 255, 0.1) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10,50 Q25,30 40,50 T70,50 T90,30' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.3'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%23ffffff' opacity='0.5'/%3E%3Ccircle cx='70' cy='60' r='3' fill='%23ffffff' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 200px 200px, 100px 100px;
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}

.globe::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.globe-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.globe-ring {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotateX(75deg);
}

.globe-ring:nth-child(2) {
    transform: rotateX(75deg) rotateY(60deg);
}

.globe-ring:nth-child(3) {
    transform: rotateX(75deg) rotateY(120deg);
}

.parallax-globe {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4f46e5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section {
    padding-top: 16rem;
    /* pt-24 এর মতো */
    padding-bottom: 16rem;
}

.section-hero {
    padding-top: 1rem;
    /* ডিফল্ট বড় স্ক্রিনের জন্য */
    padding-bottom: 16rem;
}

/* মোবাইল স্ক্রিনের জন্য (max-width: 768px) */
@media (max-width: 768px) {
    .section-hero {
        padding-top: -1rem !important;
        /* মোবাইলের জন্য */
    }
}



.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}