/* Add or modify styles as needed */

body {
    margin: 0;
    font-family: 'Indie Flower', sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Permanent Marker', sans-serif;
    font-weight: bold;
}

.logo {
    font-family: "Protest Riot", sans-serif;
    font-size: 2em;
    text-align: center;
}
.logonepali {
    margin-top: 0;
  font-family: "Teko", sans-serif;
}
.navbar {
    background-color: #FFF67E;
    color: #fff;
    font-weight: bold;
    font-size: larger;
}
.footer {
    background-color: #416D19;
    color: #fff;
    font-size: larger;
}
.footer a {
    color: #fff;
}
.sticky {
    position: sticky;
    top: 0;
}

.hero {
    background-image: url('../img/paresh-hero.jpg');
    background-size: fit;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    animation: fadeIn 1s ease-in-out;
    height: 100dvh;
    font-size: 1.5em;
}
/* td, tr {
    padding: 10px;
} */
table {
    border-spacing: 20px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6a36;
}

.services, .about, .contact {
    text-align: center;
    padding: 80px 0;
    min-height: 60dvh;
}

.services h2, .about h2, .contact h2 {
    margin-bottom: 40px;
}
.myname {
    background: linear-gradient(to top, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-clip: text;
    -webkit-text-fill-color: transparent;
      
}
.services .service, .about p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5em;
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

.form label, .form input, .form textarea {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.form textarea {
    resize: vertical;
}

.form button {
    background-color: #ff4500;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form button:hover {
    background-color: #ff6a36;
}

/* Example animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Add or modify styles as needed */

footer {
    padding: 50px 0;
}

.footer h3 {
    color: #fff;
}

.footer p {
    color: #ffffff;
}
.cprt {
    color: #fff;
    text-align: center;
}

.social-icons a,i {
    display: inline-block;
    margin-right: 10px;
    font-size: 24px;
}

.social-icons a:hover {
    color: #ff4500 !important;
}

/* Team Section Styles */
.team {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.team h2 {
    color: #343a40;
}

/* Team Member Card Styles */
.card {
    border: none;
    transition: transform 0.3s ease-in-out;
    min-height: 30dvh;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #6c757d;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #007bff;
    font-size: 20px;
}

section:nth-child(odd) {
    background-color: #BFEA7C !important;
}
section:nth-child(even) {
    background-color: #9BCF53 !important;
}