/* =================== BASE STYLES =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: rgb(253, 252, 253);
    overflow-x: hidden;
}

/* =================== NAVIGATION =================== */
.mainlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.logoimg {
    width: 280px;
}

.navs {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navs a {
    text-decoration: none;
    color: #fdb515;
    font-weight: 700;
}

.consultancy {
    background-color: black;
    padding: 10px 20px;
    color: #fdb515;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
}

.hamburger-menu-main {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fdb515;
}

/* =================== HERO SECTION =================== */
.herosection {
    /* Changed background to a galaxy image - REPLACE THIS URL with your actual galaxy image path */
    background-image: url("/Screenshot\ 2025-07-21\ 172639.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 90vh;
    width: 95%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    color: white; /* Keep text white for contrast */
}

.herosection h1 {
   font-size: 50px;
 font-weight: 800;
 /* background: conic-gradient(#edc800,#e3b600,#f3cf00); */
}




.herosection p {
    font-size: 1.3rem;
    margin-top: 20px;
}

.discover {
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #fdb515;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 200px;
}

/* =================== COMMON STYLES =================== */
.heading, .heading1, .heading2, .heading3, .heading4, .heading5 {
    text-align: center;
    color: #fdb515;
    font-size: 2.5vw;
    margin-top: 60px;
}

.page2, .page3, .page4, .page5, .page6, .page7 {
    width: 100%;
    padding: 60px 20px;
    position: relative;
}

/* =================== SERVICE CARDS =================== */
.servicecardholder {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.servicecard {
    width: 350px;
    border-radius: 20px;
    border: 2px solid black;
    padding: 30px 20px;
    background-color: white;
}

.headservice {
    color: #fdb515;
    text-align: center;
    margin-bottom: 15px;
}

.desc {
    text-align: center;
    font-size: 1rem;
    color: #444;
}

/* =================== ABOUT US =================== */
.allabout p {
    max-width: 1000px;
    margin: 20px auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* =================== FAQ =================== */
.questionscontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

.question {
    color: #fdb515;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.answer {
    color: #555;
    font-size: 1rem;
}

.rightimg {
    flex: 1;
    max-width: 350px;
}

/* =================== ARTICLES =================== */
.articlecontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.articles {
    text-align: center;
}

.articles img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.article1 {
    color: #fdb515;
    margin-top: 10px;
}

.image2{
    height: 280px;
    /* width: 300px; */
}

.image1{
    height: 240px;
}

/* =================== TESTIMONIALS =================== */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.testimonial-card {
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.profile h4 {
    margin: 0;
    font-size: 1rem;
}

.profile p {
    margin: 0;
    font-size: 0.9rem;
    color: gray;
}

/* =================== CONSULT NOW =================== */
.callit {
    display: block;
    margin: 30px auto;
    padding: 15px 30px;
    font-weight: 700;
    background-color: black;
    color: #fdb515;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}

/* =================== FOOTER =================== */
.light-site-footer {
    background-color: #f8f8f8;
    color: #333333;
    padding: 60px 0 30px;
    font-size: 0.95em;
}

.light-site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.light-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
}

.light-footer-social {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.light-footer-social a {
    color: #8a2be2;
    font-size: 2em;
    transition: color 0.3s ease;
}

.light-footer-social a:hover {
    color: #a040e0;
}

.light-footer-links-column h4 {
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.light-footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.light-footer-links-column ul li {
    margin-bottom: 8px;
}

.light-footer-links-column ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.light-footer-links-column ul li a:hover {
    color: #8a2be2;
    text-decoration: underline;
}

.light-footer-bottom-text {
    text-align: center;
    color: #777;
    
    font-size: 0.85em;
}

/* =================== MEDIA QUERY =================== */
@media (max-width: 768px) {
    .logoimg{
        width: 250px;

        margin-left: -15px;
    }
    .navs {
        display: none;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        background-color: rgb(253, 252, 253);
        padding: 20px;
        width: 100%;
    }

    .navs.active {
        display: flex;
    }

    .hamburger-menu-main {
        display: block;
    }

    .herosection {
        padding-left: 20px;
        height: auto;
        padding: 40px 20px;
    }

    .herosection h1 {
        font-size: 8vw;
    }

    .herosection p {
        font-size: 4.5vw;
    }

    .heading, .heading1, .heading2, .heading3, .heading4, .heading5 {
        font-size: 6vw;
        margin-top: 40px;
    }

    .rightimg {
        width: 80vw;
    }

    .light-footer-grid {
        grid-template-columns: 1fr;
    }
    .image1{
        height: 120px;
        /* width: 240px; */
    }
}


