* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    z-index: 1;
    padding: 1rem 5%;
    background: white;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hamburger {
    color: black;
    text-decoration: none;
    font-size: 20px;
    display: block;
    cursor: pointer;
}

.dropdown {
    z-index: 2;
    display: none;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    position: fixed;
    top: 4rem;
    background-color: white;
}

.dropdown a {
    display: block;
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: black;
    width: 100%;
    text-align: center;
    /* border-bottom: 1px solid black; */
    transition: color 0.3s ease, font-size 0.3s ease;
}

.dropdown a:hover {
    color: #dd0000;
    font-size: 1rem;
}

.logo {
    height: 50px;
    width: auto;;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.nav-links a:hover {
    color: #dd0000;
    font-size: 1rem;
}

.hero {
    margin-top: 4rem;
    position: relative;
    height: 80vh;
    background: url('./assets/here-bg.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 2rem 5%;
    max-width: 700px;
}

.hero-title {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    color: #333;
    line-height: 1.6;
}

.hero-author {
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: right;
}

.why-choose-section {
    color: #f5f5f5;
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #1a237e 33.33%, #ffffff 33.33%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 2rem;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-choose-header p {
    color: #a7a5a5;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.why-choose-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-choose-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-section {
    color: #dd0000;
    padding: 4rem 5%;
}

.service-title {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content p {
    background-color: #f5f5f5;
    padding: 1rem;
}

.services-grid {
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    border-radius: 10px;
}

.learn-more {
    color: #dc0000;
    text-decoration: none;
    font-size: 0.9rem;
}

.about-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.plus-icon {
    width: 40px;
    height: 40px;
    background: #003366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-button {
    padding: 0.8rem 1.5rem;
    background: #dc0000;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.contact-section {
    background-color: #1a237e;
    padding: 4rem 5%;
    color: white;
}

.contact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-full {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.file-input-container {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.file-label {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

#file-upload {
    display: none;
}

.file-upload-btn {
    background: transparent;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.submit-btn {
    display: block;
    margin: 2rem auto;
    padding: 0.8rem 3rem;
    background: #dc0000;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-section {
    background: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}



.about-title {
    color: #007BFF;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.footer {
    background: #1a237e;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: black;
    font-size: 24px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    transition: transform 0.3sease;
    text-decoration: none;
}
  
.whatsapp-button:hover {
    transform: scale(1.1);
}

.phone-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: white;
    color: black;
    font-size: 24px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    transition: transform 0.3sease;
    text-decoration: none;
}
  
.phone-button:hover {
    transform: scale(1.1);
}
  

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .logo {
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hamburger, .dropdown {
        display: none;
    }
}

.dropdown.show {
   
    display: flex;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.item-indicator{
    display: inline-block;
    width: .5rem;
    height: .5rem;
    background-color: #0073e6;
    border-radius: 50rem;
    opacity: 1;
    transition: opacity .4s ease-in-out;
    margin-top: .5rem;
    margin-right: .5rem;

    @media (max-width:768px){
        opacity: 1;
    }
}

.content-item{
    position: relative;
    display: flex;
    cursor: pointer;

    @media (max-width:768px){
       gap: .5rem;
    }

    p {
        transform: translateX(0px);
        transition: all .3s ease-in-out;
        text-align: start;
        width: 100%;

        @media (max-width:768px){
            transform: translateX(0);
            width: 100%;
        }
    }

    &:hover{
        .item-indicator{
            opacity: 1;
        }

        p {
            transform: translateX(10px);
        }
    }
}


.question-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    p {
        color: #666;
        line-height: 1.6;
        border-radius: 10px;
        background-color: #f5f5f5;
        padding: 1rem;
        cursor: pointer;
    }
}

.qustion-action{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-direction: column;
    margin-bottom: 4rem;

    .q-action{
        background-color: #dd0000;
        color: white;
        padding: 1rem;
        text-decoration: none;
    }
}

.p-2{
    padding: 0 2rem;
}

.text-center{
    text-align: center;
}

.learn-more-personal{
    text-align: center;

    a{
        color: red;
        text-decoration: none;
        text-transform: capitalize;
        font-style: italic;
        transition: all .3s ease-in-out;
        padding: .3rem .7rem;
        border-radius: 50rem;

        &:hover{
            background: #ff00001c;
        }
    }
}

.about-content-container{
    background-color: #5ba5f029;
    border-radius: .8rem;
    padding: .4rem .8rem;
    border: 1px solid #0073e6;
    color: #0073e6;
    font-weight: 600;
}

.hero-main-text{
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    color: #003366;
}