﻿/* RESET */
body {
    margin: 0;
     background-color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}
.text-branch {
    color: #6a1b9a;  /* purple tone */
    font-weight: bold;
}

/* Card 1 */
.branch-card-1 {
    background: linear-gradient(to right, #e3f2fd, #ffffff);
    border-left: 5px solid #2196f3;
    border-radius: 15px;
    transition: 0.3s;
}

/* Card 2 */
.branch-card-2 {
    background: linear-gradient(to right, #f3e5f5, #ffffff);
    border-left: 5px solid #9c27b0;
    border-radius: 15px;
    transition: 0.3s;
}

/* Hover Effect */
.branch-card-1:hover,
.branch-card-2:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-branch-1 {
    background-color: #2196f3;
    color: white;
    border: none;
}

.btn-branch-2 {
    background-color: #9c27b0;
    color: white;
    border: none;
}

.btn-branch-1:hover {
    background-color: #1976d2;
}

.btn-branch-2:hover {
    background-color: #7b1fa2;
}

.carousel .card {
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: brown;
    border-radius: 50%;
    padding: 10px;
}

.card:hover {
    transform: scale(1.03);
    transition: 0.3s;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* HERO HEADER TEXT IMPROVEMENT */
.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-section .lead {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ADD GLOW EFFECT */
.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* BUTTON STYLE */
.hero-section .btn {
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 30px;
}
/* 🔥 HERO HEADER */
.hero-section {
    background: linear-gradient(135deg, #5a2d0c, #ff7a18);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-section p {
    margin: 5px 0;
}

/* 🎯 NAVBAR */
.navbar {
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

/* 📦 MAIN CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* 🎓 CARD DESIGN */
.card {
    border-radius: 15px;
    border: none;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

/* 🟡 BUTTON */
.btn {
    border-radius: 25px;
    font-weight: 500;
}

/* 💰 FEE BOX */
.fee-box {
    background: #fff3e6;
    border-left: 5px solid #ff7a18;
}

/* 🌟 SECTION HEADINGS */
h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #5a2d0c;
    font-weight: bold;
}

/* 📢 CALL TO ACTION */
.cta-box {
    background: linear-gradient(135deg, #ffb347, #ff7a18);
    color: white;
    border-radius: 15px;
    padding: 40px;
}

/* 🟫 FOOTER */
.footer {
    background: linear-gradient(135deg, #5a2d0c, #a0522d);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

/* ✨ ANIMATION */
.card {
    animation: fadeInUp 0.7s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section {
        padding: 40px 10px;
    }
}