        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #ffffff;
        }

        /* HERO SECTION */
      .hero {
    min-height: 100vh;
    background: url(images/hero.png);
    display: flex;
    flex-direction: column;
}

        /* NAVBAR */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 60px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #f5c26b;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #f5c26b;
        }

        .nav-btn {
            background: #f5c26b;
            color: #000;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .nav-btn:hover {
            background: #e0ae55;
        }

        /* HERO CONTENT */
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            font-weight: 500;
        }

        .hero-content h2 {
            font-size: 22px;
            font-weight: 500;
            color: #f5c26b;
            margin-bottom: 20px;
        }

        .hero-content p {
            max-width: 800px;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 35px;
            color: #dddddd;
        }

        .hero-btn {
            background: #f5c26b;
            color: #000;
            padding: 15px 35px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: 0.3s;
        }

        .hero-btn:hover {
            background: #e0ae55;
        }
		
		
		  @media (max-width: 992px) {
			  
			  	.section {
    padding: 25px 15px !important ;
}
.benefits-section {
      padding: 25px 15px !important ;
        }
		
		.case-section {
   padding: 25px 15px !important ;
    }
	
	.case-content {
    margin: 20px 0 !important;
}
.about-section {
   padding: 25px 15px !important ;
}

footer.footer {
   padding: 25px 15px !important ;
}
.footer-contact {
    gap: 14px !important;
    font-size: 10px !important;

}
		  }
		
		
		

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .navbar {
                padding: 20px;
            }

            .nav-links {
                display: none;
            }

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

            .hero-content h2 {
                font-size: 18px;
            }
			.section {
    padding: 25px 15px !important ;
}
.benefits-section {
      padding: 25px 15px !important ;
        }
		
		.case-section {
   padding: 25px 15px !important ;
    }
	
	.case-content {
    margin: 20px 0 !important;
}
.about-section {
   padding: 25px 15px !important ;
}

footer.footer {
   padding: 25px 15px !important ;
}
.footer-contact div {
    display: unset !important ;
 
}
.footer-top {
        text-align: left !important;
    }
.footer-top {
    display: block !important;
  }
		}
		
		
		
		
		
		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #000;
            color: #fff;
        }

        .section {
            padding: 80px 70px;
        }

        .top-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 50px;
        }

        .text-area {
            max-width: 700px;
        }

        .welcome-outline {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 4px;
            color: transparent;
            -webkit-text-stroke: 1px #333;
            margin-bottom: 10px;
        }

        .title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .description {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: #cccccc;
        }

        .btn-area {
            margin-top: 15px;
        }

        .btn {
            background: #f5c26b;
            color: #000;
            padding: 12px 24px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: 0.3s;
        }

        .btn:hover {
            background: #e0ae55;
        }

        /* IMAGE GRID */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .image-card {
            overflow: hidden;
            border-radius: 14px;
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .image-card:hover img {
            transform: scale(1.05);
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .top-row {
                flex-direction: column;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .welcome-outline {
                font-size: 40px;
            }

            .title {
                font-size: 20px;
            }
        }
		
		
		
		
		
		
		
		* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.benefits-section {
    padding: 90px 70px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-outline {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: -10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.benefit {
    padding: 0 25px;
    position: relative;
}

.benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #333;
}

.badge {
    width: 36px;
    height: 28px;
    background: #f5c26b;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #cccccc;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .benefit:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-outline {
        font-size: 36px;
    }

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








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.case-section {
    padding: 90px 70px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.case-header-left {
    max-width: 600px;
}

.case-outline {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
}

.case-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: -8px;
}

.case-subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-top: 15px;
    color: #cccccc;
}

.case-header-right .btn {
    background: #f5c26b;
    color: #000;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.case-header-right .btn:hover {
    background: #e0ae55;
}

/* MAIN CONTENT */
.case-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.case-text small {
    font-size: 12px;
    font-weight: 500;
    color: #bbbbbb;
    text-transform: uppercase;
}

.case-text h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
}

.case-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.case-metric {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.case-year {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 25px;
}

.case-btn {
    display: inline-block;
    background: #f5c26b;
    color: #000;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.case-btn:hover {
    background: #e0ae55;
}

/* IMAGE */
.case-image {
    border-radius: 18px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .case-content {
        grid-template-columns: 1fr;
    }

    .case-header {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .case-outline {
        font-size: 36px;
    }

    .case-title {
        font-size: 20px;
    }

    .case-text h3 {
        font-size: 20px;
    }
}




body {
    background: #000;
}

/* CTA SECTION */
.cta-section {
    min-height: 70vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
    ),
    url('images/back.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.cta-content {
    text-align: center;
    max-width: 900px;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #f5c26b;
    color: #000;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.cta-primary:hover {
    background: #e0ae55;
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #f5c26b;
    border-radius: 4px;
    transition: 0.3s;
}

.cta-secondary:hover {
    background: #f5c26b;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 20px;
    }
}
	


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.about-section {
    padding: 90px 70px;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */
.about-outline {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: #cccccc;
    margin-bottom: 14px;
}

.about-btn {
    display: inline-block;
    margin-top: 25px;
    background: #f5c26b;
    color: #000;
    padding: 12px 26px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e0ae55;
}

/* IMAGE */
.about-image {
    border-radius: 22px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-outline {
        font-size: 36px;
    }

    .about-title {
        font-size: 20px;
    }
}


/* FOOTER */
.footer {
    position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/footer.png) center / cover no-repeat;
    padding: 70px 60px 30px;
}

/* TOP ROW */
.footer-top {
    display: flex;
    /* grid-template-columns: 1fr 2fr 1fr; */
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    width: 15%;
}

.footer-logo img {
    width: 100px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #f5c26b;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    color: #dddddd;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact span {
    color: #f5c26b;
}

.footer-cta {
    text-align: right;
}

.footer-btn {
    background: #f5c26b;
    color: #000;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #e0ae55;
}

/* CENTER ICONS */
.footer-center {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.center-box {
    background: #2a2a2a;
    border-radius: 6px;
    padding: 10px 14px;
    display: flex;
    gap: 15px;
}

.center-box span {
    font-size: 16px;
    cursor: pointer;
    color: #ffffff;
}

/* BOTTOM ROW */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #cccccc;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-bottom a {
    color: #cccccc;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 20px;
    }

    .footer-cta {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
	.benefit {
    padding: 0 0;

}
}