:root {
    /* Color variables */
    --primary-color: #1E1E1E;
    --secondary-color: #2B6777;

    --white-color: #F2F2F2;
    --tertiary-color: #52AB98;
    --placeholder-color: #999999;
    --heading-color: #C8D8E4;
    --text-color-2 : #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    cursor: default;
    font-family: 'Onest', sans-serif;
}

body {
    background-color: var(--white-color);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    color: var(--text-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }


/* Links */
a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Form elements */
input, textarea, select {
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.4rem;
    margin-bottom: 10px;
}

::placeholder {
    color: var(--placeholder-color);
}

/* Container for consistent padding */
.container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

/* Fluid images */
img {
    max-width: 100%;
    height: auto;
}

main {
    width: 100%;
    max-width: 3000px;
    margin: 0 auto;
    height: auto;
}

#about .content, #choose .content, #review .content, #faq .content,  #work .content {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* NAVBAR */
#mobile-navbar {
    padding: 10px;
    width: 100%;
}

.mobile-navbar {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mobile-navbar img {
    width: 140px;
    height: auto;
}

.mobile-navbar p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    color: #2B2D24;
}

.mobile-navbar p a {
    font-weight: 600;
    color: var(--secondary-color);
}

#desktop-navbar {
    display: none;
}

.desktop-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: max-content;
}

.desktop-navbar img {
    width: 180px;
    height: auto;
}

.desktop-navbar .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-navbar .cta-button p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #2B2D24;
}

.desktop-navbar .cta-button a {
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.desktop-navbar .cta-button a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.desktop-navbar .cta-button a:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 103, 119, 0.2);
}

.desktop-navbar .cta-button a:hover:before {
    left: 100%;
}

.desktop-navbar .cta-button a:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(43, 103, 119, 0.1);
}

/* OFFER RIBBON */
#offer-ribbon {
    background-color: #52AB98;
    padding: 0.7rem 0.8rem;
    position: relative;
    overflow: hidden;
}

#offer-ribbon p {
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    
    color: #FFFFFF;
    line-height: 1.7rem;
    animation: scaleUpDown 2s ease-in-out infinite;
}

@keyframes scaleUpDown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

#offer-ribbon span {
    padding: 0.2rem 0.5rem;
    background-color: var(--white-color);
    color: rgba(81, 81, 83, 1);
    font-weight: 600;
    border-radius: 3px;
    margin: 0 0.2rem;
    background: var(--white-color);
    box-shadow: 5px 6px 7px rgba(0, 0, 0, 0.2);
}


/* HERO */
#hero {
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.6)), url('/assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-content .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    
}

.hero-content .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.hero-left-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-left-img {
    display: none;
}

.sub-title, .hero-content .line  {
    display: none;
}

.form-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    
}

#hero .left .hero-offer-container {
    display: none;
}

.hero-content .left h1 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    line-height: 1.5;
}

.hero-content .right {
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#form {
    width: 100%;
    max-width: 300px;
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 10px;
}

#form h3 {
    font-size: 0.7rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: var(--secondary-color);
    padding: 10px 12px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    line-height: 1.4;
}

input, select {
    width: 100%;
    font-size: 0.7rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid  rgba(153, 153, 153, 1);
    margin-bottom: 8px;
}

input::placeholder, select {
    font-size: 0.6rem;
    color: rgba(153, 153, 153, 0.6);
}

.disclaimer p {
    width: 100%;
    font-size: 0.55rem;
    color: #333333;
    text-align: justify;
    line-height: 1.5;
}

.hero-right-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
}

.hero-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 40, 104, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: var(--secondary-color);
    padding: 12px 20px;
    display: flex;
    border-radius: 7px;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    color: #FFFFFF;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    transition: all 0.3s ease;
    z-index: 1;
}

.submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 103, 119, 0.3);
}

.submit-btn:hover:before {
    width: 100%;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(43, 103, 119, 0.2);
}

.sub-title p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    line-height: 1.4;
}

.line {
    width: 100%;
    height: 0.5px;
    background-color: rgba(254, 254, 254, 0.5);
}

.hero-offer-container {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 4px solid var(--tertiary-color);
    background:#FDFFF0;
    border-radius: 12px;
    padding: 10px;
    margin-top: 20px;
}

.hero-offer {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.top-offer , .bottom-offer {
    width: 100%;
    max-width: 170px;
    background-color: #52AB98;
    color: var(--white-color);
    border-radius: 5px;
    text-align: center;
}

.top-offer {
    position: absolute;
    top: 95px;
    right: 7px;
    z-index: 1;
}

.bottom-offer {
    position: absolute;
    bottom: 95px;
    left: 7px;
    z-index: 1;
    background: linear-gradient(90deg, #52AB98 0%, #6BC4B0 50%, #52AB98 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.top-offer h3 , .bottom-offer h3 {
    font-size: 0.8rem;
    color: #FFFFFF;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    padding: 10px 9px
}




.subheading h3 {
    font-size: 1.1rem;
    color: var(--text-color-2);
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    max-width: 195px;
    line-height: 1.5;
}

.subheading  span {
    color: var(--secondary-color);
    font-weight: 600;
}

.subheading  span.bold {
    font-weight: 600;
    color: #000000;
}



.hero-feature-container {
    display: none;
}

/* partner */

#partner {
    padding: 20px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

.partner-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.partner-title h2 {
    font-size: 0.65rem;
    font-weight: 530;
    color: var(--placeholder-color);
    line-height: 1.6;
    text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 13px;
}

.partner-item {
    width: 90px;
    height: 50px;
   
}

.partner-item img {
    width: 100%;
    height: auto;
    object-fit: cover;

}



/* RIBBON */
#ribbon {
    width: 100%;
    height: 100%;
    background-color: rgba(242, 242, 242, 1);
    
}

.ribbon-title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon-title h2 {
    font-size: 0.7rem;
    font-weight: 530;
    color: var(--secondary-color);
    line-height: 1.6;
    text-align: center;
    padding: 20px 15px;
}




/* THREE STEPS */

#about, #choose, #review, #info, #faq, #solution, #work {
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #FFFFFF;
}

/* title container */

.title-container {
   
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-heading p {
    
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(200, 216, 228, 1);
    line-height: 1.5;
    text-align: center;
}

.title img {
    position: absolute;
    top: 40px;
    left: 50;
    width: 100px;
    height: 100%;
    
}

.title h2{
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color); 
    line-height: 1.5;
    margin-bottom: 1rem; 
}

.title h2 span {
   
    color: var(--secondary-color);
}


/* other title container */

.other-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.other-title-heading p {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(200, 216, 228, 1);
    line-height: 1.5;
    text-align: center;
}



.other-title h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    max-width: 220px;
}

.other-title h2 span {
    color: var(--secondary-color);
    display: inline-block;
}

.other-title-description p {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(30, 30, 30, 1);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}



/* about */

.about-container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-container .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.feature-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.about-features-grid {
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   gap: 6px;
   
}

.about-flex1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
   
}

.about-flex2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    
}

.feature-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.about-img-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#about .right  .other-title-description {
    display: none;

}

.feature-info h3 {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(30, 30, 30, 1);
    line-height: 1.5;
    margin: 0;
}

#about .feature-icon i{
    color: var(--tertiary-color);
    line-height: 1rem;
}

#about .feature-icon {
    width: 16px;
    height: 16px;
    display: flex;  
    align-items: flex-start;
    justify-content: center;
}

.sub-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
}

.sub-btn button {
    width: 100%;
    background: linear-gradient(90deg, var(--tertiary-color) 0%, #6BC4B0 50%, var(--tertiary-color) 100%);
    background-size: 200% 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    border: none;
    font-size: 0.7rem;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: shimmer 2.5s infinite linear;
    transition: all 0.3s ease;
    z-index: 1;
    border: 2px solid transparent;
}

.sub-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(82, 171, 152, 0.3);
    border: 2px solid var(--tertiary-color);
}

.sub-btn button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(82, 171, 152, 0.2);
}

.left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* choose */

.choose-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.choose-grid {
   width: 100%;
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 20px;
}

.choose-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 15px;
    padding: 1rem;
    border-top: 1px solid rgba(153, 153, 153, 1);
    border-bottom: 1px solid rgba(153, 153, 153, 1);
}

.choose-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.choose-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-info h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}   

.choose-info p {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(30, 30, 30, 1);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* divider */
.border {
    width: 100%;
    height: 8px;
    background-color: rgba(82, 171, 152, 1);    
}

/* work */

#work .content {
    gap: 20px;
}

#mobile-view {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.work-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.work-item-1 {
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.6)), url('/assets/work-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.work-item-1 .work-head .number {
    color: var(--tertiary-color) !important;
}

.work-item-1 .work-content p {
    display: block !important;
    font-weight: 350;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin: 0;
}

/* Desktop view default state */
.work-item.default-hover {
    background-color: rgba(0, 0, 0, 0.4) !important;
    transition: background-color 0.3s ease;
}

.work-item.default-hover .work-head .number,
.work-item.hover .work-head .number {
    color: var(--tertiary-color) !important;
    transition: color 0.3s ease;
}

.work-item.default-hover .work-content p,
.work-item.hover .work-content p {
    display: block !important;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.work-item {
    position: relative;
    z-index: 2;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.work-item:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.work-item .work-content p {
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-content p {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

.work-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: background-image 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.work-item-2 {
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.6)), url('/assets/work-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.work-item-3 {
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.6)), url('/assets/work-3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.work-item-4 {
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.6)), url('/assets/work-4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.work-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.work-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.work-head .number {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tertiary-color);
    line-height: 1.5;
    margin: 0;
}

.work-title h3{
    font-size: 0.75rem;
    font-weight: 450;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin: 0;
}

.work-content p {
    font-size: 0.6rem;
    font-weight: 350;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin: 0;
}


/* desktop view */

#desktop-view {
    display: none;
}

/* Image Slider */
#image-slider {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

#image-slider .content {
    flex-direction: column;
}

.image-swiper {
    width: 100%;
    padding: 20px 0;
}

.image-swiper .swiper-slide {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.image-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-swiper .swiper-slide:hover img {
    transform: scale(1.1);
}


/* review */

.reviews-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review-card {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    border: 4px solid var(--tertiary-color);
    border-radius: 10px;
    padding: 15px;
}

.review-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
}


.review-header img {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.review-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
}   

.reviewer .name {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */

#faq {
    background: rgba(85, 141, 128, 0.05);
} 

#faq .title h2{
    color: var(--secondary-color);
    margin-bottom: 0;


}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #03334E;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #FFFFFF;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 0.8rem;
    max-width: 140px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
}

.toggle-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
   
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #FFFFFF;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 0 15px 15px 15px;
    opacity: 1;
    transform: translateY(0);
}

.faq-description p {
    font-size: 0.7rem;
    color: var(--primary-color); 
    margin-bottom: 8px;
}

#faq .faq-description {
    text-align: justify;
    max-width: 800px;
}

/* FOOTER */

footer {
    background-color: #FFFFFF;
    padding: 20px;
    
}

#terms-of-use footer {
    background-color: #FFFFFF;
    padding: 20px;
    margin-top: 50px;
}

footer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



footer .content .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: auto;
}

footer .content .footer-logo img {
    width: 100%;
    height: auto;
}

footer .content .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


footer .content .footer-links a {
    font-size: 0.5rem;
    color: rgba(153, 153, 153, 1);
    text-decoration: none;
}

footer .content .copyright p {
    font-size: 0.5rem;
    color: rgba(153, 153, 153, 1);
}


/* Invalid state */
.form-group.invalid input, .form-group.invalid select,
.form-row.invalid input, .form-row.invalid select {
    border: 2px solid #ff4444 !important;
}

.form-group.invalid input:focus, .form-group.invalid select:focus,
.form-row.invalid input:focus, .form-row.invalid select:focus {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1) !important;
}

/* Remove arrows/spinners from number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}


/* Privacy Policy Section */
#privacy-policy {
    padding: 20px;
    background-color: var(--white-color);
}

#privacy-policy .content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-content, #terms-of-use .legal-content {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.legal-title h1 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.legal-description h2, .legal-content h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}



.legal-content .bold {
    font-weight: bold;
    color:#6c757d;
}

.legal-description p span {
    font-weight: bold;
}

.legal-content {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.legal-content ol {
    list-style-position: outside;
    padding-left: 20px;
    counter-reset: item;
}

.legal-content ol li {
    font-size: 0.8rem;
    margin-bottom: 10px;
    padding-left: 10px;
   
}

.legal-description h3 {
    color: var(--secondary-color);
    margin: 30px 0 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-description h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 30px;
    margin: 20px 0;
}

.legal-content ul li {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-left: 5px;
}

.legal-content ul ul {
    margin: 15px 0;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Table Styles */
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.legal-content th {
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 10px;
    text-align: left;
    font-size: 0.8rem;
}

.legal-content td {
    padding: 12px 15px;
    font-size: 0.6rem;
    border-bottom: 1px solid #eee;
}

.legal-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

.legal-content tr:hover {
    background-color: #f1f3f5;
}

.legal-content tr:last-child td {
    border-bottom: none;
}



/* Thank You Section */
#thankyou {
    padding: 2rem 0;
    width: 100%;
}

.thankyou-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.thankyou-content img {
    width: 120px;
    height: auto;
    margin: 1rem 0;
}

.thankyou-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #023047;
}

.thankyou-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #023047;
}

.thankyou-content p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0.5rem 0;
}

.thankyou-content p a {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.thankyou-contact-container {
    margin: 1rem 0;
}

.thankyou-divider {
    width: 80%;
    height: 1px;
    background-color: #023047;
    margin: 0.5rem auto;
}

/* Ad Section */
#ad {
    padding: 1rem;
}

.ad-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-content p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    text-align: center;
}

.ad-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 20rem auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: max-content;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
}

.logo-container {
    margin: 1rem 0;
}

.modal-text {
    margin: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #023047;
}

.modal-content p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 20px;
}

.logo-container img {
    width: 100px;
    height: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 34px;
    font-weight: 400;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* Add pulse effect for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 103, 119, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(43, 103, 119, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(43, 103, 119, 0);
    }
}

/* Apply pulse animation only to submit-btn */
.submit-btn {
    animation: pulse 2s infinite;
}

/* Remove pulse when hovering */
.submit-btn:hover {
    animation: none;
}

