html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa; 
}


/* Hero Section Styling */
.hero {
    background: linear-gradient(to bottom right, #6a11cb, #2575fc);
    height: 94vh;
    color: #fff;
    text-align: center;
}

.hero-img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    opacity: 0.9;
}

.hero .btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #fff;
    color: #2575fc;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*about  Section Heading */
section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    
    color: #343a40;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Skills Section Styling */
#skills {
    background-color: #f4f4f4;
    padding: 60px 0;
}

#skills h2 {
    font-size: 1.7rem;
    margin-bottom: 40px;
}

#skills .card {
    
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#skills .card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

 #skills .card-body p strong {
    color: #007bff;
}

/*projects section cards */
#projects .card-title {
    font-size: 1.2rem;
    color: #007bff;
}




/* Education Section Cards */
#education .card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
}

#education .card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

#education .card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

