* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-name {
    font-size: 1.5rem;
    font-weight: 500; /* Regular weight, adjust if the font has a bold variant */
    margin-left: 1rem;
    white-space: nowrap;
    text-transform: uppercase; /* Match the logo's uppercase style */
    font-family: 'Exo2-Regular', sans-serif; /* Use the custom font */
    letter-spacing: 1px; /* Matches the logo's spaced-out look */
}

.site-name .self-color {
    color: #f59e0b; /* Orange color for "Self" */
}

.site-name .discovery-color {
    color: #000000; /* Black color for "Discovery" */
}

nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f59e0b;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }
    .logo-container {
        margin-bottom: 0;
        margin-left: 10px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffffff;
        width: 200px;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
    nav {
        margin-right: 10px;
    }
    .site-name {
        margin-right: 10px;
    }
}

.hero {
    height: auto;
    display: flex;
    align-items: center;
       color: #ffffff;
}

.hero-background {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('192.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    color: #f59e0b;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
    padding: 0.9rem 2rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-buttons .btn-secondary {
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary:hover {
    background-color: #f59e0b;
    color: #1e293b;
    transform: translateY(-2px);
}

.hero-image img {
    max-width: 400px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-image img {
        max-width: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-image img {
        max-width: 320px;
    }
}


/* Existing styles remain unchanged except for the about section */

.about {
    padding: 5rem 0;
    background-color: #ffffff;
}

.main-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.main-title-container h1 span {
    color: #f59e0b;
}

.about-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 20px;
}

.image-stack {
    position: relative;
    width: 390px;
}

.front-image {
    max-width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nilesh-portrait {
    max-width: 100%;
}

.about-content {
    max-width: 600px;
    text-align: left;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-content ul li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.about-content .btn-primary {
    padding: 0.9rem 2rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-content .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 200px;
}

.stat strong {
    font-size: 2.5rem;
    color: #1e293b;
    display: block;
}

.stat span {
    font-size: 1.1rem;
    color: #4b5563;
}

.about-extended {
    margin-top: 3rem;
    text-align: left;
    padding: 0 20px;
}

.about-extended h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-extended h2 span {
    color: #f59e0b;
}

.about-extended h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.centered-title {
    text-align: center;
}

.about-extended h3 span {
    color: #f59e0b;
}

.about-extended p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.8;
}

.about-extended ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-extended ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-extended ul li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-box {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.client-box:hover {
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.client-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.client-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #1e293b;
}

@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .image-stack {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
    .about-content {
        max-width: 100%;
    }
    .clientele-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-title-container h1 {
        font-size: 2.5rem;
    }
    .about-content p,
    .about-extended p,
    .testimonial-item p {
        font-size: 1rem;
    }
    .image-stack {
        max-width: 400px;
    }
    .about-extended h3 {
        font-size: 1.5rem;
    }
    .client-box h4 {
        font-size: 1.1rem;
    }
    .client-box p {
        font-size: 0.9rem;
    }
}





.main-title-container1 {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title-container1 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.main-title-container1 h1 span {
    color: #f59e0b;
}

.about-flex1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 0 20px;
}

.image-stack1 {
    position: relative;
    width: 350px;
}

.front-image1 {
    max-width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nilesh-portrait1 {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content1 {
    max-width: 600px;
    text-align: left;
}

.about-content1 p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content1 ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-content1 ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-content1 ul li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.about-content1 .btn-primary {
    padding: 0.9rem 2rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-content1 .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 200px;
}

.stat strong {
    font-size: 2.5rem;
    color: #1e293b;
    display: block;
}

.stat span {
    font-size: 1.1rem;
    color: #4b5563;
}

.about-extended {
    margin-top: 3rem;
    text-align: left;
    padding: 0 20px;
}

.about-extended1 h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-extended1 h2 span {
    color: #f59e0b;
}

.about-extended1 h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.centered-title1 {
    text-align: center;
}

.about-extended1 h3 span {
    color: #f59e0b;
}

.about-extended1 p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.8;
}

.about-extended1 ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-extended1 ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-extended1 ul li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-box {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.client-box:hover {
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.client-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.client-box p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #1e293b;
}

@media (max-width: 1024px) {
    .about-flex1 {
        flex-direction: column;
        text-align: center;
    }
    .image-stack1 {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
    .about-content1 {
        max-width: 100%;
    }
    .clientele-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-title-container1 h1 {
        font-size: 2.5rem;
    }
    .about-content1 p,
    .about-extended1 p,
    .testimonial-item p {
        font-size: 1rem;
    }
    .image-stack1 {
        max-width: 400px;
    }
    .about-extended h3 {
        font-size: 1.5rem;
    }
    .client-box h4 {
        font-size: 1.1rem;
    }
    .client-box p {
        font-size: 0.9rem;
    }
}



/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.gallery h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.gallery h2 span {
    color: #f59e0b;
}

.gallery-point {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.gallery-point:hover {
    transform: translateY(-5px);
}

.gallery-point h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gallery-point h3::before {
    content: "* ";
    color: #f59e0b;
}

.gallery-point p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

.gallery-more .btn-primary {
    padding: 0.9rem 2rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gallery-more .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.gallery-points {
    display: grid;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-point h3 {
        font-size: 1.6rem;
    }
    .gallery-point p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }
    .gallery-images {
        grid-template-columns: 1fr;
    }
    .gallery-images img {
        height: 200px;
    }
    .gallery-point {
        padding: 1.5rem;
    }
    .gallery-point h3 {
        font-size: 1.4rem;
    }
    .gallery-point p {
        font-size: 1rem;
    }
}



/* Existing styles remain unchanged except for adding the uniqueness section */

.uniqueness {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.uniqueness h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.uniqueness h2 span {
    color: #f59e0b;
}

.uniqueness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.uniqueness-box {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uniqueness-box:hover {
    transform: translateY(-5px);
}

.uniqueness-icon {
    width: 250px; /* Increased from 60px to 80px */
    height: 250px; /* Increased from 60px to 80px */
    border-radius: 10%;
    overflow: hidden;
    
   
    display: flex;
    align-items: center;
    justify-content: center;
}

.uniqueness-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.uniqueness-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.uniqueness-box h3 strong {
    font-weight: 700;
}

.uniqueness-box p {
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .uniqueness h2 {
        font-size: 2rem;
    }
    .uniqueness-box h3 {
        font-size: 1.3rem;
    }
    .uniqueness-icon {
        width: 250px; /* Adjusted from 50px to 70px for smaller screens */
        height: 250px; /* Adjusted from 50px to 70px for smaller screens */
    }
}




.approach {
    padding: 5rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.approach h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.approach h2 span {
    color: #f59e0b;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.approach-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.approach-short {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.approach-short li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.approach-short li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.learn-more {
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.learn-more:hover {
    background-color: #f59e0b;
    color: #1e293b;
}

.approach-details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: 400px;
    overflow-y: auto;
}

.approach-details.active {
    display: block;
}

.approach-details ul {
    list-style: none;
    padding-left: 0;
}

.approach-details ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.approach-details ul li::before {
    content: "✔";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.btn-close {
    padding: 0.7rem 1.5rem;
    background-color: #e5e7eb;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-close:hover {
    background-color: #d1d5db;
}

@media (max-width: 768px) {
    .approach h2 {
        font-size: 2rem;
    }
    .approach-box {
        height: auto;
    }
    .approach-details {
        position: static;
        max-height: 300px;
    }
    .approach-title {
        font-size: 1.3rem;
    }
}

.story {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
}

.story-image-left img {
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.story h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.story h2 span {
    color: #f59e0b;
}

.story p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.coach-bio {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.coach-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.coach-bio h3 span {
    color: #f59e0b;
}

.coach-image-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.coach-image-right img {
    max-width: 220px;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .story-flex {
        flex-direction: column;
    }
    .coach-image-right {
        position: static;
        transform: none;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .story h2 {
        font-size: 2rem;
    }
    .story p {
        font-size: 1rem;
    }
    .story-image-left img {
        max-width: 250px;
    }
}

.blog {
    padding: 5rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.blog h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.blog h2 span {
    color: #f59e0b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: flex-end;
}

.blog-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item h3 {
    font-size: 1.5rem;
    padding: 1rem;
    color: #1e293b;
}

.blog-item .blog-short {
    font-size: 1.1rem;
    padding: 0 1rem 1rem;
    color: #4b5563;
}

.blog-item .btn-secondary {
    margin: 0 1rem 1rem;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.blog-item .btn-secondary:hover {
    background-color: #f59e0b;
    color: #1e293b;
}

.blog-details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: 400px;
    overflow-y: auto;
}

.blog-details.active {
    display: block;
}

.blog-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blog-more {
    margin-top: 2rem;
}

.blog-more .btn-primary {
    padding: 0.9rem 2rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.blog-more .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog h2 {
        font-size: 2rem;
    }
    .blog-item img {
        height: 150px;
    }
    .blog-item h3 {
        font-size: 1.2rem;
    }
    .blog-details {
        position: static;
        max-height: 300px;
    }
    .blog-grid {
        align-items: stretch;
    }
}

footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 5rem 0;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #d1d5db;
}

.contact-info ul li i {
    margin-right: 0.8rem;
    color: #f59e0b;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #f59e0b;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.contact-form {
    max-width: 500px;
    width: 100%;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #f59e0b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #1e293b;
    color: #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: #293548;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    background-color: #f59e0b;
    color: #1e293b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group .input-wrapper {
    flex: 1;
}

.footer-links {
    text-align: center;
    margin: 1.5rem 0;
}

.footer-links a {
    color: #f59e0b;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4b5563;
    font-size: 0.9rem;
    color: #d1d5db;
}

.footer-bottom i {
    color: #f59e0b;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f59e0b;
    color: #1e293b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
}

@media (max-width: 1024px) {
    .contact-flex {
        flex-direction: column;
        text-align: center;
    }
    .contact-form {
        margin-top: 2rem;
    }
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 2rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }
    .form-group {
        flex-direction: column;
    }
    .back-to-top {
        bottom: 10px;
        right: 10px;
    }
}