* {
    box-sizing: border-box;
}

body {
    margin: 0;
    /* font-family: Inter, sans-serif; */
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: rgb(0, 0, 0);
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    border-bottom: 2px solid rgb(220, 220, 220);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
/* .navbar h2{
    color: black;
} */

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

.navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.8;
    
}

.navbar a button {
    padding: 10px 20px;
    background: #ffbf00;
    border: none;
    color: black;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.navbar a button:hover {
    background: #111827;
    color: white;
}

.navbar a:hover {
    opacity: 1;
}

/* HAMBURGER ICON */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* TABLET */

@media (max-width: 992px) {

    .navbar {
        padding: 20px 30px;
    }

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

    .navbar a {
        margin-left: 15px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid #eee;

        display: none;
    }

    nav.active {
        display: flex;
    }

    .navbar a {
        margin-left: 0;
    }

}

/* HERO SECTION */


 .hero {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
    padding-top: 200px;

     /* padding: 140px 60px 80px; */
     min-height: 100vh;
     position: relative;
 }

 .hero-bg-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;

     object-fit: cover;
     z-index: -1;
     opacity: 0.25;
 }

.hero-left,
.hero-right {

    position: relative;
    z-index: 2;

}

/* LEFT CONTENT */

.hero-left {
    text-align: left;
    max-width: 520px;

}

.hero-left h1 {

    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;

}

.hero-left p {

    margin-top: 20px;

    font-size: 16px;

    color: #636363;

}

/* CTA */

.hero-cta {

    margin-top: 30px;

}

.hero-cta button {

    padding: 16px 30px;

    border: none;

    /* border-radius: 40px; */

    background: #ffbf00;

    color: rgb(0, 0, 0);

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;

    border-radius: 6px;
}

.hero-cta button:hover {
    background: #111827;
    color: white;

}

/* RIGHT IMAGE */

 .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}
 
.hero-video {
    width: 850px;
    max-width: 100%;
    border-radius: 10px;

}


@media(max-width:900px) {

    .hero {

        flex-direction: column;
        text-align: center;

    }

    .hero-right {

        margin-top: 40px;

    }

    .hero-left h1 {

        font-size: 36px;

    }

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }

    /* VIDEO FIRST */
    .hero-right {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    /* TEXT SECOND */
    .hero-left {
        text-align: center;
        order: 2;
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-video {
        width: 100%;
    }

}
/* SECTIONS */

section h2{
    font-size: 30px;
}

section {

    padding: 60px 120px;
    text-align: center;

}




 .about-container {

     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
padding-top: 80px;
     /* padding: 80px 60px; */
     max-width: 1200px;
     margin: auto;

 }

/* IMAGE */

.about-image img {

    width: 450px;
    max-width: 100%;

    border-radius: 10px;

}

/* CONTENT */

.about-content {

    max-width: 600px;

}

.about-content h2 {

    font-size: 36px;
    margin-bottom: 20px;

    color: #0f172a;

}

.about-content p {

    margin-bottom: 16px;
    line-height: 1.7;
    text-align: left;
    color: #475569;

}

@media (max-width:768px) {
    section{
        padding: 60px 20px;
    }

    .about-container {

        flex-direction: column;
        text-align: center;

        padding: 60px 20px;
        gap: 30px;
    }

    .about-image {
        display: none;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        max-width: 420px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        text-align: center;
        font-size: 15px;
    }

}

/* CARDS */
/* SERVICES SECTION */

.services{

    /* padding:100px 80px; */
    background:#F5F7F8;
    text-align: left;

}

/* HEADER */

.services-header{
    align-items:center;
    margin-bottom:50px;

}
.services-header div{
    text-align: center;
}

.small-title{

    color:#64748B;
    font-size:14px;
}

.services-header h2{
    text-align: center;
    
    margin-top:5px;

}

/* BUTTON */


/* GRID */


 .services-grid {
     display: flex;
     justify-content: center;
     gap: 25px;
     flex-wrap: wrap;
 }

/* CARD */


.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;

    width: 32%;
    /* 3 cards per row */

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;

    position: relative;
    overflow: hidden;
}

.service-card:hover{

    transform:translateY(-6px);

}

/* ICON */

.icon{

    font-size:28px;
    margin-bottom:15px;

}

/* TEXT */

.service-card h3{

    margin-bottom:10px;

}

.service-card p{

    color:#64748B;
    font-size:16px;

}
.more-text {

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.4s ease;

}

.service-card.active .more-text {

    max-height: 400px;

}

.service-card {

    position: relative;

    background: white;
    border-radius: 12px;

    padding: 30px 20px;

    width: 380px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    overflow: hidden;

}

/* animated border */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 2px solid transparent;

    border-radius: 12px;

    pointer-events: none;

}

/* hover animation */

.service-card:hover::before {

    border-color: #ffbf00;
    animation: borderDraw 0.6s linear;

}

@keyframes borderDraw {

    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
    }

    25% {
        clip-path: polygon(100% 0, 0 0, 0 0, 0 0);
    }

    50% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 0 100%);
    }

    75% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }

    100% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }

}

/* LEARN MORE */

.learn{

    display:inline-block;
    margin-top:15px;

    color:#f59e0b;
    font-weight:600;
}
.learn:hover{
    cursor: pointer;
  

}

#process{
    background:#F5F7F8;
}


.process-video {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    

}

.process-video video {

    width: 100%;
    /* max-width: 100%; */
    height: 50%;

    border-radius: 12px;


}

.pricing-section {

background: white;
    

}

/* wrapper */

.pricing-wrapper {

    display: flex;

    justify-content: center;

    gap: 40px;

    margin-top: 50px;

    flex-wrap: wrap;

}

/* card */

.pricing-card {



background: #f3f6fb;

    padding: 40px;

    width: 320px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: left;

    transition: all 0.3s ease;

    border: 2px solid transparent;

}

.pricing-card:hover {

    transform: translateY(-6px);
    
    border: 2px solid #2563eb;

}

/* highlight card */

.pricing-card.highlight {

    border: 2px solid #2563eb;

}

/* title */

.pricing-card h3 {

    margin-bottom: 15px;

}

/* price */

.price {

    font-size: 34px;

    font-weight: 700;

    color: #16a34a;

    margin-bottom: 20px;

}

.price span {

    font-size: 14px;

    color: #64748b;

}

/* list */

.pricing-card ul {

    list-style: none;

    padding: 0;

}

.pricing-card ul li {

    margin: 10px 0;

    color: #475569;

}

/* button */

.pricing-card button {

    margin-top: 25px;

    padding: 12px 24px;

    border: none;

    border-radius: 8px;

    background: #ffbf00;

    color: black;

    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

}

.pricing-card button:hover {

    background: #111827;
    color: white;

}

@media (max-width:768px){
    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        
}

/* FORM */

form input,
form select {

    display: block;

    width: 300px;

    margin: 12px auto;

    padding: 12px;

    border-radius: 6px;

    border: none;

}

form button {

    padding: 12px 25px;

    background: linear-gradient(90deg, #6366f1, #38bdf8);

    border: none;

    color: white;

    border-radius: 6px;

    cursor: pointer;

}

/*testimonials*/
.testimonial-section {

    overflow: hidden;
    text-align: center;
    /* padding: 0px 60px; */

}

.testimonial-container {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;

}

.testimonial-track {

    display: flex;
    gap: 30px;

    animation: scroll 30s linear infinite;

}

/* CARD */

.testimonial-card {

    min-width: 380px;
    max-width: 380px;
    background: #dfe0e2;

    border: 1px solid #ffe196;

    border-radius: 12px;

    padding: 25px;

    text-align: left;

}

/* RATING */

.rating {

    color: #fbbf24;

    font-size: 25px;
    
    margin-bottom: 10px;

}

@media (max-width:768px) {

    .testimonial-section {
        padding: 0 20px;
    }

    .testimonial-track {

        animation: none;
        /* stop auto scroll */

        overflow-x: auto;
        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card {

        min-width: 100%;
        max-width: 100%;

        scroll-snap-align: center;
    }

}



/*Faq section*/
/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq-section {

    background: #F5F7F8;

}

.faq-section h2 {

    text-align: center;

    margin-bottom: 50px;

    font-size: 36px;

}

/* ========================= */
/* CONTAINER */
/* ========================= */

.faq-container {

    max-width: 900px;

    margin: auto;

}

/* ========================= */
/* ITEM */
/* ========================= */

.faq-item {

    background: white;

    border-radius: 10px;

    margin-bottom: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition: 0.3s;

}

/* hover effect */

.faq-item:hover {

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}

/* ========================= */
/* QUESTION */
/* ========================= */

.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 25px;

    cursor: pointer;

}

.faq-question h3 {

    font-size: 18px;
    text-align: left;
    margin: 0;

    color: #0f172a;

}

/* ========================= */
/* PLUS ICON */
/* ========================= */

.faq-toggle {

    font-size: 22px;

    font-weight: bold;

    color: #ffbf00;

    transition: 0.3s;

}

/* ========================= */
/* ANSWER */
/* ========================= */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;

    padding: 0 25px;

}

.faq-answer p {

    margin: 15px 0;
    text-align: left;
    color: #475569;

    line-height: 1.6;

}
.faq-answer ul {

    list-style: disc;
    text-align: left;
    padding-left: 40px;

    color: #475569;

}

/* ========================= */
/* ACTIVE */
/* ========================= */

.faq-item.active .faq-answer {

    max-height: 400px;

}

.faq-item.active .faq-toggle {

    transform: rotate(45deg);

}

/* ========================= */
/* SHOW ONLY FIRST 6 */
/* ========================= */

.faq-container .faq-item {

    display: none;

}

.faq-container .faq-item:nth-child(-n+6) {

    display: block;

}

/* when expanded */

.faq-container.expanded .faq-item {

    display: block;

}

/* ========================= */
/* SHOW MORE BUTTON */
/* ========================= */

.faq-show-more {

    text-align: center;

    margin-top: 30px;

}

.faq-show-more button {

    padding: 12px 28px;

    border: none;

    background: #e2e8f0;

    color: black;

    border-radius: 8px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}

.faq-show-more button:hover {

    background: #cbd5e1;

    transform: translateY(-2px);

}

/* TEXT */

.testimonial-card p {

    opacity: 0.9;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 20px;

}

/* USER */

.user {

    display: flex;
    align-items: center;
    gap: 12px;

}

.user img {

    width: 40px;
    height: 40px;

    border-radius: 50%;

}

.user h4 {

    margin: 0;

}

.user span {

    font-size: 14px;
    opacity: 0.7;

}
.testimonial-track:hover {

    animation-play-state: paused;

}

/* ANIMATION */

@keyframes scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {

    padding: 120px 80px;

    background: #F5F7F8;

}

/* ============================= */
/* LAYOUT */
/* ============================= */

.contact-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

    max-width: 1200px;

    margin: auto;

    flex-wrap: wrap;

}

/* ============================= */
/* LEFT SIDE */
/* ============================= */

.contact-left {

    max-width: 520px;

}

.contact-left h2 {

    font-size: 40px;

    font-weight: 700;

    color: #0f172a;

    margin-bottom: 15px;

    line-height: 1.2;

}

.contact-left p {

    font-size: 16px;

    line-height: 1.6;

    color: #64748b;

    margin-bottom: 30px;

}

/* ============================= */
/* VIDEO */
/* ============================= */

.contact-video {

    width: 100%;

    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

}

/* ============================= */
/* RIGHT SIDE FORM CARD */
/* ============================= */

.contact-right {

    background: white;

    padding: 40px;

    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    width: 420px;

    transition: all 0.3s ease;

}

.contact-right:hover {

    transform: translateY(-4px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);

}

.contact-right h3 {

    margin-bottom: 20px;

    font-size: 22px;

    font-weight: 600;

    color: #0f172a;

}

/* ============================= */
/* FORM */
/* ============================= */

.contact-right form {

    display: flex;

    flex-direction: column;

    gap: 10px;

}
.contact-right form label {
    text-align: left;
    font-size: 14px;
    color: #475569;
    padding-left: 20px;
    margin-top: 10px;
}

/* INPUTS */

.contact-right input,
.contact-right select,
.contact-right textarea {
padding: 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    width: auto;
    margin: 0;
    transition: all 0.2s ease;
    background: #fff;

}

/* INPUT FOCUS */

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {

    outline: none;

    border-color: #6366f1;

    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);

}

/* TEXTAREA */

.contact-right textarea {

    height: 110px;

    resize: none;

}

/* ============================= */
/* BUTTON */
/* ============================= */

.contact-right button {

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: #ffbf00;

    color: black;

    font-weight: 600;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s ease;

}

.contact-right button:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);

}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media(max-width:900px) {

    .contact-container {

        flex-direction: column;

        text-align: center;

    }

    .contact-left {

        max-width: 100%;

    }

    .contact-right {

        width: 100%;

    }

}

@media (max-width: 768px){
    .contact-section {
        padding: 60px 20px;
    }
        .contact-video{
            display: none;
        }
                .contact-container{
                    gap:10px;
                }
}


/* FOOTER */

/* FOOTER */

.footer{

background:linear-gradient(180deg, #ffffff, #a9a7a7da);;
color:black;

padding:80px 80px 30px;

}

/* CONTAINER */

.footer-container{

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:50px;

}

/* COLUMN */

.footer-col{

max-width:260px;

}

.footer-col h3{

margin-bottom:20px;

}

/* LINKS */

.footer-col ul{

list-style:none;
padding:0;

}

.footer-col ul li{

margin-bottom:10px;

}

.footer-col ul li a{

color:black;
text-decoration:none;
opacity:0.8;

}

.footer-col ul li a:hover{

opacity:1;

}

/* SOCIAL ICONS */

.social-icons{

margin-top:20px;
display:flex;
gap:10px;

}

.social-icons a{

background:#fbbf24;
color:black;

width:35px;
height:35px;

display:flex;
align-items:center;
justify-content:center;

border-radius:6px;

text-decoration:none;

}

/* BOTTOM BAR */

.footer-bottom{

margin-top:60px;

padding-top:20px;

border-top: 1px solid rgb(0 0 0 / 20%);

display:flex;
justify-content:space-between;
flex-wrap:wrap;

}

.footer-links a{

margin-left:20px;
color:black;
text-decoration:none;

opacity:0.8;

}
@media (max-width: 768px){
    .footer{
        padding: 60px 20px;;
    }
        .footer-container{
            flex-direction: column;
            padding: 0px 10px;
        }
                .footer-container{
                    gap:10px;
                }
                                .footer-links a{
                    margin-left:0px;
                                }
}

@media (max-width:768px) {
    section {
        padding: 60px 20px;
    }
}