@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

:root{
    --primary-color: #F05123;
    --secondary-color: #111D4A;
    --surface-color: #FFFFFF;
    --info1-color: #FFF8F0;
    --info2-color: #FFCF99;
    --neutral-color: #1E1E24;
    --gradient-color-1: linear-gradient(to left, #F05123, #111D4A);
}

*{
    margin: 0;
    padding: 0;
    font-family: Space Grotesk, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: border-box;
}

body{
    background-color: var(--surface-color);   
}


/*NAVIGATION BAR*/
header{
    width: 100%;
    background: var(--surface-color);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar{
    width: 90%;
    margin: auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 70px;
    margin-right: 10px;
}

.logo span{
    font-size: 24px;
    font-weight: medium;
    color: var(--primary-color);
}

.nav-menu{
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
}

.nav-menu li{
    position: relative;
}

.nav-menu a,
.dropdown-btn{
    text-decoration: none;
    color: var(--neutral-color);
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-btn{
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow{
    font-size: 13px;
    transition: .3s;
}

.nav-menu a:hover,
.dropdown-btn:hover{
    color: var(--primary-color);
}

.nav-menu a.active,
.dropdown-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

.dropdown-menu{
    position: absolute;
    top: 55px;
    left: 0;
    width: 220px;
    background: var(--info1-color);
    border-radius: 10px;
    list-style: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.dropdown.active .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .arrow{
    transform: rotate(180deg);
}

.dropdown-menu li{
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.dropdown-menu li:last-child{
    border: none;
}

.dropdown-menu a{
    display: block;
    padding: 18px;
    color: var(--neutral-color);
}

.dropdown-menu a:hover{
    background: var(--info2-color);
}

.hamburger{
    display: none;
    cursor: pointer;
}

.hamburger span{
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 6px 0;
    transition: .3s;
}


/*FOOTER*/
.footer{
    background: var(--secondary-color);
    color: var(--surface-color);
    padding: 70px 8% 30px;
}

.footer-container{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.company-info img{
    margin-bottom: 10px;
}

.company-info p{
    max-width: 420px;
    line-height: 175%;
    font-size: 16px;
    color: var(--surface-color);
}

.footer-col h6{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 35px;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 20px;
}

.footer-col ul li a{
    text-decoration: none;
    color: var(--surface-color);
    font-size: 16px;
}

.footer-col ul li a:hover{
    color: var(--primary-color);
}

.contact-list li{
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--surface-color);
    font-size: 16px;
}

.contact-list i{
    font-size: 20px;
}

.contact-list li:hover{
    color: var(--primary-color);
}

.contact-list li a i{
    margin-right: 15px;
}

hr{
    margin: 50px 0 30px;
    border: none;
    height: 1px;
    background: var(--surface-color);
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p{
    font-size: 13px;
    color: var(--surface-color);
}

.footer-links{
    display: flex;
    gap: 50px;
}

.footer-links a{
    font-size: 13px;
    text-decoration: none;
    color: var(--surface-color);
}


/* HOME PAGE: HERO SECTION */
.HomePage-hero-section{
    height: 100%;
    background-color: var(--secondary-color);
    color: var(--info1-color);
    margin-bottom: 100px;
}
    
.Hero-msg{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}

.Hero-msg h1{
    font-size: 61px;
    font-weight: 500;
    margin-bottom: 20px; 
    padding-top: 100px;
    background: linear-gradient(to right, #D34227, #FFCF99);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.Hero-msg p{
    font-size: 20px;
    padding-bottom: 100px;
    font-weight: lighter;
    line-height: 175%;
    color: var(--info1-color);
}

.Trusted-by-logos h5{
    font-size: 25px;
    font-weight: lighter;
    margin: 0 auto;
    width: 90%;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 0.5px solid var(--info1-color);
}

.trustedby-carosel{
    margin: 0 auto;
    width: 90%;
    display: flex;
    overflow-x: auto;
    gap: 1em;
}

.trustedby-carosel::-webkit-scrollbar{
    display: none;
}

.carousel-trustedby{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 15s infinite linear;
    padding-right: 1em;
}

.card1{
    flex: 0 0 2.5em;
    padding: 0.5em;
    font-size: 3em;
    text-align: center;
    align-content: center;
}

@keyframes spin{
    from {translate: 0;}
    to {translate: -100%;}
}


/* HOME PAGE: WHAT WE OFFER SECTION */
.Offer-section{
    margin-bottom: 100px;
}

.offer-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.offer-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal; 
    background: var(--gradient-color-1);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;   
}

.offer-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.offer-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box-offer{
    height: 200px;
    width: 500px;
    border: 1px solid var(--info2-color);
    border-radius: 16px;
    padding: 40px;
    margin: 20px;
}

.box-offer-heading{
    display: flex;  
    align-items: center;  
    font-size: 25px;
    font-weight: lighter;
}

.box-offer-heading img{
    width: 80px;
}

.box-offer-heading h4{
    margin-left: 20px;
}

.box-offer-content{
    margin-top: 20px;
    line-height: 175%;
    font-size: 16px;
    color: rgba(30,30,36,.54);
}


/* HOME PAGE: WHY CHOOSE US SECTION */
.Choose-section{
    margin-bottom: 100px;
}

.choose-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.choose-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal; 
    background: var(--gradient-color-1);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.choose-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.choose-info{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box-choose{
    height: 200px;
    width: 200px;
    border: 1px solid var(--info2-color);
    border-radius: 16px;
    padding: 50px 30px;
    margin: 20px;
    text-align: center;
}

.box-choose img{
    width: 50px;
    margin-bottom: 5px;
}

.box-choose h3{
    font-size: 39px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.box-choose h5{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.box-choose p{
    line-height: 150%;
    font-size: 16px;
    color: rgba(30,30,36,.54);
}


/* HOME PAGE: BROKERS WE SUPPORT SECTION */
.brokers-section{
    margin-bottom: 100px;
}

.brokers-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.brokers-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: var(--gradient-color-1);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.brokers-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.carousel-logos1{
    margin: 25px auto;
    width: 90%;
    display: flex;
    overflow-x: auto;
    gap: 1em;
}

.carousel-logos1::-webkit-scrollbar{
    display: none;
}

.carousel-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 15s infinite linear;
    padding-right: 1em;
}

.card{
    flex: 0 0 2.5em;
    padding: 1em;
    font-size: 3em;
    text-align: center;
    align-content: center;
}

@keyframes spin{
    from {translate: 0;}
    to {translate: -100%;}
}


/* HOME PAGE: OUR CAPABILITIES SECTION */
.capabilities-section{
    margin-bottom: 100px;
}

.capabilities-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.capabilities-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: var(--gradient-color-1);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.capabilities-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
}

.capabilities-card{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.capa-card{
    width: 200px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
    margin: 60px;
}

.capa-card-inner{
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.capa-card:hover .capa-card-inner {
  transform: rotateY(180deg);
}

.capa-card-front,
.capa-card-back{
    padding: 40px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    justify-self: center;
    justify-items: center;
    backface-visibility: hidden;
    border-radius: 16px;
}

.capa-card-front{
    background: var(--surface-color);
    border: 1px solid var(--info2-color);
}

.capa-card-back{
    background: var(--primary-color);
    color: var(--neutral-color);
    transform: rotateY(180deg);
    border: 1px solid var(--info2-color);
}

.capa-card-front span{
    font-size: 20px;
    font-weight: bold;
    line-height: 150%;
}

.capa-card-front p{
    font-size: 16px;
    line-height: 175%;
    margin-top: 20px;
    color: rgba(30,30,36,.54);
}

.capa-card-back h6{
    font-size: 20px;
    color: var(--surface-color);
    text-align: left;
    padding-bottom: 20px;
}

.capa-card-back ul{
    list-style: none;
}

.capa-card-back ul li{
    font-size: 16px;
    padding-bottom: 10px;
    color: var(--surface-color);
}


/* HOME PAGE: HEAR FROM OUR CUSTOMERS SECTION */
.testimonials-section{
    margin-bottom: 100px;
}

.testimonials-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.testimonials-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: var(--gradient-color-1);
   -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.testimonials-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.testimonial-sec,
.testimonial-sec * {
    box-sizing: border-box;
}

.testimonial-sec{
    width: 100%;
    padding: 80px 20px;
}

.testimonial-wrapper{
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider{
    width: 80%;
    overflow: hidden;
}

.slides{
    display: flex;
    transition: transform .5s ease;
}

.testimonial{
    min-width: 100%;
    background:  var(--info1-color);
    border-radius: 35px;
    padding: 50px 60px;
}

.testimonial img{
    width: 30px;
    margin-bottom: 40px;
}

.testimonial p{
    color: var(--neutral-color);
    font-size: 20px;
    line-height: 200%;
    margin-bottom: 70px;
}

.testimonial h6{
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
}

.arrow{
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #aeb2c1;
    color: var(--surface-color);
    cursor: pointer;
    position: absolute;
    z-index: 5;
    transition: .3s;
}

.arrow:hover{
    background: #8f95a8;
}

.prev{
    left: 70px;
}

.next{
    right: 70px;
}

.arrow i{
    font-size: 18px;
}

.dots{
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dce7df;
    cursor: pointer;
    transition: .3s;
}

.dot.active{
    width: 40px;
    border-radius: 20px;
    background: var(--primary-color);
}


/* ABOUT US PAGE: HERO SECTION */
.hero-section{
    height:600px;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 100px;
}

.hero-section-container{
    width:70%;
    text-align: center;
}

.hero-section-container h1{
    margin-bottom: 20px;
    font-size: 61px;
    font-weight: 500;
    background: linear-gradient(to right, #D34227, #FFCF99);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-section-container h5{
    font-weight: lighter;
    line-height: 175%;
    font-size: 20px;
}


/* ABOUT US PAGE: OUR MISSON & VISION SECTION */
.mission-vision-section{
    margin-bottom: 50px;
}

.mission-vision-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.mission-vision-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.mission-vision-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.mission-vision-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-vision-box-container{
    height: 200px;
    width: 450px;
    border: 1px solid #FFCF99;
    border-radius: 16px;
    padding: 50px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
}

.mission-vision-box-heading{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mission-vision-box-heading h5{
    font-size: 25px;
    margin-left: 20px;
}

.mission-vision-box-container p{
    font-size: 16px;
    line-height: 175%;
    color: rgba(30,30,36,.54);
}


/* ABOUT US PAGE: OUR VALUES SECTION */
.values-section{
    margin-bottom: 60px;
}

.values-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.values-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.values-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
}

.values-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.values-box-container{
    height: 250px;
    width: 200px;
    text-align: center;
    border: 1px solid #FFCF99;
    border-radius: 16px;
    padding: 50px 40px 50px 40px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.values-box-container h6{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.values-box-container p{
    font-size: 16px;
    line-height: 175%;
    color: rgba(30,30,36,.54);
}


/* ABOUT US PAGE: MEET OUR TEAM SECTION */
.team-section{
    margin-bottom: 100px;
}

.team-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.team-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.team-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
}

.team-sec-card{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card{
    width: 200px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
    margin: 60px;
}

.team-card-inner{
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-front,
.team-card-back{
    padding: 40px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    justify-self: center;
    justify-items: center;
    backface-visibility: hidden;
    border-radius: 16px;
}

.team-card-front{
    text-align: center;
    background: var(--surface-color);
    border: 1px solid var(--info2-color);
}

.team-card-back{
    text-align: center;
    background: var(--primary-color);
    color: var(--neutral-color);
    transform: rotateY(180deg);
    border: 1px solid var(--info2-color);
}

.team-card-front img{
    padding-bottom: 30px;
    width: 150px;
}

.team-card-front h6{
    font-size: 20px;
    padding-bottom: 15px;
}

.team-card-front p{
    font-size: 16px;
    color: rgba(30,30,36,.54);
}

.team-card-back h6{
    font-size: 20px;
    padding-bottom: 15px;
    color: var(--surface-color);
}

.team-card-back p{
    font-size: 16px;
    line-height: 150%;
    color: var(--surface-color);
}


/* ABOUT US PAGE: BE A PART OF OUR MISSION SECTION */
.job-section{
    margin-bottom: 100px;
}

.job-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.job-heading h2{
    margin-bottom: 10px;
    font-size: 39px;
    font-weight: normal;
    background: linear-gradient(to right, #111D4A, #F05123);
   -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.job-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 50px;
    line-height: 175%;
}

.job-search{
    border: 1px solid #FFCF99;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-self: center;
    width: 70%;
    padding: 10px 20px;
    margin-bottom: 100px;
}

.job-search input{
    width: 100%;
    border: none;
    font-size: 16px;
}

.job-search img{
    width: 50px;
}

.job-content{
    width: 70%;
    display: flexbox;
    justify-self: center;
    margin-bottom: 50px;
}

.job-role{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-role h6{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-right: 20px;
}

.job-role button{
    background-color: #F05123;
    color: #FFFFFF;
    font-size: 16px;
    border: none;
    padding: 10px 30px;
    border-radius: 24px;
}

.job-content p{
    font-size: 16px;
    color: rgba(30,30,36,.54);
    margin-bottom: 20px;
}

.wfo-ft-btn{
    display: flex;
}

.job-btn{
    display: flex;
    align-items: center;
    border: 1px solid #111D4A;
    border-radius: 24px;
    padding: 10px 20px;
    margin-right: 20px;
}

.job-btn img{
    margin-right: 10px;
    width: 20px;
}

.job-btn span{
    font-size: 12px;
}


/* PRODUCT PAGE: PULSE BY MARSQUANT HEADER SECTION */
.product-heading-section{
    margin-top: 100px;
    margin-bottom: 100px;
}

.product-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.product-heading h1{
    font-size: 61px;
    font-weight: 500;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.product-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
    line-height: 175%;
}

.product-heading img{
    width: 80%;
}


/* PRODUCT PAGE: FEATURES SECTION */
.product-features-section{
    text-align: left;
    margin-bottom: 100px;
    display: block;
    justify-self: center;
}

.product-features-heading h3{
    font-size: 39px;
    font-weight: normal;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.product-features-heading p{
    font-size: 16px;
    color: rgba(30,30,36,.54);
    margin-bottom: 25px;
    line-height: 175%;
}

.product-heading img{
    object-fit: fill;
    border-radius: 20px;
}

.product-features-description{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-features-description img{
    height: 70px;
    width: 70px;
}

.features-description{
    margin-left: 25px;
}

.features-description h5{
    font-size: 25px;
    font-weight: 450;
    margin-bottom: 10px;
}

.features-description p{
    font-size: 16px;
    line-height: 175%;
    color: rgba(30,30,36,.80);
}



/* FAQ PAGE: FAQ HEADER SECTION */
.faq-heading-section{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    
}

.faq-heading h1{
    font-size: 61px;
    font-weight: 500;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 20px;
}


/* FAQ PAGE: FAQ SECTION */
.faq-section {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
}


/* FAQ PAGE: FAQ QUESTIONS - LEFT SIDE SECTION */
.faq-left-side{
    width: 50%;
}

.faq {
    background: var(--surface-color);
    border-bottom: 1px solid var(--info2-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--neutral-color);
}

.faq-question:hover {
    background: var(--surface-color);
}

.icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--neutral-color);
    line-height: 1.6;
}

.faq.active .faq-answer {
    max-height: 200px;
}

.faq.active .icon {
    transform: rotate(45deg);
}


/* FAQ PAGE: FAQ BOX - RIGHT SIDE SECTION */
.demo-box{
    width: 250px;
    padding: 40px 50px;
    text-align: center;
    border: 1px solid var(--info2-color);
    border-radius: 16px;
}

.demo-box img{
    width: 50px;
    margin-bottom: 10px;
}

.demo-box h6{
    font-size: 20px;
    line-height: 175%;
    margin-bottom: 10px;
}

.demo-box p{
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 10px;
    color: rgba(30,30,36,.54);
}

.demo-box button{
    width: 100%;
    font-size: 16px;
    line-height: 175%;
    padding: 10px 40px;
    border: none;
    border-radius: 8px;
    background: var(--gradient-color-1);
    color: #ffffff;
}


/* CONTACT PAGE: CONTACT HEADER SECTION */
.contact-heading-section{
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact-heading{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.contact-heading h1{
    font-size: 61px;
    font-weight: 500;
    background: linear-gradient(to right, #111D4A, #F05123);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-heading p{
    font-size: 20px;
    color: rgba(30,30,36,.54);
    line-height: 175%;
}


/* CONTACT PAGE: CONTACT SECTION */
.contact-container{
    width: 1000px;
    max-width: 90%;
    background : var(--surface-color);
    border: 1px solid var(--info2-color);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-self: center;
    gap: 25px;
    margin-bottom: 100px;
}


/* CONTACT PAGE: CONTACT - LEFT SIDE SECTION */
.contact-info{
    width: 30%;
    position: relative;
    overflow: hidden;
    color: var(--surface-color);
    border-radius: 10px;
    padding: 50px 55px;
    background: linear-gradient(180deg, #111b5a 0%, #2b224f 25%, #9f3c35 65%, #ff5b1f 100%);
}

.contact-info h2{
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info p{
    font-size: 16px;
    color: var(--surface-color);
    margin-bottom: 60px;
}

.info-item{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.info-item i{
    font-size: 24px;
    width: 25px;
}

.info-item span{
    font-size: 16px;
    line-height: 175%;
}

.circle{
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.circle1{
    width: 120px;
    height: 120px;
    right: 40px;
    bottom: 35px;
}

.circle2{
    width: 170px;
    height: 170px;
    right: -25px;
    bottom: -60px;
}


/* CONTACT PAGE: CONTACT - RIGHT SIDE SECTION */
.contact-form{
    flex: 1;
    padding: 40px 20px;
}

.input-row{
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
}

.input-group{
    flex: 1;
}

.input-group label{
    display: block;
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.input-group input,
.input-group textarea{
    width: 100%;
    border: none;
    border-bottom: 1px solid #9aa4b2;
    padding: 10px 0;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.input-group textarea{
    resize: none;
    min-height: 100px;
}

.full-width{
    margin-bottom: 35px;
}

.send-btn{
    float: right;
    border: none;
    cursor: pointer;
    color: var(--surface-color);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 8px;
    background: var(--gradient-color-1);
    transition: 0.3s;
}

.send-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}




