* {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    padding: 0px;
    margin: 0px;
}

.landing-section {
    position: relative;
    background-color: var(--dark-purple-color);
    background-image: linear-gradient(to right, var(--light-purple-color), var(--dark-purple-color));
}

.landing-section .landing-image-section{
    margin-top: clamp(30px, 4vw, 60px);
}

.landing-section .main-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
    color: white;
    width: 100%; /* Changed from 70% */
        padding: 120px 15px 85px; /* Reduced padding for mobile */
    margin-left: 0; /* Removed fixed margin */
}

.landing-section .main-content h1{
        font-size: 50px;
}

@media (min-width: 992px) and (max-width: 1047px) {
    .landing-section .main-content h1 {
        font-size: 40px;
    }
    
    .landing-section .main-content-text {
        font-size: 16px !important;
    }
}

.landing-section .main-button {
    align-items: center;
    appearance: none;
    background-color: var(--yellow-color);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.25rem;
    width: fit-content;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 15px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.landing-section .main-button:active,
.landing-section .main-button:focus {
    outline: none;
}

.landing-section .main-button:hover {
    background-position: -20px -20px;
}

.landing-section .main-button:focus:not(:active) {
    box-shadow: var(--pink-color) 0 0 0 .125em;
}

.landing-section .main-content-title {
    font-size: 60px;
    color: white;
}

.landing-section .main-content-text {
    font-size: 18px;
    color: white;
}

.landing-section .main-content-rate .heading-logo-image {
    width: auto;
    height: 42px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.landing-section .main-content-rate .heading-logo-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-section .main-content-logo {
    padding-left: 50px;
}

.landing-section .main-content-logo .heading-logo-image {
    width: auto;
    height: 75px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.landing-section .main-content-logo .heading-logo-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .landing-section .main-content-title {
        font-size: 40px; /* Smaller font for mobile */
    }
    
    .landing-section .main-content-text {
        font-size: 16px; /* Smaller text for mobile */
    }
}



.main-count-section {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.main-count-section .container{
    max-width: 1100px !important;
}

.main-count-section .counter-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 0 15px;
}

.main-count-section .counter-item {
    text-align: center;
    padding: 20px 0px;
    position: relative;
}

.main-count-section .counter-number {
    color: var(--dark-purple-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-count-section .counter-text {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .main-count-section .counter-number {
        font-size: 2rem;
    }
}

/* Vertical dividers for desktop */
@media (min-width: 857px) {
    .main-count-section .counter-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 60px;
        width: 1px;
        background: rgba(0,0,0,0.1);
    }
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .main-count-section .main-count-section {
        margin-top: -50px;
        padding-bottom: 30px;
    }
    
    .main-count-section .counter-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .main-count-section .counter-number {
        font-size: 1.5rem;
    }
    
    .main-count-section .counter-text {
        font-size: 0.9rem;
    }
    
    .main-count-section .col-6:nth-child(odd) .counter-item {
        border-right: 1px solid rgba(0,0,0,0.1);
    }
    
    .main-count-section .col-6:nth-child(-n+2) .counter-item {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
}





/* General Section Styling */
.location-section {
    background: #fff;
    padding: 40px 0;
}

.location-section .container {
    max-width: 1700px;
}

.location-section a {
    text-decoration: none;
}

/* Title Styling */
.location-section .location-title {
    color: var(--dark-purple-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.location-section .location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40%;
    width: 60px;
    height: 3px;
    background: var(--pink-color);
    border-radius: 2px;
}

.location-section .lead {
    font-size: 1rem;
    max-width: 700px;
    margin: 25px auto;
    color: #666;
}

/* Card Layout */
.location-section .location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(60, 7, 83, 0.08);
    height: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.location-section .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 7, 83, 0.12);
}

/* Image Styling */
.location-section .card-img-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.location-section .card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-section .location-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

/* Card Content */
.location-section .card-overlay {
    padding: 20px 15px;
}

.location-section .card-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-purple-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Location Details */
.location-section .location-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    background: rgba(60, 7, 83, 0.02);
    border-radius: 8px;
    margin: 10px 0;
}

.location-section .location-price {
    font-size: 0.9rem;
    color: var(--pink-color);
    text-align: center;
    border-bottom: 2px dashed rgba(145, 10, 103, 0.1);
}

.location-section .location-price .price {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin: 5px 0;
}

.location-section .location.features p {
    margin: 5px 0;
    color: var(--light-purple-color);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.location-section .location.features p::before {
    content: '•';
    color: var(--yellow-color);
    margin-right: 6px;
}

/* Button Styling */
.location-section .btn-view {
    background: var(--yellow-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-section .btn-view:hover {
    background: var(--pink-color);
}

/* Card Icon Styling */
.location-section .card-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hover Glow Effect */
.location-section .location-card:hover .card-icon {
    background: linear-gradient(135deg, var(--pink-color), var(--yellow-color));
    box-shadow: 0 0 15px rgba(234, 150, 17, 0.6);
    transform: scale(1.1);
}

/* Icon Font Adjustments */
.location-section .card-icon i {
    font-size: 30px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .location-section .location-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 30px 0;
    }
    
    .location-section .location-title {
        font-size: 1.8rem;
    }
    
    .location-section .location-card {
        max-width: 300px;
    }
    
    .location-section .location-details {
        flex-direction: column;
        gap: 10px;
    }
}






/* Main Section Styling */
.service-section {
    padding: 0px 0px 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Polygon Background Elements */
.service-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(60, 7, 83, 0.03);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    transform: rotate(15deg);
}

.service-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(114, 4, 85, 0.02);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: 0;
}

.service-section .container {
    max-width: 1500px !important;
    position: relative;
    z-index: 1;
}

/* Section Title and Description */
.service-section h2 {
    color: var(--dark-purple-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--light-purple-color), var(--pink-color));
    border-radius: 50px;
}

.service-section p {
    color: #444;
    line-height: 1.6;
}

/* Service Cards Styling */
.service-section .service-card {
    margin: 20px 10px;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    transition: all 0.4s ease;
    background-color: #fff;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.service-section .service-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(114, 4, 85, 0.03);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: transform 0.4s ease;
}

.service-section .service-card:hover::before {
    transform: scale(1.5) rotate(45deg);
}

.service-section .service-card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-color: rgba(60, 7, 83, 0.02);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: transform 0.4s ease;
}

.service-section .service-card:hover::after {
    transform: scale(1.2) rotate(-15deg);
}

.service-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(60, 7, 83, 0.08) 0px 10px 30px;
}

/* Active Card Styling */
.service-section .service-card.active {
    background: linear-gradient(135deg, var(--dark-purple-color) 0%, var(--light-purple-color) 100%);
    color: white;
    transform: translateY(-15px);
    box-shadow: rgba(60, 7, 83, 0.15) 0px 15px 30px;
}

.service-section .service-card.active::before,
.service-section .service-card.active::after {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-section .service-card.active h3 {
    color: white;
}

.service-section .service-card.active p {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Image Styling */
.service-section .service-card-image {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background-color: rgba(234, 150, 17, 0.1);
    border-radius: 12px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-section .service-card:hover .service-card-image {
    transform: rotate(15deg);
    background-color: rgba(234, 150, 17, 0.15);
}

.service-section .service-card.active .service-card-image {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-section .service-card-image img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(1744%) hue-rotate(273deg) brightness(86%) contrast(96%);
}

.service-section .service-card:hover .service-card-image img {
    transform: rotate(-15deg);
}

.service-section .service-card.active .service-card-image img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(327deg) brightness(105%) contrast(102%);
}

/* Card Title */
.service-section .service-card h3 {
    color: var(--dark-purple-color);
    margin: 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.service-section .service-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--yellow-color);
    transition: width 0.3s ease;
}

.service-section .service-card:hover h3::after {
    width: 60px;
}

.service-section .service-card.active h3::after {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Card Text */
.service-section .service-card p {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
    transition: color 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-section .service-card {
        margin: 15px 5px;
        padding: 25px 20px;
    }
    
    .service-section .service-card-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
}






.advantages-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 0px 0px 29px 35px;
}

/* Content Area Styling */
.advantages-section .advantages-content {
    padding: 60px 40px;
}

/* Title Styling */
.advantages-section .advantages-content h2 {
    color: var(--dark-purple-color);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    margin-bottom: 2rem;
}

.advantages-section .advantages-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-purple-color), var(--pink-color));
    border-radius: 2px;
}

/* Advantage Item Styling */
.advantages-section .advantage {
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
}

.advantages-section .active{
    transform: translateX(10px);
    background: #fff3e0;
}


/* Icon Styling */
.advantages-section .advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 12px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(60, 7, 83, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.advantages-section .active .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(60, 7, 83, 0.12);
}

.advantages-section .advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text Content Styling */
.advantages-section .advantage-text h3 {
    color: var(--dark-purple-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.advantages-section .advantage-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1300px) and (min-width: 992px){
    .advantages-section .advantage-text h3 {
        font-size: 15px;
    }
    
    .advantages-section .advantage-text p {
        font-size: 14px;
    }
}

/* Image Section Styling */
.advantages-section .advantages-image {
    height: 100%;
    position: relative;
}

.advantages-section .advantages-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 750px;
}

.advantages-section .advantages-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(60, 7, 83, 0.1), transparent);
}

/* Button Styling */
.advantages-section .btn-custom {
    background: linear-gradient(135deg, var(--yellow-color) 0%, #FFB800 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 150, 17, 0.2);
}

.advantages-section .btn-custom:hover {
    background: linear-gradient(135deg, #FFB800 0%, var(--yellow-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 150, 17, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .advantages-section .advantages-content {
        padding: 50px 30px;
    }
    
    .advantages-section .advantages-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .advantages-section .row {
        flex-direction: column-reverse;
    }
    
    .advantages-section .advantages-content {
        padding: 40px 20px;
    }
    
    .advantages-section .advantages-content h2 {
        font-size: 2rem;
    }
    
    .advantages-section .advantages-image img {
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .advantages-section {
        padding: 30px 0;
    }
    
    .advantages-section .advantages-content h2 {
        font-size: 1.8rem;
    }
    
    .advantages-section .advantage-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 10px;
    }
    
    .advantages-section .advantage {
        padding: 10px;
    }
    
    .advantages-section .advantage-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .advantages-section .advantages-content {
        padding: 30px 15px;
    }
    
    .advantages-section .advantage {
        padding: 10px;
    }
    
    .advantages-section .advantage-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px;
    }
}






.customize-section {
    background-color: var(--dark-purple-color);
    color: white;
    padding: 50px 0;
}

.customize-section .container {
    max-width: 1500px !important;
}

/* Heading Styles */
.customize-section .customize-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: white;
}

/* Feature Box Styles */
.customize-section .d-flex.flex-column {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 25px !important;
    transition: background-color 0.3s ease;
}

/* Icon Styles */
.customize-section i {
    color: var(--yellow-color);
    font-size: 16px;
    min-width: 1.5rem;
    margin-right: 12px;
    margin-top: 4px;
}

/* Heading Styles in Features */
.customize-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

/* Paragraph Styles */
.customize-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    padding-left: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .customize-section .customize-heading h2 {
        font-size: 2rem;
    }
    
    .customize-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .customize-section .customize-heading h2 {
        font-size: 1.75rem;
    }
    
    .customize-section p {
        padding-left: 1.75rem;
    }
}

@media (max-width: 576px) {
    .customize-section .customize-heading h2 {
        font-size: 1.5rem;
    }
    
    .customize-section {
        padding: 40px 0;
    }
    
    .customize-section .d-flex.flex-column {
        padding: 20px;
    }
}







.duty-section {
    background: 
        linear-gradient(120deg, rgba(60, 7, 83, 0.03) 0%, rgba(145, 10, 103, 0.03) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%),
        linear-gradient(45deg, transparent 48%, rgba(234, 150, 17, 0.05) 50%, transparent 52%) 0 0 / 20px 20px;
    position: relative;
    overflow: hidden;
}

.duty-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Left Column Styling - Heading Section */
.duty-section .duty-heading-section {
    position: relative;
    padding-right: 40px;
}

.duty-section .duty-heading-section span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--light-purple-color);
    font-weight: 600;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(114, 4, 85, 0.07);
    border-radius: 0;
    position: relative;
    border-left: 3px solid var(--pink-color);
}

.duty-section .duty-heading-section h2 {
    color: var(--dark-purple-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.duty-section .duty-heading-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--dark-purple-color), transparent);
}

.duty-section .duty-heading-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 1px solid rgba(114, 4, 85, 0.2);
}

.duty-section .duty-heading-section img {
    width: 85%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 30px rgba(60, 7, 83, 0.12),
        0 5px 15px rgba(60, 7, 83, 0.08);
    border-radius: 4px;
}

/* Right Column - Content Cards */
.duty-section .duty-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.duty-section .duty-content-section .row {
    position: relative;
}

/* Service Point Cards */
.duty-section .duty-content-section .duty-point {
    background: #fff;
    padding: 30px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: 
        0 10px 20px rgba(60, 7, 83, 0.05),
        0 3px 6px rgba(60, 7, 83, 0.02);
}

/* Fancy border effect */
.duty-section .duty-content-section .duty-point::before,
.duty-section .duty-content-section .duty-point::after {
    content: "";
    position: absolute;
    background: transparent;
    pointer-events: none;
    transition: all 0.3s ease;
}

.duty-section .duty-content-section .duty-point::before {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-purple-color), var(--pink-color));
}

.duty-section .duty-content-section .duty-point::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--pink-color), var(--yellow-color));
}

.duty-section .duty-content-section .active::before {
    width: 100%;
}

.duty-section .duty-content-section .active::after {
    height: 100%;
}

/* Additional border elements */
.duty-section .duty-content-section .duty-point .mt-3::before,
.duty-section .duty-content-section .duty-point .mt-3::after {
    content: "";
    position: absolute;
    background: transparent;
    pointer-events: none;
    transition: all 0.3s ease;
}

.duty-section .duty-content-section .duty-point .mt-3::before {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--yellow-color), var(--dark-purple-color));
}

.duty-section .duty-content-section .duty-point .mt-3::after {
    top: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-color), var(--dark-purple-color));
}

.duty-section .duty-content-section .active .mt-3::before {
    height: 100%;
}

.duty-section .duty-content-section .active .mt-3::after {
    width: 100%;
}

.duty-section .duty-content-section .active {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(60, 7, 83, 0.08),
        0 5px 15px rgba(60, 7, 83, 0.04);
}

/* Icon styles */
.duty-section .duty-image {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duty-section .duty-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 150, 17, 0.1);
    z-index: -1;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.duty-section .active .duty-image::before {
    transform: rotate(0deg);
    background: rgba(145, 10, 103, 0.1);
}

.duty-section .duty-image img {
    height: 65%;
    width: 65%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(72%) saturate(1529%) hue-rotate(360deg) brightness(100%) contrast(94%);
    transition: all 0.3s ease;
}

.duty-section .active .duty-image img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(62%) saturate(6177%) hue-rotate(284deg) brightness(94%) contrast(101%);
}

/* Typography */
.duty-section h3 {
    color: var(--dark-purple-color);
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.duty-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-color);
    transition: all 0.3s ease;
}

.duty-section .active h3 {
    color: var(--pink-color);
}

.duty-section .active h3::after {
    width: 40px;
}

.duty-section .duty-content-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Staggered animation for items */
.duty-section .duty-point:nth-child(1) {
    transition-delay: 0.05s;
}
.duty-section .duty-point:nth-child(2) {
    transition-delay: 0.1s;
}
.duty-section .duty-point:nth-child(3) {
    transition-delay: 0.15s;
}
.duty-section .duty-point:nth-child(4) {
    transition-delay: 0.2s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .duty-section .duty-heading-section h2 {
        font-size: 2.2rem;
    }
    
    .duty-section .duty-heading-section img {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .duty-section .duty-heading-section {
        padding-right: 15px;
    }
    
    .duty-section .duty-heading-section h2 {
        font-size: 2rem;
    }
    
    .duty-section .duty-heading-section p {
        font-size: 1rem;
    }
    
    .duty-section h5 {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .duty-section {
        padding: 60px 0;
    }
    
    .duty-section .row {
        flex-direction: column;
    }
    
    .duty-section .duty-heading-section,
    .duty-section .duty-content-section {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .duty-section .col-7,
    .duty-section .col-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .duty-section .duty-heading-section {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .duty-section .duty-heading-section img {
        width: 80%;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .duty-section h2 {
        font-size: 1.8rem;
    }
    
    .duty-section .duty-point {
        padding: 25px !important;
    }
}

@media (max-width: 576px) {
    .duty-section {
        padding: 40px 0;
    }
    
    .duty-section .duty-heading-section h2 {
        font-size: 1.6rem;
    }
    
    .duty-section .duty-heading-section span {
        font-size: 0.8rem;
    }
    
    .duty-section .duty-point {
        margin-bottom: 20px;
        padding: 20px !important;
    }
    
    .duty-section .duty-heading-section p {
        padding-left: 15px;
    }
}









.product-section {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
}

.product-section .container {
    max-width: 1500 !important;
}

.product-section-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.product-section-description {
    text-align: center;
    font-size: 1rem;
}

.product-list {
    margin-top: 50px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(7, 1fr);
    flex-direction: row;
    justify-content: space-evenly;
}

.product-list .vertical-line {
    width: 2px;
    height: 100px;
    background-color: white;
    margin: 0 auto;
    transform: rotate(180deg);
}

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

.product img {
    max-width: 60px;
    height: auto;
    object-fit: contain;
}

.product p {
    font-size: medium;
    text-align: center;
    font-weight: 700;
    line-height: 60px;
}

@media screen and (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-list .vertical-line {
        display: none;
    }
}

.partners-section {
    padding: 60px 0px;
}

.partners-section .container {
    max-width: 1500px !important;
    gap: 50px !important;
}

.partners-section .side-vertical {
    height: 140px;
    width: 15px;
    background-color: var(--yellow-color);
    /* background-image: linear-gradient(var(--yellow-color), white); */
}

.partners-section .partner-section-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: xx-large;
}

.brand-logo {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.benefit-section {
    background-color: var(--background-color);
    padding: 60px 0px;
}

.benefit-section .container {
    max-width: 1500px !important;
    background-color: var(--background-color);
}

.benefit-section .benefit-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 10px 0px 40px 0px;
}

.benefit-section .card {
    background-color: transparent !important;
    border: none !important;
}

.benefit-section .card i {
    color: var(--error-color);
    font-size: x-large;
}

.card-title {
    font-weight: 700;
}

.card-text {
    color: var(--subText-color);
}


.privacy-section .fa-arrow-right h4{
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ===================================bogota-faq================== */


#bogota-faq .faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for the icon */
}

#bogota-faq .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color:#ff6c2c ;
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease-out;
}

#bogota-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}



#bogota-faq .faq-item.active .faq-answer {
    max-height: 300px; 
    padding-top: 15px;
    padding-bottom: 15px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

#bogota-faq .faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

#bogota-faq .faq-item.active .faq-question h3{
    color:white;
}