*{
    margin: 0;
    padding: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    
}

body.night-mode{
    background-color: black;
    color: white;
}

nav{
    background-color: white;
     box-shadow: none;
    padding: 0;
}

nav.night-mode{
    background-color: black;
    color: white;
}

nav ul{
   display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem; /* space between links */
    list-style: none;
    height: 80px;
    margin: 0;
    padding: 0 40px;
   

}

#logo img{
    width: 170px;
    height: auto;
    margin-right: 30px;
}

nav ul li{
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
}
/* Responsive: stack vertically on small screens */
@media (max-width: 900px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        padding: 20px 0;
    }
    #logo img {
        margin: 0 0 10px 0;
    }
    .toggle-buttons {
        margin: 10px 0 0 0;
    }
}

#anokha{
    color: #522fd4;
}
#anokha:hover{
    color: #6b4ae3;
}

.toggle-buttons img{
    width: 60px;
}

/* ---------------------------------------------------------------------- */
footer{
    background: linear-gradient(180deg, #4d3bdb 0%, #9747ff 100%);
    color: white;
}

footer .footerHead{
    display: flex;
    padding: 30px;
    justify-content: space-between;
    padding-top: 60px;
}

footer .footerBottom{
    text-align: center;
    padding: 20px 0;
}

.footerHead .rightText{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footerHead .leftText p{
    width: 40vw;
    line-height: 22px;
}

.social-icons i {
    font-size: 25px;
    margin: 0 10px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #007bff;
}

.iconsDiv h2{
    padding-top: 30px;
    padding-bottom: 20px;
}

.rightText img{
    width: 30%;
}

.rightText p:hover{
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 800px) {
    .footerHead{
        flex-direction: column;
    }

    .footerHead .leftText p{
        width: 100%;
    }

    .footerHead .rightText{
        padding-top: 30px;
    }
}
/* -------------------------------------------------------------- */

.herosection {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 0 100px;
    min-height: 75vh;
    background: #fff;
    margin-top: 40px;
}

.herosection .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    margin-right: 40px;
}


.herosection .right {
    width: 40%;
    padding: 20px;
}
.herosection .left h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #222;
}

.herosection .left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    color: #222;
}
.herosection .left h1 + h1 {
    color: #7c4dff;
    margin-bottom: 20px;
}


.herosection .left p {
    font-size: 1.2rem;
    margin-top: 30px;
    color: #222;
}
.herosection .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;           /* Remove top margin */
    margin-right: 100px;     /* Add right margin for spacing from the edge */
}
.hero-img {
   max-width: 100%;
    height: auto;       /* Fixed height */
    object-fit: cover;
    border-radius: 24px;
   
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: none;          /* Remove border */
    display: block;
}




/* ------------------------------------------------------ */
/* ...existing code... */
.section-2 {
    min-height: 400px;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  
    width: 100%;
}

#section-2 {
    background: none;
    box-shadow: none;
    display: flex;
    gap: 5rem;             /* Increased gap */
    padding: 0;
    grid-template-columns: none;
    max-width: 1200px;     /* Increased max width */
    width: 95%;            /* Wider section */
    margin: 0 auto;      /* Center the section */
}

.section-2 .left {
    
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 500px;   /* Increased from 400px */
    max-width: 750px;
    text-align: center;
}

.section-2 .left p {
    width: 100%;
    padding: 0;            /* Remove side padding */
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-2 .left p:last-child {
    color: #7c4dff;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.section-2 .right {
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.section-2 .right h2,
.section-2 .right h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.section-2 .right p {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    #section-2 {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .section-2 .right, .section-2 .left {
        max-width: 100%;
    }
}
/* ----------------------------------------------------- */
.section-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
   
    padding: 40px 0 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-3 .card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 16px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 260px;
    max-width: 350px;
}

.section-3 .card img {
    width: 160px;
    height: auto;
    margin: 24px auto 0 auto;
    padding-bottom: 30px;
    display: block;
}

/* Card background colors */
.section-3 .card.pink { background: #ffd6ee; }
.section-3 .card.blue { background: #d6eaff; }
.section-3 .card.yellow { background: #fff7b2; }
.section-3 .card.orange { background: #ffe6b2; }
.section-3 .card.purple { background: #f0e3ff; }

.section-3 .card:nth-child(1) { /* Pink */
  grid-column: 1;
  grid-row: 1;
}
.section-3 .card:nth-child(2) { /* Blue */
  grid-column: 2;
  grid-row: 1;
}
.section-3 .card:nth-child(3) { /* Yellow */
  grid-column: 3;
  grid-row: 1 / span 2;  /* ✅ Spans both rows */
}
.section-3 .card:nth-child(4) { /* Orange */
  grid-column: 1;
  grid-row: 2;
}
.section-3 .card:nth-child(5) { /* Purple */
  grid-column: 2;
  grid-row: 2;
}




/* Responsive: stack cards on small screens */
@media (max-width: 900px) {
    .section-3 {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 24px;
    }
    .section-3 .card {
        max-width: 95vw;
        width: 100%;
    }
    .section-3 .card:nth-child(4),
    .section-3 .card:nth-child(5) {
        grid-column: auto;
    }
}
/* ---------------------------------------------------------------- */
.section-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
   
    padding: 60px 0 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh; /* Ensures vertical centering on larger screens */
}
.journey-left {
    flex: 1.2;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.journey-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-img-box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: 2px solid #222;
    width: 400px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.star {
    position: absolute;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.star-top-right {
    top: -24px;
    right: -24px;
}
.star-bottom-left {
    bottom: -24px;
    left: -24px;
}

@media (max-width: 1000px) {
    .section-4 {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0;
        min-height: unset;
    }
    .journey-img-box {
        width: 95vw;
        min-width: 0;
        max-width: 98vw;
    }
}

.journey-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-left p {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.6;
}

.journey-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-img-box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: 2px solid #222;
    width: 500px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.star {
    position: absolute;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.star-top-right {
    top: -24px;
    right: -24px;
}
.star-bottom-left {
    bottom: -24px;
    left: -24px;
}
.journey-img-box img{
    background: #000;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}
@media (max-width: 1000px) {
    .section-4 {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0;
    }
    .journey-img-box {
        width: 95vw;
        min-width: 0;
        max-width: 98vw;
    }
}

/* _____________________________________________________ */
.contactform {
    background: #f3f1ff;
    min-height: 120vh;
    padding: 60px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contactform h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.contactform p {
    text-align: center;
    margin-bottom: 32px;
    color: #222;
    font-size: 1.05rem;
}

.contactform form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 32px 28px 24px 28px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contactform .row {
    display: flex;
    gap: 18px;
}

.contactform input[type="text"],
.contactform input[type="email"] {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    background: #fafaff;
}

.contactform textarea {
    min-height: 100px;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    outline: none;
    background: #fafaff;
}

.contactform input:focus,
.contactform textarea:focus {
    border: 1.5px solid #7c4dff;
}

.contactform button {
    margin: 0 auto;
    margin-top: 10px;
    background: #7c4dff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(124,77,255,0.08);
    transition: background 0.2s;
}

.contactform button:hover {
    background: #5a2fd1;
}

@media (max-width: 700px) {
    .contactform form {
        padding: 18px 6vw;
    }
    .contactform .row {
        flex-direction: column;
        gap: 12px;
    }
}

/* ________________________________________________________ */

footer {
    background: linear-gradient(180deg, #4d3bdb 0%, #9747ff 100%);
    color: white;
    padding: 0;
}

.footerHead {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 8vw 20px 8vw;
    gap: 40px;
}

.footerHead .leftText {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footerHead .leftText img {
    width: 180px;
    margin-bottom: 10px;
}

.footerHead .leftText p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    width: 100%;
}

.iconsDiv h2 {
    font-size: 1.1rem;
    margin: 18px 0 8px 0;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icons i {
    font-size: 25px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #ffd600;
}

.footerHead .rightText {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footerHead .rightText h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footerHead .rightText p {
    font-size: 1rem;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footerHead .rightText p i {
    font-size: 1.1em;
}

footer hr {
    border: none;
    border-top: 1px solid #b39ddb;
    margin: 0 8vw 0 8vw;
}

.footerBottom {
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 1rem;
    color: #e0e0e0;
}

.footerBottom a {
    color: #fff;
    margin: 0 10px;
    text-decoration: underline;
    font-size: 1rem;
}

.footerBottom a:hover {
    color: #ffd600;
}

@media (max-width: 900px) {
    .footerHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px 4vw 10px 4vw;
    }
    .footerHead .leftText img {
        width: 140px;
    }
}