* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.btn-pulse-about {
    background-color: #ff7300;
    color: white;
    width: 150px;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 13px;
    margin: 15px 0px;
    font-size: 17px;
}

.btn-pulse-about:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(155, 89, 182, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
    }
}

#btn_pulse {
    margin: 15px 0px;
}

.btn-pulse {
    background-color: #ff7300;
    color: white;
    width: 150px;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 13px;
    margin: 0px 100px;
    font-size: 17px;
}

.btn-pulse-1 {
    background-color: #ff7300;
    color: white;
    width: 170px;
    height: 55px;
    border: none;
    cursor: pointer;
    border-radius: 13px;
    margin: 0px 50px;
    font-size: 17px;
}

.btn-pulse:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(155, 89, 182, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
    }
}

.btn-lightning {
    background-color: white;
    color: #000;
    font-size: 17px;
    border: 2px solid #ff7300;
    width: 150px;
    height: 35px;
    cursor: pointer;
    border-radius: 13px;
    margin: 0PX 80PX;
}

.btn-lightning:hover {
    animation: lightning 1.5s infinite;
    box-shadow: 0 0 20px #ff7300;
}

@keyframes lightning {
    0% {
        box-shadow: 0 0 5px #f1c40f;
    }

    25% {
        box-shadow: 0 0 15px #f1c40f, 0 0 25px #f1c40f;
    }

    50% {
        box-shadow: 0 0 5px #f1c40f;
    }

    75% {
        box-shadow: 0 0 15px #f1c40f, 0 0 25px #f1c40f, 0 0 50px #f1c40f;
    }

    100% {
        box-shadow: 0 0 5px #f1c40f;
    }
}

.experience-container {
    max-width: 1350px;
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    /* Centers the section */
    margin-top: 30px;
}

.experience-section {
    display: flex;
    margin-top: -30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

}

.image-box {
    position: relative;
    width: 100%;
    
}

#banner-about {
    margin-top: 100px;
}

.image-box img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

/* Text Overlay */
.image-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
}

.text-section {
    max-width: 600px;
    padding: 20px;
    position: relative;
    left: 3%;
}

.text-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}


#about-button {
    width: 140px;
    height: 40px;
    background-color: rgb(246, 148, 33);
    color: white;
    border-radius: 7px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

#about-button-1 {
    width: 200px;
    height: 40px;
    background-color: rgb(246, 148, 33);
    box-shadow: 1px 1px 2px 1px #333;
    color: white;
    font-weight: 650;
    border-radius: 7px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

#about-button:hover {
    transform: scale(1.1);
    box-shadow: 1px 1px 2px 1px #333;
}

/* Text CSS */
#text-experienced {
    font-size: 35px;
    color: #000;
    font-weight: 600;
    margin: 15px 0PX;
}

#text_Detail {
    font-size: 16px;
    color: #000;
    opacity: 0.8;
    font-weight: 550;
    margin: 15px 0px;
}

/* Client CSS */

._clients_section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40PX;
}

._clients_title {
    font-size: 40px;
    font-weight: 650;
    margin-bottom: 20px;
    margin-top: -50px;
    color: #000;
}

._clients_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    justify-items: center;
    max-width: 1300px;
    margin: auto;
    margin-top: 50px;
}

._client_logo {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 150px;
    height: 100px;
}

._client_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* features  CSS*/

#features-idd {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    background-color: #FBFCFD;
    gap: 45px;
    overflow: hidden;
}

.features__div {
    flex: 1 1 calc(33.333% - 30px);
    /* 3 per row, accounting for gap */
    max-width: calc(33.333% - 110px);
    height: 357px;
    width: 602PX;
    height: 357px;
    border: 1px solid #ccc;
    border-radius: 13px;
    margin: 20px 0px;
}

.features-heading h6 {
    font-size: 18px;
    color: black;
    width: 703px;
    font-weight: 650;
    margin: 15px 30px;
}

#features_detail {
    width: 306px;
}

.subdescription__features p {
    width: 100%;
    max-width: 90%;
    /* Optional, to leave some padding */
    margin: 15px auto;
    font-size: 16px;
    color: black;
    opacity: 0.8;
    line-height: 24px;
    box-sizing: border-box;
    text-align: left;
    /* Or center, depending on design */
}

.icon__features {
    background-color: #E6F1F1;
    width: 60px;
    height: 60px;
    margin: 15px 30px;
    border-radius: 13px;
    padding: 14px;
}

.information-div {
    margin-top: 63px;
}

.features__div:hover {
    transform: scale(1.05);
    /* smaller scale to reduce overflow */
    transition: 0.3s ease-in-out;
    border: 2px solid #E6F1F1;

}

.main-information {
    background: linear-gradient(to bottom, #002766, #076380, #2c8dab, #5de0e6);
    padding: 4px 0px;
}

.main-information-features {
    background: linear-gradient(to bottom, #002766, #076380, #2c8dab, #5de0e6);
    padding: 17px 0px;
    height: 75px;
}

#main-information-detail {
    color: white;
    margin: 20px auto;
    width: 850px;
    text-align: center;
}

.main-information h5 {
    margin: 0px auto;
    text-align: center;
    color: white;
    font-weight: 650;
    font-size: 35px;

}

/* Contact CSS */

#contact_skills4u .contact__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    background-color: #002766;

    padding: 25px 10px;
    margin-top: 24px;

}

.information___Div {
    width: 586px;
}

.heading_skills4u h4 {
    font-size: 35px;
    color: white;
    font-weight: 600;
    margin: 15px 0px;
}

.subtext__skills4u p {
    font-size: 16px;
    font-weight: 400;
    margin: 15px 0px;
    color: white;
}

.featured__points {
    display: flex;
    gap: 12px;
}

.featured__points h5 {
    font-size: 14px;
    color: white;
    font-weight: 370;
    margin: 8px 0px;
}

/* Banner CSS */
.banner-section {
    max-width: 100%;
    height: 500PX;
    margin-top: 93PX;
}

.contact-form {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    float: right;
    margin-right: 50px;
    margin-top: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    width: 30%;
}

.phone-group input {
    width: 70%;
}

.whatsapp-toggle {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 15px;
}

.submit-btn {
    background-color: #ff7300;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: transparent;
    color: black;
    border: 1px solid black;
    transition: 1s all ease-in-out;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.disclaimer a {
    color: #0a4089;
    text-decoration: underline;
}


#testimonial {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;

}

.testimonial-container {
    width: 100%;
    margin: 0px 23px;
    overflow: hidden;
    position: relative;
}

.main-testimonial h2 {
    margin: 0px auto;
    text-align: center;
    color: black;
    font-weight: 650;
}

.main-testimonial p {
    margin: 20px auto;
    text-align: center;
    width: 672px;
}


.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-box {
    flex: 0 0 360px;
    height: 363px;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0 14px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 22px;
}

.fa-star {
    color: gold;
    margin: 0 2px;
}

.testimonial-detail p {
    margin: 5px 0;
    margin-top: 18px;
    font-size: 16px;
    line-height: 23px;
    font-family: Inter, sans-serif;
}

.logo {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.company-name h3,
.company-position p {
    font-weight: bold;
    margin: 3px 0;
}

.company-name h3 {
    font-size: 16px;
    font-family: Inter, sans-serif;
    color: black;
    font-weight: 580;
}

.company-position p {
    font-size: 14px;
    font-family: Inter, sans-serif;
    color: black;
    font-weight: 500;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between buttons */
    z-index: 1000;
}

.floating-buttons-1 {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between buttons */
    z-index: 1000;
}

/* Common Styles for Buttons */
.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.floating-button:hover {
    transform: scale(1.1);
    color: white;
}

.floating-button img {
    width: 30px;
    height: 30px;
}

/* Call Button Styles */
.call-button {
    background-color: #1F5B99;
    /* Blue color for Call */
    color: white;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    background-color: #25D366;
    /* Green color for WhatsApp */
}

.gradient-about-text {
    background: linear-gradient(to right, #5de0e6, #002766);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 670;
}

.gradient_Text {
    background: linear-gradient(to right, #5de0e6, #002766);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    color: #002766;
    font-weight: 600;
}

/* Counter */

.achievement-section {
    padding: 18px 20px;
    text-align: center;
    background-color: #ffffff;
    overflow-x: hidden;
}

.achievement-header .tag {
    display: inline-block;
    background: #d7f2ed;
    color: #0d6159;
    padding: 4px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;

}

#achievement-id {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: black;
    font-weight: 650;
}

.achievement-header h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: black;
    font-weight: 650;
}

.achievement-header p {
    color: #6b6b6b;
    font-size: 16px;
    margin-bottom: 40px;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.counter-box {
    background-color: #002766;

    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    width: 250px;
    height: 130px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.counter-box h4 {
    font-size: 36px;
    margin: 0;
}

.counter-box p {
    font-size: 16px;
    margin-top: 5px;
}


/* About CSS */
#about .about_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 49px;
    margin: 0px 30px;
}
.about_content{
    margin-top:-50px;
}
.about_image_container>img {
    width: 592px;
    height: 474px;
    border-radius: 13px;
    margin-top:56px;
}

.about_text_container {
    width: 592px;
    height: 403px;
    margin-top: 25px;
}
#content-markteting-image{
    margin-top:130px;
}
.about_text h2 {
    font-size: 38px;
    color: #000;
    font-weight: 650;
    margin: 12px 0px;
    width: 592px;
}

.about_detail p {
    font-size: 16px;
    color: black;
    opacity: 0.8;
    margin: 35px 0px;
    width: 593px;
    line-height: 27px;
    text-align:justify
}

.about_list {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

#about-list-id {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-top: 18px;
}

#about-list-id-3 {
    font-size: 17px;
    color: #000;
    font-weight: 700;
    margin-top: 21px;
}

.about_list h2 {
    font-size: 16px;
    margin-top: 18px;
}

/* Core Values CSS */
#features_markMe .features_-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #FBFCFD;
    gap: 45px;
}

.features__div {
    width: 288PX;
    height: 293px;
    border: 1px solid #ccc;
    border-radius: 13px;
    margin: 20px 0px;
}

.features-heading h4 {
    font-size: 18px;
    color: black;
    width: 238px;
    font-weight: 650;
    margin: 15px 30px;
}

.subdescription__features p {
    font-size: 16px;
    color: black;
    opacity: 0.8;
    line-height: 24px;
    width: 238px;
    margin: 15px 30px;
}

.icon__features {
    background-color: #E6F1F1;
    width: 60px;
    height: 60px;
    margin: 15px 30px;
    border-radius: 13px;
    padding: 14px;
}

.information-div {
    margin-top: 63px;
}

.features__div:hover {
    transform: scale(1.2);
    transition: 1s all ease-in;
    border: 2px solid #E6F1F1;
}

#main-information-id {
    margin: 0px auto;
    text-align: center;
    color: white;
    font-weight: 650;
    font-size: 35px;
}

.main-information h2 {
    margin: 0px auto;
    text-align: center;
    color: white;
    font-weight: 650;
}

.main-information p {
    text-align: center;
    width: 288px;
    color: white;
    margin: 20px auto;
}

/* Our Story  */
.image_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
}

.image_grid img {
    width: 288px;
    height: 192px;
    border-radius: 13px;
}

.text-content h5 {
    font-size: 35px;
    margin-top: 40px;
    color: black;
    font-weight: 650;
}

.image_grid_2,
.image_grid_4 {
    margin-top: 34px;
}

.text-content p {
    opacity: 0.8;
    color: #000;
    margin-top: 34px;
    text-align: justify;
    line-height: 27px;
    font-size: 16px;
}

#our-story {
    display: flex;
    gap: 160px;
    padding: 0px 0px;
    margin: 0px 140px;
}

.text-content {
    width: 592px;
    height: 480px;
}

.gradient-text-about {
    background: linear-gradient(to right, #5de0e6, #002766);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

#core_values_markMe .core_values_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #FBFCFD;
    gap: 45px;
}

.core_values__div {
    width: 288PX;
    height: 253px;
    border: 1px solid #ccc;
    border-radius: 13px;
    margin: 13px 0px;
}

#core-values-id {
    font-size: 18px;
    color: black;
    width: 238px;
    font-weight: 650;
    margin: 15px 30px;
}

.core_values_heading h4 {
    font-size: 18px;
    color: black;
    width: 238px;
    font-weight: 650;
    margin: 15px 30px;
}

.core_values__features p {
    font-size: 16px;
    color: black;
    opacity: 0.8;
    line-height: 24px;
    width: 238px;
    margin: 15px 30px;
}

.core_values_icon {
    background-color: #E6F1F1;
    width: 60px;
    height: 60px;
    margin: 15px 30px;
    border-radius: 13px;
    padding: 14px;
}

.core_values_information-div {
    margin-top: 63px;
}

.core_values__div:hover {
    transform: scale(1.2);
    transition: 1s all ease-in;
    border: 2px solid #E6F1F1;
}

.main-information h2 {
    margin: 0px auto;
    text-align: center;
    color: white;
    font-weight: 650;
}

.main-information p {
    text-align: center;
    width: 288px;
    color: white;
    margin: 20px auto;
}

@media(max-width:768px) {
    .main-information h2 {
        width: 100%;
    }

    .main-information p {
        width: 100%;
    }
}

/* Service CSS */
.detail-div-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.detail-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 496px;
    border: 1px solid #ccc;
    border-radius: 13px;
    padding: 12px 20px;
    gap: 30px;
}

#detail-text-id {
    font-size: 18px;
    color: black;
    font-weight: 650;
}

#detail-text-id-2 {
    font-size: 28px;
    color: black;
    font-weight: 650;
}

.detail-text {
    font-size: 16px;
    color: black;
}

.detail-text h5 {
    margin-left: -30px;
}

.benefits-icon {
    background-color: #E6F1F1;
    width: 60px;
    height: 60px;
    border-radius: 13px;
    padding: 14px;
}

.detail-text h3 {
    font-size: 18px;
    color: black;

    font-weight: 650;

}

.benefit-main-text-container {
    margin-top: 36px;
}

.benefit-main-text-container h3 {
    text-align: center;
    color: #000;
    font-weight: 650;
    font-size: 33px;
}

.benefit-main-text-container p {
    text-align: center;
    color: #000;
    opacity: 0.8;
    font-size: 17px;
}

.faq-section {
    padding: 60px 20px;

    background: #fff;
}

.faq-container {
    max-width: 1030px;
    margin: auto;
    text-align: center;
}

.faq-container h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-container .highlight {
    color: #00796b;
}

.faq-container p {
    font-size: 16px;
    color: #333;
    opacity: 0.85;
    margin-bottom: 40px;
}

.faq details {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 16px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq summary {
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    position: relative;
}

.faq summary::after {
    content: '▼';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq details[open] summary::after {
    transform: rotate(180deg);
}

.faq p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* mission-vision */
#mission-second-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-left: -30px
}

.image-mission-vision img {
    width: 512px;
    height: 334px;
    border-radius: 13px;
    margin-top: 40px;
}

.information-mission-detail {
    width: 630px;
}

.button-mission-vision-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 14px;
    gap: 200px;
    box-shadow: 1px 1px 10px 1px #ccc;
    height: 40px;
    cursor: pointer;
}

.button-mission-vision-container h3 {
    margin-top: 5px;
}

.button-mission-vision-container h3:hover {
    color: #002766;
}

#visionBtn {
    color: #002766;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
}

#visionBtn:hover {
    color: #ff7300;
    transition: 1s all ease-in-out;
    text-decoration: underline;
}

#missionBtn:hover {
    color: #ff7300;
    transition: 1s all ease-in-out;
    text-decoration: underline;
}

#missionBtn {
    cursor: pointer;
    color: #002766;
    font-weight: 600;
    font-size: 17px;
}

.heading-mission-vision h1 {
    margin-top: 50px;
    font-size: 35px;
    color: black;
    font-weight: 600;
    margin-bottom: 13px;
}

.detail-mission p {
    font-size: 16px;
    color: black;
    opacity: 0.8;
    text-align: justify;
    margin: 20px 0px;
}

.button-mission-vision-container h3 {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

.heading-highlight {
    color: #ff7300;
    transition: color 0.5s ease;
}

/* Highlight active button */
.selected-button {
    color: #ff7300 !important;
    text-decoration: underline;
}

/* ABOUT */
.major-aim-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 40px;
}

.left-side {
    flex: 1;
    min-width: 250px;
    margin-top: 57px;
}

.left-side h4 {
    font-size: 2.5em;
    color: #003344;
    margin-bottom: 10px;
}

.left-side .subheading {
    font-weight: bold;
    font-size: 1.2em;
    color: #000;
}

.right-side {
    flex: 2;
    min-width: 300px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-box {
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 0 15px #ccc;
    border-radius: 10px;
    font-weight: bold;
    color: #003344;
    font-size: 1.05em;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid black;
}

.service-box:hover {
    transform: translateY(-5px);
    background-color: #002766;
    color: white;
}

/*Privacy Policy CSS*/
 #terms{
        color: #0A4089;
        font-size: 25px;
        font-weight: 600;
         font-family: 'Poppins', sans-serif;
    }
#disclaimer{
    font-size: 16px;
    color: #000;
    
     font-family: 'Poppins', sans-serif;
     font-weight: 400;
}
.container-wrapper{
   max-width: 1260px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;

  line-height: 1.6;
}
.wrapper{
    margin-top: 130px;
  background-color: #f7f7f7;
}

.breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.breadcrumb-nav a {
color: #0A4089;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* Main Heading */
.main-title {
  color: #000;
  font-weight: 600;
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Section Headings */
.section-title {
  color: #1e88e5;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Paragraphs */
.wrapper p {
  margin-bottom: 15px;
}

/* Unordered Lists */
.rules-list,
.privacy-points {
  margin-left: 20px;
  margin-bottom: 20px;
}

.rules-list li,
.privacy-points li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .wrapper {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 0.85rem;
  }

  .main-title {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1rem;
  }
}