/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */



 /* General body styling */
body{
    background-color: #fefde6;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 100px;
    overflow-x: hidden;
}

html{
    overflow-x: hidden;
}



.help-btn {
    font-weight: 700;
    text-transform: capitalize;
    padding: 7px 12px;
    border-radius: 8px;
    outline: none;
    border: none;
}


/*Custom button*/
.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #1b1d22;
    color: #c7c7d0;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

.custom-button .icon {
    margin-right: 8px;
}

#custom-button2{
    background-color: #fefde6;
    color: #000;
    border: 1px solid black;
}


/* Header styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    border-radius: 50px;
    margin: 20px;
    padding: 20px 10px;
    width: 90%;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 15%;
}

.logo img {
    width: 100%;
    margin-left: 10px;
}

.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    margin: 0px;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 400;
    color: white;
    text-decoration: none;
}

.nav-links .active {
    background-color: #ffeb3b;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: black;
    text-decoration: none;
}
/* General styling for navigation */
.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
}

.dropdown {
    position: relative;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 102%;
    left: 0;
    background-color: #fefde6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #000000;
    border-radius: 4px;
    padding: 10px;
    z-index: 1000;
}

.dropdown-toggle{
    pointer-events: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: black;
    margin-top: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.right-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
}

.right-menu a {
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
    color: white;
}

.button.get-started {
    background-color: #ffeb3b; 
    padding: 15px 5px 15px 15px; 
    border-radius: 50px;
    font-weight: 400;
    color: black;
    border: 2px solid #ffeb3b;
    text-decoration: none;
}

.button.get-started:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}

.arrow {
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #fff674;
}

.button.get-started:hover .arrow{
   color:black;
}

.icon-side{
    display: none;
}

.hamburger {
    cursor: pointer;
    font-size: 24px;
    color: white;
    margin-right: 20px; 
}

.hamburger .line {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
}

.flyout-menu {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 70%; 
    height: 100%; 
    background-color: black;
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateX(-100%); 
}

.flyout-menu.active {
    display: flex;
    transform: translateX(0); 
}

.flyout-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.flyout-menu .nav-links,
.flyout-menu .right-menu {
    display: flex;
    flex-direction: column;
}

.close-button {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px; 
    color: white;
    margin-bottom: 20px;
}


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

    .logo{
        width: 20%;
    }

    .nav-links{
        margin-top: 50px;
        justify-content: start;
        align-items: start;
        text-align: start;
    }
    
    .nav-links a {
        margin: 0px;
        padding: 16px;
        text-align: start;
    }

    .right-menu .login-button{
       display: none;
    }

    .right-menu .button{
        margin-top: 20px;
    }

    .icon-side{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }
    
    .icon-side a {
        text-decoration: none;
        font-weight: 600;
        color: white;
    }
}


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

    .logo{
        width: 30%;
    }

    .nav-links{
        margin-top: 50px;
        justify-content: start;
        align-items: start;
        text-align: start;
    }
    
    .nav-links a {
        margin: 5px;
        padding: 16px;
        text-align: start;
    }

    .right-menu .login-button{
       display: none;
    }

    .right-menu .button{
        margin-top: 20px;
    }

    .icon-side{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }
    
    .icon-side a {
        text-decoration: none;
        font-weight: 600;
        color: white;
    }
}




/* Hero Section Styling */
.hero-section {
    background-color: #fefde6;
    padding: 50px 20px;
    text-align: center;
    color: black;
    position: relative;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 50px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.hero-buttons .button {
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    border: 2px solid black;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-more-button{
    color: #2b2b2b;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.learn-more-button i{
    text-decoration: none;
    font-size: 10px;
    background-color: black;
    border-radius: 50%;
    color: white;
    padding: 7px 9px;
}

.get-started:hover {
    background-color: black;
    color: white;
}

#sec-button i{
    color: black;
}

#sec-button{
    background-color: black;
    color: white;
    padding: 10px; 
    border-radius: 20px;
}

#sec-button:hover{
    background-color: #ffeb3b; 
    color: black;
}

#sec-arrow{
    border-radius: 10px;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 30px;
}

.image-group {
    display: flex;
    align-items: center;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #dbdbdb;
    margin-left: -10px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.count-overlay {
    background-color: white;
    color: var(--text-color);
    border-radius: 50%;
    padding: 15px 8px;
    font-size: 10px;
    font-weight: bold;
    margin-left: -10px;
    z-index: 2;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid #dbdbdb;
}

.rating-text {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}

.stars i {
    font-size: 20px;
    color: gold
}

.rating-text p {
    font-size: 16px;
    color: #4d4d4d;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-container {
        margin-top: 40px;
    }
    
    .stars i {
        font-size: 15px;
    }
    
    .rating-text p {
        font-size: 14px;
    }
    
}

@media(max-width: 400px) {

    .hero-section {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    
    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-buttons .button {
        border-radius: 10px;
        font-weight: 600;
        font-size: 12px;
        text-decoration: none;
        color: black;
        border: 2px solid black;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .learn-more-button{
        color: #2b2b2b;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .get-started:hover {
        background-color: black;
        color: white;
    }
    
    .testimonial-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 20px;
        margin-left: 30px;
    }
    
    .image-group {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .rating-text {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 5px;
    }
    
    .stars i {
        font-size: 15px;
        color: gold;
    }
    
    .rating-text p {
        font-size: 13px;
        color: #4d4d4d;
        text-align: start;
        margin: 0;
    }   
}



/*2nd Section*/

.sec-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0px;
}

.background-image{
    width: 100%;
}

.background-image img {
    width: 100%;
    margin: 0;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
    border: 10px solid #dbdbdb;
}

.overlay-image {
    width: 85%;
    margin-top: -33%;
    border-radius: 20px;
    z-index: 10;
}

.overlay-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 0;
}


@media (max-width:786px){
    .sec-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        max-width: 700px;
        margin: 20px;
    }

    .background-image {
       width:   100%;
       margin: auto;
    }

    .background-image img {
        height: auto;
        border-radius: 10px;
        opacity: 0.9;
        border: 10px solid #dbdbdb;
    }

    .overlay-image {
        width: 85%;
        margin-top: -33%;
        border-radius: 20px;
        z-index: 10;
    }

    .overlay-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

}



@media (max-width: 400px){
    .sec-section {
        max-width: 350px;
    }

    .background-image {
       width: 100%;
       margin: auto;
    }

    .background-image img {
        height: auto;
        border-radius: 10px;
        opacity: 0.9;
        border: 10px solid #dbdbdb;
    }

    .overlay-image {
        width: 85%;
        margin-top: -33%;
        border-radius: 20px;
        z-index: 10;
    }

    .overlay-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

}

/* Third Section */
.third-section {
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.before-section-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #4d4d4d;
    width: 100%;
}

.trusted-brands {
    text-align: center;
    font-size: 18px;
    color: #aaaaaa;
    font-weight: 500;
}

.third-section .logo-images{
    display: flex;
    gap: 50px;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 50px;
    flex-wrap: wrap;
}


.third-section .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.third-section .section-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 56px;
    text-align: center;
    width: 80%;
}

.third-section .section-title p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #ccc;
}

.third-section .cards-container {
    display: flex;
    flex-direction: row;
    width: 1300px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.third-section .card {
    background-color: #2b2b2b;
    border-radius: 20px;
    padding: 0px;
    align-self: center;
    text-align: left;
    background-size: contain;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 
    inset 0 0 15px rgba(255, 255, 255, 0.1); 
    border: 1px solid white;
}

.third-section .card1 {
  background-position: calc(100%) calc(100%);
  background-repeat: no-repeat;
  height: 400px;
  width: 30%;
}

.third-section .card2{
    background-image: url(/Assets/index/section3/1.png);
    background-position: calc(100%) calc(100%);
    background-repeat: no-repeat;
    height: 420px;
    width: 40%;
}

.third-section .card3{
    background-image: url(/Assets/index/section3/3.png);
    background-position: calc(100%) calc(100%);
    background-repeat: no-repeat;
    height: 400px;
    width: 30%;
}


.third-section .card p{
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    padding-left: 20px;
    color: #f2f2f2;
}

.third-section .card h3{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    padding-top: 10px;
    padding-left: 20px;
}

@media(max-width: 768px){

    .before-section-title{
        gap: 20px;
        padding-bottom: 20px;
        justify-content: center;
        align-items: center;
        width: 90%;
    }
    
    .trusted-brands {
        font-size: 15px;
    }
    
    .third-section .logo-images{
        gap: 100px;
        padding-bottom: 20px;
    }

    .third-section .section-title h2 {
        font-size: 25px;
        line-height: 30px;
    }
    
    .third-section .section-title p {
        font-size: 15px;
        font-weight: 400;
        margin-bottom: 40px;
        color: #ccc;
        width: 90%;
    }
    
    .third-section .cards-container {
        display: flex;
        flex-direction: row;
        width: 650px;
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 60px;
    }
    
    .third-section .card {
        background-color: #2b2b2b;
        border-radius: 20px;
        padding: 0px;
        align-self: center;
        text-align: left;
        background-size: contain;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 
        inset 0 0 15px rgba(255, 255, 255, 0.1); 
        border: 1px solid white;
    }
    
    .third-section .card1{
        background-image: url(/Assets/index/section3/2.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 300px;
        width: 30%;
    }
    
    .third-section .card2{
        background-image: url(/Assets/index/section3/1.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 320px;
        width: 40%;
    }
    
    .third-section .card3{
        background-image: url(/Assets/index/section3/3.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 300px;
        width: 30%;
    }
    
    .third-section .card p{
        font-size: 13px;
        line-height: 22px;
        padding-right: 10px;
    }
    
    .third-section .card h3{
        font-size: 15px;
        line-height: 25px;
    }
    
}


@media(max-width: 400px){

    .before-section-title{
        padding-top: 10px;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .trusted-brands {
        font-size: 13px;
    }
    
    .third-section .logo-images{
        gap: 30px;
        padding-bottom: 20px;
        flex-wrap: wrap;
        width: 98%;
    }

    .third-section .section-title h2 {
        padding-top: 10px;
        font-size: 20px;
        line-height: 28px;
    }
    
    .third-section .section-title p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .third-section .cards-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .third-section .card {
        background-color: #2b2b2b;
        border-radius: 20px;
        padding: 0px;
        align-self: center;
        text-align: left;
        background-size: contain;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 
        inset 0 0 15px rgba(255, 255, 255, 0.1); 
        border: 1px solid white;
    }
    
    .third-section .card1{
        background-image: url(/Assets/index/section3/2.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 330px;
        width: 50%;
    }
    
    .third-section .card2{
        background-image: url(/Assets/index/section3/1.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 320px;
        width: 50%;
    }
    
    .third-section .card3{
        background-image: url(/Assets/index/section3/3.png);
        background-position: calc(100%) calc(100%);
        background-repeat: no-repeat;
        height: 330px;
        width: 50%;
    }
    
    .third-section .card p{
        font-size: 13px;
        line-height: 22px;
        padding-right: 10px;
    }
    
    .third-section .card h3{
        font-size: 15px;
        line-height: 25px;
    }
    
}

/*Fourth Section*/
.fourth-section {
    display: flex;
    flex-direction: row;
    min-height: max-content;
    flex-wrap: wrap;
}

.side1{
    width: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.side2 {
    width: 50%;
    background-color: #f8e907;
    min-height: 650px;
    background-image: url(/Assets/index/section4/bg1.png);
    background-position: calc(100%) calc(100%);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.side2 .img1{
    margin-bottom: -250px;
    margin-left: -80px;
}

.side2 .img2{
    margin-left: -130px;
}


.side3{
    width: 50%;
    background-color: #fece2f;
    min-height: 600px;
    background-position: calc(100%) calc(-100%);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.side3 .img2{
    margin-left: -120px;
    margin-bottom: 100px;
}


.side4{
    width: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.side5{
    width: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.side6 {
    width: 50%;
    background-color: #efefef;
    min-height: 650px;
    background-image: url(/Assets/index/section4/bg1.png);
    background-position: calc(100%) calc(100%);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.side6 .img1{
    margin-bottom: -250px;
}

.side6 .img2{
    margin-left: -180px;
}

.side7 {
    width: 50%;
    background-color: #c7dcff;
    min-height: 650px;
    background-image: url(/Assets/index/section4/bg1.png);
    background-position: calc(100%) calc(100%);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.side7 .img1{
    width: 60%;
    margin-bottom: -250px;
    margin-left: -150px;
}

.side7 .img2{
    margin-left: -150px;
}

.side8{
    width: 50%;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.content-wrapper {
    padding: 50px;
    max-width: 550px;
}

.text-content {
    color: #333;
}

.text-content h2 {
    font-size: 2em;
    color: #222;
}

.text-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    line-height: 30px;
}

@media(max-width: 768px) {
    .fourth-section {
        display: flex;
        flex-direction: column;
        min-height: max-content;
        flex-wrap: wrap;
    }
    
    .side1{
        width: 100%;
        padding: 0px;
    }
    
    .side2 {
        width: 100%;
    }

    .side4{
        width: 100%;
        padding: 0px;
    }
    
    .side3{
        width: 100%;
    }
    
    
    .side5{
        width: 100%;
        padding: 0px;
    }
    
    .side6{
        width: 100%;
    }

    .side8{
        width: 100%;
        padding: 0px;
    }
    
    .side7{
        width: 100%;
    }
    
    .content-wrapper {
        padding: 50px;
        max-width: 550px;
    }
    
    .text-content {
        color: #333;
    }
    
    .text-content h2 {
        font-size: 1.5em;
    }
    
    .text-content p {
        font-size: 0.9em;
        margin-bottom: 40px;
        line-height: 23px;
    }

    .side1 { order: 1; }
    .side2 { order: 2; }
    .side4 { order: 3; }
    .side3 { order: 4; }
    .side5 { order: 5; }
    .side6 { order: 6; }
    .side8 { order: 7; }
    .side7 { order: 8; }
    
}

@media(max-width: 400px) {
    .side2 {
        height: 400px;
        width: 100%;
        background-position: center bottom;
        background-size: contain;
        gap: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .side2 .img1{
        margin-bottom: 00px;
        margin-left: 0px;
        width: 80%;
        align-self: center;
        order: 2;
    }

    .side2 .img2{
        margin-left: 150px;
        margin-bottom: -100px;
        align-self: center;
        width: 60%;
        order: 1;
        z-index: 2;
    }

    
    .side3{
        height: 400px;
        width: 100%;
        background-position: top center;
        background-size: contain;
        gap: 10px;
        flex-direction: column;
        justify-content: flex-end;
    }

    .side3 .img1{
       margin-bottom: 0;
       width: 90%;
       align-self: center;
       order: 2;
    }

    .side3 .img2{
        align-self: center;
        margin-bottom: -90px;
        margin-right: -190px;
        z-index: 1;
        width: 50%;
        margin-left: 0px;
        order: 1;
    }
    
    
    .side6{
        height: 400px;
        width: 100%;
        background-position: center bottom;
        background-size: contain;
        gap: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .side6 .img1{
        width: 90%;
        align-self: center;
        margin-top: -130px;
        order: 2;
    }
    
    .side6 .img2{
        margin-left: 210px;
        margin-top: 0px;
        margin-bottom: 40px;
        width: 50%;
        align-self: center;
        z-index: 1;
        order: 1;
    }

    
    .side7{
        height: 400px;
        width: 100%;
        background-position: center bottom;
        background-size: contain;
        gap: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .side7 .img1{
        width: 70%;
        margin-top: -120px;
        margin-left: 0px;
        order: 2;
    }
    
    .side7 .img2{
        margin-left: 120px;
        margin-top: 0px;
        width: 50%;
        align-self: center;
        order: 1;
        z-index: 2;
    }

    .text-content h2 {
        font-size: 1.3em;
    }
    
    .text-content p {
        font-size: 0.8em;
        margin-bottom: 40px;
    }
}



/*Fifth Section*/
.fifth-section{
    background-color: #000000;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    padding-bottom: 70px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-div-index {
    display: flex;
    color: white;
    justify-content: space-around;
    padding: 20px;
}

.content-div-index .box {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.content-div-index .icon {
    font-size: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    color: #000;
}

.content-div-index .box .box-data{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -15px;
}

.content-div-index  .box .box-data h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.content-div-index  .box .box-data p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-top: -10px;
}

@media (max-width: 786px) {
    .content-div-index {
        padding: 10px;
    }
    
    .content-div-index .box {
        gap: 15px;
    }
    
    .content-div-index .icon {
        font-size: 16px;
    }

    .content-div-index  .box .box-data h3 {
        font-size: 15px;
        line-height: 22px;
    }
    
    .content-div-index  .box .box-data p {
        font-size: 12px;
        line-height: 20px;
    }
    
}

@media (max-width: 400px) {
    .fifth-section{
        gap: 40px;
        padding: 10px;
        padding-bottom: 40px;
        align-self: center;
        justify-content: center;
    }
    
    .content-div-index {
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
    }
    
    .content-div-index .box {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }
    
    .content-div-index .icon {
        font-size: 14px;
        background-color: white;
        border-radius: 10px;
        padding: 10px;
        color: #000;
    }
    
    .content-div-index .box .box-data{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: -15px;
    }
    
    .content-div-index  .box .box-data h3 {
        font-size: 14px;
    }
    
    .content-div-index  .box .box-data p {
        font-size: 12px;
    }

    .fifth-section .img-div img{
        width: 80%;
    }
}


/*Sixth Section*/
.sixth-section{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sixth-section-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sixth-section-heading h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    width: 65%;

}

.sixth-section-heading p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 400px;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    width: 1300px;
}


.cards-carousel {
    background-color: #faf059;
    border: 5px solid black;
    padding: 20px;
    width: 33.33%;
    box-sizing: border-box;
    text-align: start;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.buttons-carousel {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.swiper-button {
    background-color: #FFFF66;
    border: 2px solid #000;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.swiper-button i {
    font-size: 20px;
    color: #000;
}

.swiper-button:hover {
    transform: scale(1.1);
}


.cards-carousel .testimonial-author{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.cards-carousel .testimonial-author-info{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .sixth-section{
        gap: 30px;
    }
    
    .sixth-section-heading{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .sixth-section-heading h2{
        font-size: 30px;
        line-height: 40px;
        width: 85%;
    
    }
    
    .sixth-section-heading p{
        font-size: 14px;
        line-height: 20px;
    }

    .carousel-wrapper{
        width: 100%;
    }
    
    .carousel-section {
        height: 400px;
    }
    
    .cards-carousel {
        min-width: 48%;
    }
    
    .swiper-button {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button i {
        font-size: 16px;
    }
}


@media (max-width: 400px) {

    .sixth-section-heading h2{
        font-size: 20px;
        line-height: 30px;
        width: 90%;
    
    }
    
    .sixth-section-heading p{
        font-size: 12px;
        line-height: 28px;
    }

    .carousel-wrapper{
        width: 100%;
    }
    
    .carousel-section {
        height: 400px;
    }
    
    .cards-carousel {
        min-width: 100%;
    }
    
}



/*Footer*/
footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    margin-top: 220px;
}


.ad-campaign-section {
    position: relative;
    border: 2px solid black;
    display: flex;
    align-items: center;
    padding: 40px;
    background-color: #faf059;
    border-radius: 10px;
    color: #111111;
    max-width: 1200px;
    margin: auto;
    margin-top: -200px;
    padding-bottom: 60px;
}

.ad-campaign-section .content {
    max-width: 600px;
}

.ad-campaign-section h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #111111;
    margin-bottom: 20px;
}

.ad-campaign-section h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #333333;
    margin-bottom: 40px;
}

.ad-campaign-section #footer-button{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.ad-campaign-section #footer-button .get-started:hover{
    border-color: #000;
}

.overlay-elements{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}

.overlay-elements .img2{
    width: 60%;
    margin-top: -70px;
    margin-right: -50px;
}

.overlay-elements .img1{
    width: 20%;  
    position: absolute;
    bottom: 0px;
    right: 200px;
}

.footer-top {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    align-content: center;
    padding-bottom: 2em;
    border-bottom: 1px solid #333;
}
.newsletter{
    width: 40%;
}

.social-icons{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}

.newsletter h2{
    font-size: 52px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 0.5em;

}


.newsletter p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.newsletter form {
    display: flex;
}

.newsletter input[type="email"] {
    padding: 15px;
    font-size: 0.9em;
    background-color: #000;
    border: 1px solid gray;
    border-radius: 5px 0px 0px 5px;
    flex: 1;
}

.newsletter .contact-button {
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border: none;
    padding: 15px 30px;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}

.social-media p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}

.social-icons a {
    margin-right: 0.5em;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
}

.social-icons a i{
    background-color: #414141;
    padding: 8px;
    border-radius: 50%;
}


.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
    gap: 40px;
}
.company-info, .footer-links-wrapper, .contact-form{
    width: 33.33%;
}

.company-info img{
    width: 40%;
    margin-left: -10px;
}

.company-info p {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    gap: 6px;
    display: flex;
    align-items: baseline;
}

.company-info .tagline{
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-links-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 100px;
    gap: 30px;
}

.footer-links{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: underline;
    gap: 20px;
}



.footer-links a {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 0.5em;
    font-weight: 400;
    line-height: 24px;
}


.contact-form h3{
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 10px;
    color: #ffffff; 
}

.contact-form {
    background-color: #111111;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    border: 1px solid #333333;
    box-sizing: border-box;
}

.contact-form p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #aaaaaa; 
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: #111111; 
    border: none;
    border-bottom: 1px solid #444444;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    flex: 1 1 48%; 
    box-sizing: border-box;
}

.contact-form textarea {
    flex: 1 1 100%;
    resize: none; 
}

.contact-form .contact-button {
    background-color: #ffeb3b; 
    color: #111111;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 0;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.contact-form .contact-button:hover {
    background-color: #ffd600; 
}

.footer-copyright {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 20px;
    padding-bottom: 0px;
    border-top: 1px solid #444444;
}


@media (max-width: 768px) {
    .ad-campaign-section {
        padding: 30px;
        max-width: 700px;
        margin: auto;
        margin-top: -200px;
        padding-bottom: 60px;
        flex-direction: column;
    }
    
    .ad-campaign-section .content {
        max-width: 100%;
        width: 100%;
    }
    .overlay-elements{
        display: none;
    }

    .ad-campaign-section h4 {
        font-size: 13px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    
    .ad-campaign-section h2 {
        font-size: 20px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    
    .footer-top {
        max-width: 700px;
    }

    #footer-button{
        width: 100%;
        font-size: 13px;
        gap: 8px;
        width: 100%;
    }

    #footer-button .get-started{
        padding: 9px;
    }

    #footer-button a{
        font-size: 13px;
    }
    
    .arrow {
        margin-left: 8px;
        padding: 8px 15px;
    }

    .newsletter h2{
        font-size: 40px;
        font-weight: 500;
        line-height: 50px;
        margin-bottom: 0.5em;
    }
    
    .newsletter p{
        font-size: 16px;
        line-height: 25px;
    }
   
    .social-media p{
        font-size: 14px;
        line-height: 22px;
    }
    
    .social-icons a {
        margin-right: 0.3em;
        font-size: 1em;
    }
    
    .footer-bottom {
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 10px;
    }

    .company-info, .footer-links-wrapper, .contact-form{
        width: 45%;
    }
    
    .company-info img{
        width: 50%;
    }
    
    .company-info p {
        font-size: 12px;
        line-height: 22px;
    }
    
    .company-info .tagline{
        margin-bottom: 40px;
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 14px;
        margin-bottom: 0.3em;
        line-height: 22px;
    }

    .contact-form{
        width: 100%;
    }

    .contact-form h3{
        font-size: 22px;
        line-height: 26px;
    }
    
    .contact-form p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }    

    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"],
    .contact-form textarea {
        background-color: #111111; 
        border: none;
        border-bottom: 1px solid #444444;
        color: #ffffff;
        padding: 10px;
        font-size: 14px;
        flex: 1 1 48%; 
        box-sizing: border-box;
    }

    .contact-form textarea {
        flex: 1 1 100%;
        resize: none; 
    }

    .newsletter button {
        padding: 15px 20px;
    }
    
}



@media (max-width: 400px) {

    .ad-campaign-section .content {
        width: 100%;
    }
    
    .footer-top {
        max-width: 300px;
    }

    #footer-button{
        width: 100%;
        font-size: 13px;
        gap: 8px;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #footer-button .get-started{
        padding: 9px;
    }

    #footer-button a{
        font-size: 13px;
    }
    
    .arrow {
        margin-left: 8px;
        padding: 8px 15px;
    }

    .footer-top{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .newsletter{
        width: 100%;
        align-self: flex-start;
        justify-content: flex-start;
        margin: auto;
    }

    .newsletter h2{
        font-size: 40px;
        font-weight: 500;
        line-height: 50px;
        margin-bottom: 0.5em;
    }
    
    
    .newsletter p{
        font-size: 16px;
        line-height: 25px;
    }

    .newsletter form{
        display: flex;
        flex-direction: column;
    }

    .newsletter .contact-button{
        width: 120px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .newsletter form input[type="email"]{
        border-radius: 10px;
    }

    .social-media p{
        font-size: 14px;
        line-height: 22px;
    }
    
    .social-icons a {
        margin-right: 0.3em;
        font-size: 1em;
    }
    
    .footer-bottom {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 50px;
    }

    .company-info, .footer-links-wrapper, .contact-form{
        width: 100%;
        margin: auto;
    }
    
    .company-info img{
        width: 50%;
        margin-bottom: 0;
    }
    
    .company-info p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 0;
    }
    
    .company-info .tagline{
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 14px;
        line-height: 22px;
    }

    .company-form{
        width: 100%;
    }
    
    .contact-form h3{
        font-size: 22px;
        line-height: 26px;
    }
    
    .contact-form p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }    

    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"],
    .contact-form textarea {
        background-color: #111111; 
        border: none;
        border-bottom: 1px solid #444444;
        color: #ffffff;
        padding: 10px;
        font-size: 14px;
        flex: 1 1 48%; 
        box-sizing: border-box;
    }

    .contact-form textarea {
        flex: 1 1 100%;
        resize: none; 
    }

    .hero-buttons{
        flex-direction: column;
    }
    
}

/*Hero Section about us page*/
.about-hero-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.about-hero-section .about-hero-content1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1200px;
}

.about-hero-section .about-hero-content1 h1{
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    width: 90%;
    margin-top: 100px;
}

.about-hero-section .about-hero-content1 img{
    border-radius: 20px;
    border: 2px solid #000;
    height: 500px;
    width: 100%;
}

.about-hero-content2{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin-top: 50px;
    gap: 20px;
}

.about-hero-content2 .about-hero-content2-1{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.about-hero-content2 .about-hero-content2-1 h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: left;
}

.about-hero-content2 .about-hero-content2-1 p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;    
}

.about-hero-content2 .about-hero-content2-1 .about-button.get-started{
    border-color: #000;
}


.about-hero-content2 .about-hero-content2-2{
    width: 50%;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero-section{
        margin-bottom: 50px;
    }
    
    .hero-section .hero-content1{
        width: 700px;
    }
    
    .hero-section .hero-content1 h1{
        font-size: 30px;
        line-height: 40px;
        margin-top: 80px;
    }
    
    .hero-section .hero-content1 img{
        border-radius: 20px;
        border: 2px solid #000;
        height: 300px;
        width: 100%;
    }
    
    
    .hero-content2{
        flex-direction: column;
        width: 700px;
        gap: 20px;
    }
    
    .hero-content2 .hero-content2-1{
        width: 100%;
    }
    
    .hero-content2 .hero-content2-1 h2{
        font-size: 30px;
        line-height: 40px;
    }
    
    .hero-content2 .hero-content2-1 p{
        font-size: 16px;
        line-height: 25px;
    }
    
    .hero-content2 .hero-content2-2{
        height: 300px;
        width: 100%;
    }
}


@media (max-width: 400px) {
    .hero-section{
        margin-bottom: 40px;
    }
    
    .hero-section .hero-content1{
        width: 350px;
        margin-bottom: 20px;
    }
    
    .hero-section .hero-content1 h1{
        font-size: 20px;
        line-height: 30px;
        margin-top: 50px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-section .hero-content1 img{
        height: 250px;
        width: 100%;
        margin: 0;
    }
    
    
    .hero-content2{
        flex-direction: column;
        width: 350px;
        gap: 20px;
    }
    
    .hero-content2 .hero-content2-1{
        width: 100%;
        gap: 10px;
    }
    
    .hero-content2 .hero-content2-1 h2{
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    
    .hero-content2 .hero-content2-1 p{
        font-size: 14px;
        line-height: 22px;
    }
    
    .hero-content2 .hero-content2-2{
        height: 250px;
        width: 100%;
    }
}

.about-sec-section {
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    text-align: center;
    gap: 20px;
}

.about-sec-section .about-before-section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    border-bottom: 2px solid #333;
}

.about-sec-section .about-logo-images {
    display: flex;
    gap: 100px;
    padding-bottom: 50px;
}

.about-sec-section .about-sec-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;        
}

.about-sec-section .about-sec-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.about-sec-content2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin-top: 50px;
    gap: 120px;
    margin-bottom: 100px;
}

.sec-content2 .sec-content2-1{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.about-value{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.about-value .about-value-icon{
    background-color: white;
    color:#1b1d22;
    padding: 8px;
    font-size: 18px;
    border-radius: 10px;
}

.about-value .about-value-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: start;
    gap: 10px;
}


.about-value .about-value-content h2{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    margin: 0;
}


.about-value .about-value-content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #bababa;
    margin: 0;
}

.sec-content2 .sec-content2-2{
    width: 50%;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    
    .about-sec-section .about-logo-images {
        display: flex;
        gap: 50px;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 50px;
        flex-wrap: wrap;
    }
    
    .about-sec-section .about-sec-heading {
        font-size: 30px;
        line-height: 50px;
    }
    
    .about-sec-section .about-sec-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .about-sec-content2 {
        flex-direction: column;
        width: 700px;
        margin-top: 30px;
        gap: 50px;
        margin-bottom: 80px;
    }
    
    .about-sec-content2 .about-sec-content2-1 {
        width: 100%;
        gap: 30px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .about-value {
        gap: 10px;
    }
    
    .about-value .about-value-icon {
        padding: 8px;
        font-size: 16px;
    }
    
    .about-value .about-value-content {
        gap: 7px;
    }
    
    .about-value .about-value-content h2 {
        font-size: 16px;
        line-height: 25px;
        margin: 0;
    }
    
    .about-value .about-value-content p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .about-sec-content2 .about-sec-content2-2 {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 400px) {
    
    .about-sec-section .about-logo-images {
        display: flex;
        gap: 50px;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 50px;
        flex-wrap: wrap;
    }
    
    .about-sec-section .about-sec-heading {
        font-size: 30px;
        line-height: 50px;
    }
    
    .about-sec-section .about-sec-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .about-sec-content2 {
        width: 350px;
        gap: 50px;
    }
    
    .about-value {
        gap: 15px;
    }
    
    .about-sec-content2 .about-sec-content2-2 {
        height: 300px;
    }
}

.about-third-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1300px;
    margin: 20px auto;
    gap: 20px;
}

.about-third-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: left;
    letter-spacing: -2%;
}

.about-third-section p {
    font-size: 40px;
    font-weight: 600;
    text-align: left;
}

.about-third-section .about-team-container {
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1300px;
    margin: 20px auto;
}

.about-third-section .about-profile-card {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
    border-radius: 2px;
    display: flex;
    padding: 20px;
    align-items: flex-end;
    overflow: hidden;
}

.about-third-section .about-profile-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    filter: blur(15px);
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.about-third-section .about-profile-text {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 0px;
}

.about-third-section .about-profile-text h2 {
    font-family: Cinzel;
    font-size: 20px;
    font-weight: 700;
    line-height: 26.96px;
    text-align: left;
    color: white;
    margin: 0;
}

.about-third-section .about-job-title {
    font-family: Cormorant Garamond;
    font-size: 16px;
    font-weight: 500;
    color: #b4becb;
    line-height: 19.38px;
    text-align: left;
}

.about-third-section .about-description {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: #b4becb;
    line-height: 21px;
    text-align: left;
}

@media (max-width: 768px) {

    .about-third-section {
        width: 700px;
        margin: 20px auto;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .about-third-section h2 {
        font-size: 30px;
        line-height: 50px;
        text-align: center;
    }
    
    .about-third-section p {
        font-size: 40px;
        font-weight: 600;
        text-align: left;
    }
    
    .about-third-section .about-team-container {
        display: grid;
        gap: 70px;
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 20px;
    }
    
    .about-third-section .about-profile-card {
        height: 300px;
        padding: 10px;
    }
    
    .about-third-section .about-profile-card::before {
        content: "";
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%;
        filter: blur(15px);
        height: 60%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 1;
    }
    
    .about-third-section .about-profile-text {
        position: relative;
        width: 100%;
        z-index: 10;
        padding: 0px;
    }
    
    .about-third-section .about-profile-text h2 {
        font-family: Cinzel;
        font-size: 20px;
        font-weight: 700;
        line-height: 26.96px;
        text-align: left;
        color: white;
        margin: 0;
    }
    
    .about-third-section .about-job-title {
        font-family: Cormorant Garamond;
        font-size: 16px;
        font-weight: 500;
        color: #b4becb;
        line-height: 19.38px;
        text-align: left;
    }
    
    .about-third-section .about-description {
        font-family: Poppins;
        font-size: 14px;
        font-weight: 300;
        color: #b4becb;
        line-height: 21px;
        text-align: left;
    }
}

@media (max-width: 400px) {
    .about-third-section {
        width: 350px;
        margin-left: 15px;
    }
    
    .about-third-section h2 {
        font-size: 20px;
        line-height: 30px;
    }
    
    .about-third-section p {
        font-size: 30px;
    }
    
    .about-third-section .about-team-container {
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(1, 1fr);
        max-width: 350px;
        margin: 20px;
        align-self: center;
    }
    
    .about-third-section .about-profile-card {
        height: 300px;
        padding: 10px;
        align-self: center;
    }
    
    .about-third-section .about-profile-card::before {
        content: "";
        position: absolute;
        top: 40%;
        left: 0;
        width: 100%;
        filter: blur(15px);
        height: 60%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
        z-index: 1;
    }
    
    .about-third-section .about-profile-text {
        width: 100%;
        z-index: 10;
        padding: 0px;
    }
    
    .about-third-section .about-profile-text h2 {
        font-family: Cinzel;
        font-size: 20px;
        font-weight: 700;
        line-height: 26.96px;
        text-align: left;
        color: white;
        margin: 0;
    }
    
    .about-third-section .about-job-title {
        font-family: Cormorant Garamond;
        font-size: 16px;
        font-weight: 500;
        color: #b4becb;
        line-height: 19.38px;
        text-align: left;
    }
    
    .about-third-section .about-description {
        font-family: Poppins;
        font-size: 14px;
        font-weight: 300;
        color: #b4becb;
        line-height: 21px;
        text-align: left;
    }
}


.comming-soon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 50vh;
    gap: 0;
}

.comming-soon h1{
    font-size: 50px;
}

.comming-soon p{
    font-size: 16px;
}





















/*Hero Section*/

.contact-hero-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    gap: 40px;
    margin-top: 50px;
}

.contact-hero-section .contact-hero-heading{
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    text-align: left;
}

.contact-hero-section .contact-hero-tagline{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.contact-hero-section .contact-hero-contact{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.contact-hero-section .contact-hero-contact-1{
    margin: 0;
}

.contact-hero-section .contact-hero-contact-1 img{
    margin: 0;  
}

.contact-hero-heading-2{
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 56px;
    text-align: left;
}

.content-div {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.content-div .box {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.content-div .icon {
    font-size: 20px;
    background-color: white;
    border-radius: 10px;
    border: 2px solid black;
    padding: 10px;
    color: #000;
}

.content-div .box .box-data{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -15px;
}

.content-div  .box .box-data h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.content-div  .box .box-data p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-top: -10px;
}

.contact-hero-button-HC{
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border-color: #d1d5dd;
}


.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 50px auto;
}

.contact-container .contact-card {
    background-color: white;
    border: 1px solid #000000;
    border-radius: 15px;
    width: 250px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-container .contact-content {
    display: flex;
    align-items: center; 
    gap: 15px;
}

.contact-container .contact-icon {
    background-color: #f5f5f5;
    width: 50px;
    height: 50px;
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 26px;
    color: #333;
}


.contact-container  .contact-text h3 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #333;
    margin: 0px;
}

.contact-container .contact-text p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;   
    color: #666;
    margin: 20;
}

.contact-container .contact-button {
    margin-top: 10px;
    padding: 15px;
    font-size: 14px;
    width: 100%;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-container .contact-button:hover {
    background-color: #e0e0e0;
}


@media (max-width: 768px) {
    .contact-hero-section{
        margin-bottom: 50px;
        gap: 30px;
        margin-top: 30px;
    }
    
    .contact-hero-section .contact-hero-heading{
        font-size: 30px;
        line-height: 50px;
    }
    
    .contact-hero-section .contact-hero-tagline{
        font-size: 14px;
        line-height: 22px;
    }

    .contact-contact-hero-img{
        width: 90%;
        margin: 20px;
    }
    
    .contact-hero-heading-2{
        font-size: 28px;
        line-height: 52px;
    }
    
    
    .contact-hero-button-HC{
        padding: 20px 30px;
        font-size: 13px;
    }
    
    
    .contact-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        margin: 50px auto;
    }
    
    .contact-container .contact-card {
        background-color: white;
        border: 1px solid #000000;
        border-radius: 15px;
        width: 250px;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
    }
    
    .contact-container .contact-content {
        display: flex;
        align-items: center; 
        gap: 15px;
    }
    
    .contact-container .contact-icon {
        background-color: #f5f5f5;
        width: 50px;
        height: 50px;
        display: flex;
        margin-bottom: 10px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 26px;
        color: #333;
    }
    
    
    .contact-container  .contact-text h3 {
        font-family: Inter;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: left;
        color: #333;
        margin: 0px;
    }
    
    .contact-container .contact-text p {
        font-family: Inter;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;   
        color: #666;
        margin: 20;
    }
    
    .contact-container .contact-button {
        margin-top: 10px;
        padding: 15px;
        font-size: 14px;
        width: 100%;
        color: #333;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
}

@media (max-width: 400px) {

    .contact-hero-section{
        margin-bottom: 40px;
        gap: 30px;
        margin-top: 20px;
    }
    
    .contact-hero-section .contact-hero-heading{
        font-size: 20px;
        line-height: 30px;
    }
    
    .contact-hero-section .contact-hero-tagline{
        font-size: 12px;
        width: 80%;
        line-height: 18px;
        text-align: center;
    }

    .contact-hero-img{
        width: 100%;
        margin: 20px;
    }
    
    .contact-hero-heading-2{
        font-size: 20px;
        line-height: 40px;
    }
    
    .contact-hero-button-HC{
        padding: 20px 30px;
        font-size: 13px;
    }
    
    .contact-container .contact-button {
        margin-top: 10px;
        padding: 15px;
        font-size: 14px;
        width: 100%;
        color: #333;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .content-div {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .content-div .box {
        width: 100%;
        gap: 10px;
    }
    
    .content-div .icon {
        font-size: 15px;
    }
    
    .content-div  .box .box-data h3 {
        font-size: 14px;
        line-height: 22px;
    }
    
    .content-div  .box .box-data p {
        font-size: 12px;
        line-height: 20px;
    }
}

.help-hero-section {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 50px;
    color: #fff;
}

.help-hero-section > p {
    font-size: 14px;
}

.help-hero-section > div {
    display: flex;
    gap: 20px;
}


.help-hero-section > div > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-hero-section > div > div img {
    max-height: 16px;
}

.help-hero-section > div > div span {
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .help-hero-section {
       width: 100%;
    }
    
    .help-hero-section > p {
        font-size: 13px;
    }
    
    .help-hero-section > div {
        display: flex;
        gap: 10px;
    }
    
    
    .help-hero-section > div > div {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .help-hero-section > div > div img {
        max-height: 15px;
    }
    
    .help-hero-section > div > div span {
        font-size: 12px;
        text-decoration: underline;
        cursor: pointer;
    }
}

@media (max-width: 400px) {
    .help-hero-section {
       width: 100%;
    }
    
    .help-hero-section > p {
        font-size: 13px;
        width: 80%;
    }
    
    .help-hero-section > div {
        display: flex;
        gap: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    
    .help-hero-section > div > div {
        display: flex;
        align-items: center;
        gap: 8px;
        align-self: flex-start;
    }
    
    .help-hero-section > div > div img {
        max-height: 15px;
    }
    
    .help-hero-section > div > div span {
        font-size: 12px;
        text-decoration: underline;
        cursor: pointer;
    }
}



.tabs {
    display: flex;
    padding: 50px;
    overflow-x: hidden;
}

.tabs .menu {
    width: 250px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 15px;
}

.search-bar > img {
    max-width: 15px;
}

.search-bar > input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 12px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin-right: 20px;
}

.menu-item {
    cursor: pointer;
    padding: 10px;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 10px;
}

.menu-item.active, .submenu-item.active {
    font-weight: bold;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.submenu li {
    padding-left: 20px;
    font-size: 14px;
}

.menu .open {
    margin-top: 10px;
}

.arrow-icon {
    width: 13px;
    height: 7px;
    margin-left: 8px;
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s ease;
}

.submenu.open {
    max-height: 500px;  
    opacity: 1; 
    visibility: visible; 
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0s ease;
}

.submenu-item.active{
    color: #000;
    text-underline-offset: 4px;
}

.tabs .content {
    padding: 20px;
    padding-top: 0;
    flex: 1;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.content-header {
    align-self: center;
    background: #fff;
    padding: 12px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
}

.content-header > button {
    border-radius: 25px;
}

.content-header > button:hover {
    cursor: pointer;
}

.content-header > button {
    background: transparent;
    font-weight: 400;
}

.content-header > button.active {
    border: 1px solid #000;
    background: yellow;
}


.content-section {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    overflow-x: hidden;
    top: 0;
    left: 0;
    width: 100%;
    animation: fadeOut 0.3s forwards; 
}

.content-section.active {
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s forwards;
    position: relative;
}


.arrow-down, .arrow-up {
    transition: transform 0.3s ease;
}

.arrow-down.rotate {
    transform: rotate(180deg);
}

.arrow-up.rotate {
    transform: rotate(0deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

#getting-started {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.most-popular {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.most-popular > h2,
.articles > h2,
#add-billing > h2,
#add-billing .main-content > div h3 {
    font-weight: 600;
    font-size: 25px;
}

.most-popular .cards {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    gap: 100px;
}

.most-popular .cards div {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #000;
    padding: 15px;
    gap: 25px;
    width: 200px;
    max-width: 200px;
    border-radius: 10px;
}

.most-popular .cards div img {
    width: 20px;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.most-popular .cards div span {
    font-size: 14px;
}

.articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.articles > .row {
    display: flex;
    justify-content: space-between;
}

.articles .card {
    background: #fff;
    border: 2px solid #000;
    padding: 15px;
    padding-bottom: 30px;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    gap: 20px;
} 

.articles .card > img {
    max-width: 250px;
}

.articles .card >  div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.articles .card >  div h3 {
    font-size: 13px;
    color: #008000;
}

.articles .card >  div > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articles .card >  div > div span {
    font-size: 14px;
}

.articles .card >  div > div img {
    width: 12px;
    height: 12px;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section .container {
    display: flex;
    gap: 40px;
}

.content-section .main {
    flex: 7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-section .main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content-section .main-content img {
    width: 100%;
    border-radius: 10px;
}

.content-section .main-content > div p {
    font-size: 14px;
}

.content-section .main-footer {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 100px;
}

.content-section .main-footer .nav-links, .content-section .main-footer .nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-section .main-footer .nav-links img {
    width: 7px;
}

.content-section .main-footer .nav-links span {
    font-size: 14px;
    color: #00ff00;
}

.nav-previous, .nav-next {
    display: flex;
    align-items: center;
    gap: 7px;

}

.content-section .main-footer .nav-title span {
    font-size: 14px;
}

.content-section .sidebar {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-section .sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section .sidebar-header span {
    font-size: 12px;
}

.content-section .sidebar-header img {
    width: 15px;
}

.content-section .sidebar .outline ul {
    list-style: none;
    padding: 0;
    padding-left: 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-section .sidebar .outline ul::before {
    content: "";
    width: 5px;
    background: #f1f1f1;
    height: 150px;
    position: absolute;
    border-radius: 10px;
    margin-left: -15px;
}

.content-section .sidebar .outline li {
    font-size: 12px;
}

#faq {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faqs {
    background-color: transparent;
    cursor: pointer;
    padding: 14px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
}
  
.faqs:after {
    content: '\002B';
    color: #000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
  
.faq-active:after {
    content: "\2212";
}
  
.faq-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    transition: max-height 0.2s ease-out;
}

.hamburger-tabs {
    display: none;
}

.close-button-tabs {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: black;
    cursor: pointer;
    display: none;
}


@media (max-width: 768px) {
   
    .tabs {
        width: 100%;
    }
    .tabs > .menu {
        display: none;
    }

    .hamburger-tabs {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: black;
        margin-right: 10px;
    }

    .flyout-menu-tabs {
        position: fixed;
        top: 0;
        left: 0;
        width: 30%;
        height: 100%;
        background-color: #FEFDE6;
        display: flex;
        padding: 50px;
        z-index: 999999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .flyout-menu-tabs.open {
        transform: translateX(0);
    }

    .most-popular .cards {
        display: flex;
        width: 600px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .articles {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .articles > .row {
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        width: 600px;
        padding: 30px;
    }
    
    .articles .card {
        background: #fff;
        border: 2px solid #000;
        padding: 15px;
        width: 40%;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    } 

    #add-billing .container {
        display: flex;
        gap: 20px;
    }
    
    .articles .card > img {
        max-width: 250px;
    }
    
    .articles .card >  div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .articles .card >  div h3 {
        font-size: 13px;
        color: #008000;
    }
    
    .articles .card >  div > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .articles .card >  div > div span {
        font-size: 14px;
    }
    
    .articles .card >  div > div img {
        width: 12px;
        height: 12px;
    }
    .close-button-tabs {
        display: block;
    }

}


@media (max-width: 400px) {
    body{
        padding-top: 100px;
    }

    .tabs {
        width: 100%;
    }
    .tabs > .menu {
        display: none;
    }

    .hamburger-tabs {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: black;
        margin-right: 10px;
    }

    .flyout-menu-tabs {
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background-color: #FEFDE6;
        display: flex;
        padding: 50px;
        z-index: 999999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }


    .flyout-menu-tabs.open {
        transform: translateX(0);
    }

    .tabs .content{
        width: 80%;
        justify-content: center;
    }

    .content-header {
        gap: 15px;
        margin-right: auto;
    }
    
    .most-popular{
        align-items: flex-start;
    }
    .content-header > button {
        border-radius: 25px;
    }

    .most-popular .cards {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 50px;
    }
    

    .most-popular .cards div {
        max-width: 250px;
        width: 230px;
    }



    .most-popular h2,
    .articles h2 {
       font-size: 20px;
    }

    .articles {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .articles > .row {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 50px;
        padding: 0;
    }
    
    .articles .card {
        align-self: flex-start;
        width: 230px;
    } 
  
    .articles .card >  div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .articles .card >  div h3 {
        font-size: 13px;
        color: #008000;
    }
    
    .articles .card >  div > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .articles .card >  div > div span {
        font-size: 14px;
    }
    
    .articles .card >  div > div img {
        width: 12px;
        height: 12px;
    }

    .content-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 83%;
    }
    
    .content-section > h2, .content-section h3 {
        font-size: 18px;
    }
    
    .content-section .container {
        display: flex;
        gap: 40px;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    
    .content-section .main {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .content-section .main-content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    
    .content-section .main-content img {
        width: 100%;
        border-radius: 10px;
    }
    
    .content-section .main-content > div p {
        font-size: 12px;
    }
    
    .content-section .main-footer {
        padding: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .content-section .main-footer .nav-links, .content-section .main-footer .nav-title {
        display: flex;
        justify-content: space-between;
        gap: 25px;
        width: 100%;
    }
    
    .content-section .main-footer .nav-links img {
        width: 7px;
    }
    
    .content-section .main-footer .nav-links span {
        font-size: 12px;
        color: #00ff00;
    }
    
    .nav-previous, .nav-next {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .content-section .main-footer .nav-title span {
        font-size: 10px;
    }
    
    .content-section .sidebar {
        display: none;
    }
    
    .content-section .sidebar-header {
        display: flex;
        gap: 12px;
    }
    
    .content-section .sidebar-header span {
        font-size: 12px;
    }
    
    .content-section .sidebar-header img {
        width: 15px;
    }
    
    .content-section .sidebar .outline ul {
        list-style: none;
        padding: 0;
        padding-left: 15px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .content-section .sidebar .outline ul::before {
        content: "";
        width: 5px;
        background: #f1f1f1;
        height: 150px;
        position: absolute;
        border-radius: 10px;
        margin-left: -15px;
    }
    
    .content-section .sidebar .outline li {
        font-size: 12px;
    }    

    #faq {
        width: 85%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .faqs {
        text-align: left;
    }
      
    .faqs:after {
        content: '\002B';
        color: #000;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }
      
    .faq-active:after {
        content: "\2212";
    }
      
    .faq-content {
        padding: 0 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }
}

