/* --------------------- Fonts 
------------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* --------------------- General
------------------ */


* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #150132;
    --secondary-color: #8EB800;
}

body {
    background-color: var(--primary-color);
}

h1 {
    font-size: 50px;
    /* 60px */
    font-weight: 700;
    line-height: 76px;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 60px;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.01em;
}

h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
}

p {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.02em;
}

button {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    border-radius: 46px;
    border: none;
    outline: none;
    color: white;
}

/* Hero Section Button Styles */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-hero {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    border-radius: 46px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    background-color: #7da600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 184, 0, 0.3);
}

.btn-secondary-hero {
    padding: 15px 25px;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    border-radius: 46px;
    border: 2px solid var(--secondary-color);
    outline: none;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-hero:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(142, 184, 0, 0.2);
}

.btn-secondary-hero i {
    font-size: 14px;
}


/* responsive General */

@media (max-width:768px) {
    h2 {
        font-size: 30px;
        font-weight: 600;
        line-height: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width:576px) {
    h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 50px;
    }

    h3 {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0.01em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width:380px) {
    h4 {
        font-size: 16px;
    }
}

/* --------------------- Header + Hero
------------------ */

#hero {
    background: url(./assets/images/hero-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 110vh;
    /* min-height: 100vh; */
    padding: 30px 0px;
    border-radius: 0px 0px 40px 40px;
}

.hero-container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
}

.hero img {
    max-width: 100%;
    height: auto;
}


header {
    padding: 0px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    max-width: 120px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    display: inline-block;
}

.nav-item a{
    margin: 0px 10px;
}

.nav-item a:hover{
    border-bottom: 1px solid white;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;

}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.cta-btn-nav {
    background-color: #82c843;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.cta-btn-nav:hover {
    background-color: #70b538;
}

/* responsive Hero + Header */

@media (max-width: 992px) {

    #hero {
        height: auto;
    }

    .hero-container {
        margin-top: 20px;
    }

    .hero-img {
        width: 80%;
        height: 100%;
    }

}

@media (max-width: 768px) {


    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }


    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero img {
        margin-top: 20px;
    }

}



/* --------------------- Parteners
------------------ */




/* --------------------- Tracking
------------------ */



.tracking-container {
    padding: 40px 20px;
    border-radius: 40px;
    background: url(./assets/images/tracking-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}


.tracking-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-step {
    width: 28%;
    min-width: 250px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tracking-step-head {
    border-radius: 15px;
    background-color: #060210;
    padding: 20px;
}

.tracking-step--body {
    margin-top: 1px;
    border-radius: 15px;
    background-color: #060210;
    padding: 20px;
}

.tracking-step p {
    width: 80%;
}

.tracking-step .icon img {
    width: 60px;
    height: 60px;
}

/* responsive Tracking */

@media (max-width: 768px) {
    .tracking-steps {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .tracking-step {
        width: 100%;
        max-width: 400px;
    }
}


@media (max-width: 576px) {
    #tracking {
        padding: 10px;
    }

    .tracking-container {
        padding: 40px 0px;
    }

    .tracking-steps {
        flex-direction: row;
        align-items: start;
    }
}



/* --------------------- FAQs
------------------ */


#faq {
    background: url(./assets/images/faq-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    padding: 40px 20px;
}

.faq-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.faq-item {
    padding: 20px 20px;
}

.faq-divider {
    border-bottom: 2px solid var(--secondary-color);
    opacity: 1;
}

.faq-open {
    background-color: #150132;
    /* padding: 20px 20px; */
    border-radius: 10px;
}


.faq-icon {
    background-color: var(--secondary-color);
    padding: 8px 12px 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    height: fit-content;
}

.faq-body {
    display: none;
    height: 0px;
    transition: height 1s ease;
}

.faq-item.faq-open .faq-body {
    display: block;
    height: auto;
}


/* responsive */

@media (max-width:576px) {
    .faq-item {
        padding: 10px;
    }
}


/* ---------------faq inner contauner 
-------------*/

.inner-container {
    background: url(./assets/images/faq-inner-container.png);
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.inner-container h2 {
    width: 80%;
}

/* responsive inner container */

@media (max-width:768px) {
    .inner-container h2 {
        width: 100%;
    }
}



/* --------------------- Contact
------------------ */


#contact {
    padding-top: 30px;
}


.form-container {
    background: url(./assets/images/contact-form-img.png);
    background-position: center;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    border-radius: 20px;
    padding: 30px;
    margin-top: 10px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex-basis: 48%;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    display: block;
    margin-bottom: 5px;
    color: white;
}

input,
textarea {
    width: 100%;
    padding: 15px 10px;
    border: none;
    border-radius: 6px;
    background-color: #1501328F;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.41px;
    color: white;
    box-sizing: border-box;
    margin-top: 10px;
}

input::placeholder,
textarea::placeholder {
    color: white;
}

textarea {
    resize: none;
    height: auto;
}

/* For mobile responsiveness */
@media (max-width: 768px) {

    .form-container {
        padding: 10px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        flex-basis: 100%;
    }
}


/* --------------------- Footer
------------------ */


#footer {
    background: url(./assets/images/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #060210;
    min-height: 350px;
    margin-top: 40px;
    width: 100%;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}


.footer-container a {
    text-decoration: none !important;
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 21.78px;
}

.footer-container span {
    color: white;
    font-size: 16px;
    font-weight: 300;
    line-height: 21.78px;
}


.footer a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d3d3d3;
}

/* Footer logo specific styling */
.footer-container .logo {
    max-width: 140px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
}

/* Footer other images (like Google Play) */
.footer img:not(.logo) {
    width: 150px;
}



.footer-bottom {
    background-color: rgba(6, 2, 16, 0.8);
    padding: 20px 0;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.social-icons a {
    color: #fff;
    font-size: 30px;
    margin-right: 15px;
}

.social-icons a:hover {
    color: #d3d3d3;
}

.quick-links ul li {
    margin-top: 10px;
}

/* responsive footer */


@media (max-width:768px) {
    .quick-links ul li {
        margin-top: 10px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        text-align: center;
        margin-top: 15px;
        padding: 15px 20px;
    }
    
    #footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 20px 15px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .footer-bottom p{
        font-size: 14px !important;
    }

    .footer-container a img:not(.logo) {
      width: 80px;
    }

    .footer-container .logo {
        max-width: 100px;
        width: auto;
    }
}

/* Additional responsive breakpoints for footer logo */
@media (max-width: 576px) {
    .footer-container .logo {
        max-width: 80px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .footer-container .logo {
        max-width: 160px;
    }
}


/* --------------------- Pop Up Form
------------------ */



#pop-up--form{
   position: absolute;
   top: 0;
   left:0;
   height: 200px;
   width: 300px;
   background-color: red;
}

/* --------------------- Report Sample Modal Styles
------------------ */

#reportSampleModal .modal-content {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

#reportSampleModal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#reportSampleModal .modal-footer {
    border-top: 1px solid rgba(255,255,255,0.2);
}

#reportSampleModal .btn-secondary {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

#reportSampleModal .btn-secondary:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    #reportSampleModal .modal-dialog {
        margin: 10px;
    }
    
    #reportSampleModal .modal-body img {
        max-height: 300px;
    }
}

/* --------------------- Partners Section Styles
------------------ */

#partners {
    padding: 60px 0;
}

#partners h3 {
    margin-bottom: 2rem;
    font-weight: 600;
}

.partners-grid {
    gap: 1rem;
}

.partner-logo-container {
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-logo-container:hover {
    background: rgba(255, 255, 255, 0.1);
    /* border-color: var(--secondary-color); */
    transform: translateY(-5px);
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* transition: filter 0.3s ease; */
    filter: none;
}

.partner-logo-container:hover .partner-logo {
    filter: none;
}

/* Responsive adjustments for more logos */
@media (max-width: 1200px) {
    .partners-grid .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (max-width: 992px) {
    .partners-grid .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
    
    .partner-logo-container {
        height: 80px;
        padding: 15px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .partners-grid .col-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    
    .partner-logo-container {
        height: 70px;
        padding: 10px;
    }
    
    .partner-logo {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        gap: 0.5rem;
    }
    
    .partner-logo-container {
        height: 60px;
        padding: 8px;
    }
    
    .partner-logo {
        max-height: 35px;
    }
}

/* --------------------- Contact Form Notifications
------------------ */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-success {
    border-left: 5px solid #28a745;
}

.notification-success .fas {
    color: #28a745;
}

.notification-error {
    border-left: 5px solid #dc3545;
}

.notification-error .fas {
    color: #dc3545;
}

.notification-content span {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Contact form loading state */
.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

