body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f4f8;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

.btn-primary {
    background-color: #3B82F6;
    border: none;
}

.btn-primary:hover {
    background-color: #2563EB;
}


/* Custom Navbar Links */
.custom-nav-link {
    position: relative;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: #1f2937;
}

.custom-nav-link:hover {
    background: linear-gradient(45deg, #3b82f6, #9333ea);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.custom-nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0%;
    height: 3px;
    background-color: #3b82f6;
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.custom-nav-link:hover::after {
    width: 60%;
}

/* Logo Text */
.typing-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.typing-logo-text:hover {
    color: #9333ea;
}

.t {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.t::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* थोड़ा नीचे underline */
    width: 100%;
    height: 2px;
    background-color: #9333ea;
    transform: scaleX(0);
    transform-origin: center; 
    transition: transform 0.3s ease;
}

.t:hover {
    color: #9333ea;
}

.t:hover::after {
    transform: scaleX(1);
}


.black {
    font-size: 2rem; /* Increase this value if you want it even bigger */
    color: #000; /* Optional: keep it pure black */
    line-height: 1;
    vertical-align: middle;
}


/* === Loader Styles === */
/* === Typing Loader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-loader {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    color: #1F2937;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #1F2937;
    width: fit-content;
    animation: blink-caret 0.2s step-end infinite;
}

@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: #1F2937; }
}


.equal-img {
    height: 250px;
    width: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}


.image-card {
    transition: transform 0.4s ease-in-out, box-shadow 0.4s;
    cursor: pointer;
    height: 280px;
}

.image-card img {
    transition: transform 0.5s ease;
}

.image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.image-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .image-card {
        height: auto;
    }
}





