/* =========================
   HERO SECTION
========================= */

.hero{
    background:url('../images/logo1.jpg') center/cover no-repeat;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    padding:40px 20px;
    }
    
    .hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    }
    
    .hero-content{
    position:relative;
    color:white;
    max-width:800px;
    padding:20px;
    animation:fadeIn 2s ease;
    }
    
    .hero-title{
    font-size:3rem;
    font-weight:700;
    margin-bottom:10px;
    animation:slideDown 1.5s ease;
    }
    
    .hero-subtitle{
    color:#ffc107;
    margin-bottom:20px;
    font-size:1.5rem;
    animation:fadeIn 2s ease;
    }
    
    .hero-text{
    font-size:1.1rem;
    line-height:1.7;
    margin-bottom:12px;
    }
    
    .about-text .lead{
        text-align:left;
        font-size:1.15rem;
        line-height:1.9;
        max-width:850px;
        margin:auto;
        padding:10px 15px;
        color:#333;
        }
    /* =========================
       FEATURES
    ========================= */
    
    .features{
    padding:60px 20px;
    background:#f8f9fa;
    }
    
    .feature-card{
    background:white;
    padding:35px;
    border-radius:12px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    height:100%;
    }
    
    .feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
    }
    
    .feature-card i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:15px;
    }
    
    .feature-card h5{
    font-weight:600;
    margin-bottom:10px;
    }
    
    .feature-card p{
    font-size:15px;
    line-height:1.6;
    }
    
    
    /* =========================
       ANIMATIONS
    ========================= */
    
    @keyframes fadeIn{
    from{
    opacity:0;
    }
    to{
    opacity:1;
    }
    }
    
    @keyframes slideDown{
    from{
    opacity:0;
    transform:translateY(-40px);
    }
    to{
    opacity:1;
    transform:translateY(0);
    }
    }
    
    
    /* =========================
       RESPONSIVE DESIGN
    ========================= */
    
    /* Tablets */
    
    @media (max-width:992px){
    
    .hero-title{
    font-size:2.5rem;
    }
    
    .hero-subtitle{
    font-size:1.3rem;
    }
    
    .hero-text{
    font-size:1rem;
    }
    
    }
    
    
    /* Mobile */
    
    @media (max-width:768px){
    
    .hero{
    min-height:55vh;
    padding:30px 15px;
    }
    
    .hero-title{
    font-size:2rem;
    }
    
    .hero-subtitle{
    font-size:1.2rem;
    }
    
    .hero-text{
    font-size:0.95rem;
    }
    
    .feature-card{
    padding:25px;
    }
    
    .feature-card i{
    font-size:38px;
    }
    
    }
    
    
    /* Small Phones */
    
    @media (max-width:480px){
    
    .hero-title{
    font-size:1.6rem;
    }
    
    .hero-subtitle{
    font-size:1.1rem;
    }
    
    .hero-text{
    font-size:0.9rem;
    }
    
    }