/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #ffffff, #726ecf);
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #e6c5e6;
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #c5c5c5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    position: absolute;
    left: 20px;
    top: 60%;
    transform: translateY(-50%);
}

header .logo img {
    max-width: 150px;
    height: 60px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    background-color: #b25929 ;
    border-radius: 5px;
    transform: scale(1.1);
}

/* Section Styles */
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 30px auto;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

section .image {
    width: 30%;
    position: relative;
    z-index: 1;
}

section .image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: -35px;
    transition: transform 0.3s ease;
    filter: drop-shadow(1px 1px 20px rgb(255, 255, 255));
}

/* Apply pulse animation only to the first image */
.section-three .image img {
    animation: pulse 2s ease-in-out infinite; /* Pulse animation */
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Slightly larger scale */
    }
    100% {
        transform: scale(1);
    }
}

/* Section Content */
section .content {
    width: 50%;
   /* padding: 20px;*/
    z-index: 1;
    text-align: center; /* Center-align text */
}

section .content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #4169e1;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

section .content h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #fff;
    opacity: 0.5;
}
.section-two .image img {
    animation: none;
    height: 300px;
    margin-bottom: 10px;
}

/* Hover Effect for Text */
section .content h2:hover {
    color: #ff9933; /* Change text color on hover the orignal is f2b600 */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}

section .content p {
    font-size: 1.1em;
    color: #eee;
}

/* Section One (Static Image) */
.section-one {
    flex-direction: row;
    background: linear-gradient(to bottom right, #6187e1, #76c2dc);
}

/* Section Two (Static Image) */
.section-two {
    flex-direction: row-reverse;
    background: linear-gradient(to bottom right, #4facfe, #c06f5b);
}

/* Section Three (Animated Image) */
.section-three {
    height: 75vh;
    flex-direction: row;
}

/* Footer Section */
footer {
    width: 100%;
    background-color: #333;
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    position: relative;
    bottom: -7px;
}

footer p {
    font-size: 1em;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        height: auto;
    }

    .section .image {
        width: 100%;
        margin-bottom: 15px;
    }

    .section .content {
        width: 90%;
        padding: 10px;
    }

    .section .content h2 {
        font-size: 1.8em;
        color: #000080;
    }

    .section .content p {
        font-size: 1em;
        color: black;
    }

    .about-content {
        width: 100%;
        padding: 20px;
    }

    .about-title {
        font-size: 1.5em;
    }
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 5%;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 90%;
    text-align: center;
}

.about-title {
    color: #0b7ff2;
    text-align: center;
}

.about-title:hover {
    color: #00ff37;
    transition: color 3s ease-in-out; /* Smooth color transition */
}

/* Social media icons */
.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

/* Hover effect for social icons */
.social-icon:hover {
    color: #2c3e50;
    transform: translateY(-5px);
}

/* Hover effect for social icons with delay */
.social-icon:nth-child(1):hover {
    color: #ff0055;
    transform: translateY(-8px);
}

.social-icon:nth-child(2):hover {
    color: #0051ff;
    transform: translateY(-8px);
}

.social-icon:nth-child(3):hover {
    color: #ff0000;
    transform: translateY(-8px);
}

/* Adding smooth transition for social icons */
.social-icon {
    transition: color 0.3s ease, transform 0.3s ease;
}



































.works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 20px;
}
h1 {
    font-size: 24px;
    margin-bottom: 40px;
}
.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    max-width: 250px;
    margin: 10px;
}
.step img {
    
    width: 50px;
    height: 50px;
}
.step h2 {
    font-size: 18px;
    margin: 20px 0 10px;
}
.step p {
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
    .step {
        max-width: 100%;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px; /* Adjusted to the top-right of the navbar */
    z-index: 1001; /* Ensure it's above other elements */
}

/* Side Menu (initially hidden) */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: #e6c5e6;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.side-menu ul {
    list-style-type: none;
    padding: 50px 20px;
    margin: 0;
}

.side-menu ul li {
    margin: 20px 0;
}

.side-menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.side-menu ul li a:hover {
    background-color: #b25929;
    border-radius: 5px;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        height: 60px;
    }

    header .logo img {
        
        height: 50px;
    }

    nav ul {
        display: none; /* Hide default menu on mobile */
    }

    .hamburger {
        display: block; /* Show hamburger menu */
    }
}

/* When menu is open */
.side-menu.open {
    right: 0; /* Slide the menu in */
}

/* Toggle the hamburger and cross icon */
.hamburger i {
    font-size: 30px;
    color: #000;
    display: block; /* Ensure icons are displayed as blocks */
}

.hamburger .fa-times {
    display: none; /* Hide the cross icon by default */
}

/* When the hamburger div has 'open' class, show fa-times and hide fa-bars */
.hamburger.open .fa-bars {
    display: none; /* Hide the hamburger icon */
}

.hamburger.open .fa-times {
    display: block; /* Show the cross icon */
}

/* Content Blur Effect (applies to content behind the sidebar) */
.content.blur {
    filter: blur(5px); /* Apply blur effect to content */
    transition: filter 0.3s ease; /* Smooth transition */
}


/*new css for main heading image*/


        .section-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 1400px;
            height: 600px;
            margin: 50px auto;
        }
        .imagemain {
            position: relative;
            width: 50%;
            height: 450px;
            overflow: hidden;
            border-radius: 10px;
        }
        .imagemain img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            animation: scrollImages 6s infinite alternate ease-in-out;
        }
        @keyframes scrollImages {
            0% { transform: translateY(0); }
            100% { transform: translateY(-20px); }
        }
        .contentmain {
            width: 45%;
        }
        .contentmain h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .contentmain p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-main {
                flex-direction: column;
                height: auto;
                padding: 30px;
            }
            .imagemain {
                width: 100%;
                height: 300px;
            }
            .contentmain {
                width: 100%;
                text-align: center;
            }
            .contentmain h2 {
                font-size: 20px;
            }
            .contentmain p {
                font-size: 14px;
            }
        }























































