/* General Styles */
body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    color: #2a2e45;
    background-color: #f7f7fb;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    margin: 0 0 0.5em 0;
    font-weight: 700;
}

p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 1em 0;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    color: #f37370;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2em;
}

nav ul li a {
    font-size: 1em;
    color: #2a2e45;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f37370;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(135deg, #f37370, #f98c72) ;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}
ul{
list-style:none}
.hero-content {
    animation: fadeIn 2s ease-in-out;
    margin: 0 auto;
}

 
.hero h2 {
    font-size: 3.5em;
}

.btn {
    padding: 0.8em 2em;
    background-color: #f37370;
    color: #fff;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d95d5a;
}

.btn-hero {
    font-size: 1.2em;
    margin-top: 1em;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2a2e45;
}

section {
    padding: 4em 0;
}

/* Services */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.service-item {
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Our Vision */
.steps {
    display: flex;
    justify-content: space-around;
}

.step {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.step h3 {
    margin-top: 0.5em;
}

.step i {
    color: #f37370;
}

/* Parallax Section */
.parallax {
    background-image: url(bg.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 6em 0;
}

/* Contact Form */
.contact-form {
    background-color: #f0f0f0;
    padding: 4em 0;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 0.8em;
    background-color: #f37370;
    color: #fff;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #d95d5a;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    padding: 2em 0;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid, .steps {
        flex-direction: column;
        align-items: center;
    }
    nav{
        display: none;
    }
}
