* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

body {
    color: #333;
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    color: #1A2A44;
}

.logo span {
    color: #FFC107;
}

.logo p{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #1A2A44;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    position: relative;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.active {
    text-decoration: underline 2px #FFC107;
    text-underline-offset: 2.5px;
}

.cta-btn, .sign-up-btn, .login-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.cta-btn, .login-btn {
    background-color: #FFC107;
    color: #fff;
}

.cta-btn:hover{
    background-color: #1A2A44;
    border: 2px solid #1A2A44;
    color: white;
}


.sign-up-btn {
    background-color: transparent;
    color: #333;
}

/* Close Button */
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #1A2A44;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 500px;
    background: url('/imgs/job-moses-x-yy3_fAavM-unsplash.jpg') ;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: #FFC107;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-btn {
    background-color: #fff;
    color: #1A2A44;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.hero-btn:hover{
    background-color: #FFC107;
    border: 2px solid #FFC107;
    color: white;
}

/* About Us Section */
.about {
    display: flex;
    padding: 100px;
    background-color: #fff;
    gap: 260px;
}

.about-content {
    flex: 1.6;
}

.about-content h1, .about-content h2 {
    font-size: 36px;
    position: relative;
}

.about-content h1 span, .about-content h2 span {
    color: #FFC107;
}

.about-content img{
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.about-logo {
    flex: 1;
    position: relative;
    margin: auto;
}

.cutoff-text{
    --max-lines: 10;
    --line-height: 1.4;

    max-height: calc(var(--max-lines) * 1em * var(--line-height));
    line-height: var(--line-height);
    overflow: hidden;
    position: relative;
    text-align: justify;
}

.cutoff-text::before{
    content: "";
    position: absolute;
    height: calc(1em * var(--line-height));
    width: 100%;
    bottom: 0;
    pointer-events: none;
}

.cutoff-text:has(+ .about-btn:checked){
    max-height: none;
}

.about-btn{
	appearance: none;
	background-color: transparent;
	border: 1px solid #1A2A44;
	color: #1A2A44;
	border-radius: .25em;
	max-width: 50%;
	text-align: center;
	cursor: pointer;
	margin-top: 1rem;
    padding: 10px 20px;
}

.about-btn:hover{
    background-color: #FFC107;
    border: 2px solid #FFC107;
    color: white;
}

.about-btn::before{
	content: "Read-More";
}

.about-btn:checked::before{
	content: "Close";
}


/* Services Section */
.services {
    position: relative;
    padding: 50px ;
    background-color: #f5f5f5; 
    text-align: center;
    margin-bottom: 50px;
}

.services h2 {
color: #1A2A44; 
}

.service-cards-container {
display: flex;
justify-content: center;
gap: 30px;
padding-top: 40px; 
}

.service-card-one {
display: flex;
justify-content: space-between; 
align-items: center; 
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 30%; 
position: relative; 
z-index: 5; 
overflow: hidden;
}

.service-card-two {
display: flex; 
justify-content: space-between; 
align-items: center; 
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 50%; 
position: relative; 
z-index: 1;
} 

.text-content {
text-align: left; 
/* flex: 1;  */
}

.service-card-one h3,
.service-card-two h3 {
font-size: 20px;
margin-bottom: 10px;
}

.service-card-one p,
.service-card-two p {
font-size: 14px;
line-height: 1.5;
}

.service-card-one img.corner-image {
position: absolute;
bottom: -32px;
right: -8px;
width: 100px; 
height: 100px;
object-fit: contain;
z-index: 1; 
}

.service-card-two img {
width: 100px; 
height: 100px;
object-fit: contain; 
}

/* Responsive Design */
@media (max-width: 970px),(min-width:770) {
    .text-content p{
        word-wrap: break-word;
        overflow-wrap:break-word ;
        word-break: break-word;
    }
}    

@media (max-width: 768px) {
.service-cards-container {
    flex-direction: column;
    align-items: center;
    padding-top: 60px; 
}

.service-card-one,
.service-card-two {
    flex-direction: column; 
    align-items: center; 
    width: 90%;
}

.text-content {
    text-align: center; 
    margin-bottom: 15px; 
}

.service-card-one img.corner-image {
    position: static; 
    width: 80px; 
    height: 80px;
    margin-top: 15px; 
}

.service-card-two img {
    width: 80px;
    height: 80px;
    margin-top: 15px; 
}

.services h2 {
    font-size: 24px;
    padding: 8px 15px;
}
}

@media (max-width: 480px) {
.service-card-one,
.service-card-two {
    width: 100%;
}

.service-card-one img.corner-image {
    width: 70px;
    height: 70px;
}

.service-card-two img {
    width: 70px;
    height: 70px;
}

.services h2 {
    font-size: 20px;
    padding: 6px 10px;
}
}

/* Join Section */
.arrow{
    position: relative;
    left: 140px;
    bottom: 30px;
    margin-bottom: -70px;
}

/* Responsive Design */
@media (max-width: 768px) {
.arrow {
    position: relative;
    left: 120px;
    bottom: 30px;
}}


@media (max-width: 480px) {
.arrow {
    position: relative;
    left: 100px;
    bottom: 30px;
}}

/* JOIN PAGE  */
/* Who We Are Section */
.join-hero {
    height: 500px;
    background: url('/imgs/demidov-armor-444M6ruAFhM-unsplash.jpg') ;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.who-we-are {
    background-color: #1A2A44;
    color: #fff;
    width: 80%;
    padding: 50px ;
    margin: auto;
    text-align: center;
    display: flex;
}

.who-we-are h2 {
    font-size: 48px;
    width: 130px;
    line-height: 2;
    margin-bottom: 20px;
}

.who-we-are h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.objectives {
    max-width: 800px;
    margin: 0 auto;
}

.objective {
    margin-bottom: 30px;
}

.objective hr {
    border: 0;
    border-top: 1px solid #B0BEC5;
    margin: 10px 0;
}

.objective p {
    font-size: 16px;
    color: #B0BEC5;
}

/* Our Benefits Section */
.benefits {
    padding: 50px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.benefit-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.benefit-card {
    background-color: #FFC107;
    padding: 30px;
    width: 200px;
    text-align: center;
}

.benefit-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefit-card h3 {
    font-size: 18px;
}

/* Service Page  */
/* How We Work Section */
.how-we-work {
    margin: 50px;
    text-align: center;
    padding: 50px 20px;
}

.how-we-work h1 {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
}

.how-we-work .design {
    width: 100px;
    position: relative;
    left: 80px;
    bottom: 30px;
}

.work-image {
    position: relative;
}

.work-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.work-btn {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #1A2A44;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.work-btn:hover {
    background-color: #FFC107;
    border: 2px solid #FFC107;
    color: white;
}

.book-services {
    text-align: center;
}

.book-services h2 {
    color: #1A2A44; 
    margin-bottom: 30px;
}

.service-ds {
    display: flex;
    justify-content: space- space-between; 
    align-items: center; 
    background-color: #1A2A44;
    color: #fff;
    width: 100%; 
    margin-bottom: 50px;
    z-index: 5; 
}

.service-ts {
    background-color: #FFC107;
    padding: 20px;
    width: 100%; 
    margin-bottom: 50px;
    z-index: 1;
} 

.text-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ds-text {
    text-align: left; 
    padding: 50px;
    width: 40%;
}

.ds-p {
    width: 60%;
    text-align:left;
}

.ts-text {
    text-align: left; 
    padding: 50px;
    width: 40%;
}

.ts-img {
margin: auto;}

.service-ds h3 {
    padding: 20px;
    font-size: 30px;
    margin: auto;
    line-height: 1.5;
}

.service-ts h3 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: center;
}

.service-ds p,
.service-ts p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-ds img {
    width: 200px; 
    height: 200px;
    object-fit: contain;
}

.service-ts img {
    width: 200px; 
    height: 200px;
    object-fit: contain; 
}



/* Our History Section */
.vision-mission {
    text-align: center;
    width: 100%;
    display: flex;
    margin-bottom: 50px;
}

.vision-mission h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.vision {
    width: 40%;
    margin: auto;
    background-color: #1A2A44;
    color: #fff;
    padding: 20px;
}

.mission {
    width: 40%;
    margin: auto;
    background-color: #FFC107;
    padding: 10px;
}



/* Join Security Staff Section */
.join {
    background-color: #1A2A44;
    color: #fff;
    text-align: center;
    width: 50%;
    padding: 50px;
    margin: auto;
}

.join h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.join-btn {
    background-color: #fff;
    color: #1A2A44;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.join-btn:hover {
    background-color: #FFC107;
    border: 2px solid #FFC107;
    color: white;   
}

/* Testimonials Section */
.testimonials {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #FFC107;
    margin-top: 50px;
}

.testimonial-content {
    flex: 1;
}

.stars {
    color: #1A2A44;
    font-size: 24px;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-content .title {
    color: #666;
}

.testimonial-image img {
    width: 200px;
    border-radius: 50%;
}

.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #1A2A44;
}

/* Certification Section */
.certification {
    background-color: #1A2A44;
    color: #fff;
    text-align: center;
    padding: 50px;
    margin-top: 50px;
}

.certification h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.certification img {
    width: 100px;
    margin-bottom: 20px;
}

.certification p {
    color: #B0BEC5;
}

/* Partners Section */
.partners {
    background-color: #FFC107;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.partners h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.partner-logos img {
    width: 100px;
    margin: 0 20px;
}

/* CONTACT PAGE  */
/* Contact Us Section */
.contact-us, .join-staff, .book-service {
    display: flex;
    background-color: #fff;
    padding: 50px;
}


.contact-form, .join-form, .book-form {
    flex: 1;
    background-color: #1A2A44;
    padding: 50px;
    color: #fff;
}

.contact-form h2, .join-form h2, .book-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form p {
    color: #B0BEC5;
    margin-bottom: 20px;
}

.contact-form form, .join-form form, .book-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea,
.join-form input, .join-form textarea,
.book-form input, .book-form textarea {
    margin-bottom: 5px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form textarea, .book-form textarea {
    height: 100px;
    resize: none;
}

.contact-form .note, .join-form .note, .book-form .note {
    font-size: 12px;
    color: #B0BEC5;
    margin-bottom: 20px;
}

.contact-form button, .join-form button, .book-form button {
    background-color: #fff;
    color: #1A2A44;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

.contact-image, .join-image, .book-image {
    flex: 1;
}

.contact-image img, .join-image img, .book-image img {
    width: 80%;
    height: 80vh;
    object-fit: contain;
    margin: auto;
}

.note-section {
    display: flex;
    gap: 1px;
}

.note-section .note {
    margin-top: 20px ;
}

.map {
    margin-top: 70px ;
}

/* Get in Touch Section */
.get-in-touch {
    background-color: #FFC107;
    padding: 50px 20px;
    text-align: center;
}

.get-in-touch h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail img {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.detail p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    color: #1A2A44;
    padding: 20px 50px;
    position: relative;
    margin-top: 50px;
}

.newsletter {
    text-align: center;
    padding: 20px 0;
}

.newsletter h4 {
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    justify-content: center;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #1A2A44;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.social-icons img {
    width: 20px;
    margin: 0 5px;
}

.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #1A2A44;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
} 

footer .logo img {
    width: 20px;
    height: 20px;
} 

footer h6 {
    margin: 2px;
}

footer p{
    display: flex;
    align-items: center;
    justify-content: center;
}

footer hr{
    border: 1px solid #1A2A44;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {

}
/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 20px 0;
    }

    .nav-menu ul li a {
        font-size: 18px;
    }

    .cta-btn, .sign-up-btn, .login-btn {
        margin-top: 20px;
    }

    /* Close Button */
    .close-btn {
        display: block;
    }

    /* Hero Section */
    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-btn {
        padding: 10px 20px;
    }

    /* About Us Section */
    .about {
        flex-direction: column;
        padding: 30px;
    }

    .about-logo {
        display: none;
    }

    .about-content h1, .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-content img{
        width: 130px;
    }

    /* Services Section */
    .services {
        flex-direction: column;
        padding: 30px;
    }

    .service-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    /* Who We Are Section */
    .who-we-are {
        /* width: 50%; */
        padding: 30px 15px;
    }

    .who-we-are h2 {
        font-size: 36px;
    }

    .who-we-are h3 {
        font-size: 20px;
    }

    .objective p {
        font-size: 14px;
    }

    /* Our Benefits Section */
    .benefits {
        padding: 30px 15px;
    }

    .benefits h2 {
        font-size: 24px;
    }

    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    /* How We Work Section */
    .how-we-work {
        padding: 30px 15px;
    }

    .how-we-work h1 {
        font-size: 28px;
    }

    .work-btn {
        padding: 10px 20px;
    }

    .how-we-work .design {
        width: 70px;
        position: relative;
        left: 60px;
    }

    /* Book a Service Section */
    .book-service {
        padding: 30px 15px;
    }

    .book-service h2 {
        font-size: 24px;
    }

    .service {
        padding: 20px;
    }

    .door-security h3,
    .training-services h3 {
        font-size: 20px;
    }

    .door-security p,
    .training-services p {
        font-size: 14px;
    }

    .training-services ul li {
        font-size: 14px;
    }

    /* Our History Section */
    .history {
        padding: 30px 15px;
    }

    .history h2 {
        font-size: 24px;
    }

    /* Join Security Staff Section */
    .join {
        padding: 30px 15px;
    }

    .join h2 {
        font-size: 24px;
    }

    .join-btn {
        padding: 10px 20px;
    }

    .join-btn::after {
        right: -20px;
    }

    .hero-content {
        overflow: hidden;
    }

    /* Testimonials Section */
    .testimonials {
        flex-direction: column;
        padding: 30px;
    }

    .testimonial-image img {
        width: 150px;
        margin-top: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    /* Certification Section */
    .certification {
        padding: 30px;
    }

    .certification h2 {
        font-size: 28px;
    }

    .certification p {
        font-size: 14px;
    }

    /* Partners Section */
    .partners {
        padding: 30px;
    }

    .partner-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-logos img {
        width: 80px;
        margin: 10px;
    }

    /* Contact Us Section */
    .contact-us, .join-staff, .book-service {
        flex-direction: column;
    }

    .contact-form, .join-form, .book-form {
        padding: 30px;
    }

    .contact-form h2, .join-form h2, .book-form h2 {
        font-size: 24px;
    }

    .contact-image, .join-image, .book-image {
        display: none;
    }

    /* Get in Touch Section */
    .get-in-touch {
        padding: 30px 15px;
    }

    .get-in-touch h2 {
        font-size: 24px;
    }

    .contact-details {
        flex-direction: row;
        gap: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .detail p {
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 20px;
    }

    footer .logo {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin: 10px 0;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    /* Header */
    header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-menu ul li a {
        font-size: 16px;
    }

    .cta-btn, .sign-up-btn, .login-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .close-btn {
        font-size: 24px;
        top: 15px;
        right: 15px;
    }

    /* Hero Section */
    .hero {
        height: 300px;
    }

    .hero-content {
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* About Us Section */
    .about {
        margin-top: 50px;
        padding: 20px;
    }

    .about-content h1, .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 12px;
    }

    .about-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .about-content img{
        width: 100px;
    }

    /* Services Section */
    .services {
        padding: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card img {
        width: 40px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 12px;
    }

    /* Who We Are Section */
    .who-we-are {
        background-color: #1A2A44;
        color: #fff;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .who-we-are h2 {
        font-size: 48px;
        width: 100%;
        line-height: 2;
        margin-bottom: 20px;
    }
    
    .who-we-are h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .objectives {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .objective {
        margin-bottom: 30px;
    }
    

    .who-we-are {
        padding: 20px 10px;
    }

    .who-we-are h2 {
        font-size: 28px;
    }

    .who-we-are h3 {
        font-size: 18px;
    }

    .objective p {
        font-size: 12px;
    }

    /* Our Benefits Section */
    .benefits {
        padding: 20px 10px;
    }

    .benefits h2 {
        font-size: 20px;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    /* How We Work Section */
    .how-we-work {
        padding: 20px 10px;
    }

    .how-we-work h1 {
        font-size: 24px;
    }

    .work-btn {
        padding: 10px 20px;
        background-color: #1A2A44;
        color: white;    
        font-size: 14px;
    }

    .how-we-work .design {
        width: 70px;
        position: relative;
        left: 50px;
    }

    /* Book a Service Section */
    .book-service {
        padding: 20px 10px;
    }

    .book-service h2 {
        font-size: 20px;
    }

    .service {
        padding: 15px;
    }

    .service-ds {
        display: block;
        padding-bottom: 50px;
        z-index: 5; 
    }

    .service-ds br {
        display: none;
    } 
    
    .ds-text {
        display: flex;
        margin: auto;
        width: 100%;
    }

    .ds-text h3{
        font-style: 20px;
    }

    .ds-p {
        margin: auto;
    }

    .service-ds img {
        width: 90px; 
        height: 90px;
        object-fit: contain;
    }

    .service-ds ul,
    .service-ts ul  {
        text-align: center;
        font-size: 15px;
        margin: auto;
        line-height: 1.5;
    }

    .service-ts h3 {
        font-size: 20px;
    } 

    .service-ds p,
    .service-ts p {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-ts {
        background-color: #FFC107;
        /* padding: 20px; */
        margin-bottom: 50px;
        z-index: 1;
    } 
    
    .text-section {
        display: block;
    }
    
    .ts-text {
        margin: auto;
        width: 100%;
    }
    
    .ts-img {
    margin: auto;
}

    .service-ts img {
        width: 100px; 
        height: 100px;
        object-fit: contain; 
    }
    

    /* Our Vision-Mission Section */
    .vision-mission {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .vision-mission h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .vision {
        width: 100%;
        margin: auto;
        background-color: #1A2A44;
        color: #fff;
        padding: 20px;
    }
    
    .mission {
        width: 100%;
        margin: auto;
        background-color: #FFC107;
        padding: 10px;
    }

    /* Join Security Staff Section */
    .join {
        width: 100%;
        padding: 20px 10px;
    }

    .join h2 {
        font-size: 20px;
    }

    .join-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .join-btn::after {
        right: -15px;
        font-size: 12px;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 20px;
    }

    .testimonial-image img {
        width: 120px;
    }

    .testimonial-content p {
        font-size: 12px;
    }

    .testimonial-content h4 {
        font-size: 16px;
    }

    .stars {
        font-size: 20px;
    }

    /* Certification Section */
    .certification {
        padding: 20px;
    }

    .certification h2 {
        font-size: 24px;
    }

    .certification img {
        width: 80px;
    }

    .certification p {
        font-size: 12px;
    }

    /* Partners Section */
    .partners {
        padding: 20px;
    }

    .partners h3 {
        font-size: 20px;
    }

    .partner-logos img {
        width: 60px;
        margin: 5px;
    }

    /* Contact Us Section */
    .contact-form, .join-form, .book-form {
        padding: 20px;
    }

    .contact-form h2, .join-form h2, .book-form h2 {
        font-size: 20px;
    }

    .contact-form input, .contact-form textarea,
    .join-form input, .join-form textarea,
    .book-form input, .book-form textarea {
        padding: 8px;
    }

    .contact-form button, .join-form button, .book-form button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .contact-form .drop-line, .join-form .drop-line, .book-form .drop-line {
        font-size: 14px;
    }

    .contact-form .drop-line::after,
    .join-form .drop-line::after,
    .book-form .drop-line::after {
        right: -15px;
    }

    /* Get in Touch Section */
    .get-in-touch {
        padding: 20px 10px;
    }

    .get-in-touch h2 {
        font-size: 20px;
    }

    .detail p {
        font-size: 12px;
    }

    /* Footer */
    footer {
        padding: 15px;
    }

    .newsletter h4 {
        font-size: 16px;
    }

    .newsletter input {
        padding: 8px;
        font-size: 12px;
    }

    .newsletter button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .social-icons img {
        width: 16px;
    }

    .back-to-top {
        padding: 8px 12px;
        font-size: 14px;
    }
}