/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #2c3e50;
    color: #fff;
    margin: 0;
    padding: 0;
}
/* Header Styling */
header {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

header:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 3em;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out;
    font-family: italic;
    color: #09249e;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Main Section Styling */
.main-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-section h2 {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.main-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}

.main-section:hover h2 {
    transform: translateY(-10px);
}

.main-section:hover p {
    opacity: 0.8;
}

/* Main Image Styling */
.main-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.main-section h2 {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.main-section p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 30px;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-item {
    background: #0a767e7a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 5px solid #3498db;
}

.image-item p {
    padding: 15px;
    font-size: 1em;
    color: #333;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

/* About Me Section */


/* About Me Section */
.about-section {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

.about-section h2 {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* About Image Container */
.about-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Image Styling */
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out, filter 0.3s ease;
    border-radius: 50%;
}

.about-image-container:hover .about-image {
    transform: rotate(10deg);
    filter: brightness(1.1);
}

/* About Text Styling */
.about-text {
    max-width: 500px;
    font-size: 1.2em;
    color: #333;
    animation: fadeIn 1.5s ease-in-out;
}
.about-text p{
    transform: scale(1.1);
}
.about-text p:hover{
    transform: rotate(1.5deg);
    filter: brightness(1.2);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/* My Services Section */
.services-section {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #3498db;
}

.service-card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background: #fff;
    margin: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: #f39c12;
}

.service-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card p {
    font-size: 1.1em;
    color: #555;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .service-card {
        width: 100%;
        margin: 10px 0;
    }
}
/* Why Choose Me Section */
.why-choose-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

/* Reasons Cards */
.choose-reasons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.reason-card {
    background: #fff;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInCard 1.5s ease-in-out;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.reason-card i {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reason-card:hover i {
    color: #f39c12;
}

.reason-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.reason-card p {
    font-size: 1.1em;
    color: #555;
}

/* Fade-in animation for cards */
@keyframes fadeInCard {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .reason-card {
        width: 100%;
        margin: 10px 0;
    }
}
/* contact page */
/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #bbbccae5;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #0c2738;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    background: #dce1ec;
    padding: 20px;
    width: 25%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 3em;
    color: #34dbd3;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 1.2em;
    color: #333;
}

.contact-item a {
    color: #044904;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-item {
        width: 100%;
        margin: 10px 0;
    }
}
.foot p{
    text-align: center;
    color: #9e094f;
}
.contact-item i.fab.fa-instagram {
    color: #E4405F; /* Instagram pink color */
}
