body {
    font-family: sans-serif;
}

/* hero */

.hero {
    padding: 100px 0;
    background: linear-gradient(to right, #1f7a35, #4caf50);
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-img {
    width: 100%;
    height: auto;
}

/* products */

.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* features */

.features {
    padding: 80px 0;
}

h2 {
    font-weight: 700;
}

.icon {
    font-size: 40px;
    /* color: #198754; */
    color: #ffffff;
    margin-bottom: 10px;
}

/* about */

.about {
    padding: 80px 0;
    background: #f8f9fa;
}

/* contact */

.contact {
    padding: 80px 0;
}

/* footer */

.footer {
    background: #1b1b1b;
    color: white;
    padding: 20px;
}

.hero {
    position: relative;
    padding: 100px 0 0 0;
    /* background: linear-gradient(to right, #1f7a35, #4caf50); */
    background-image: url('assets/banner/banner-1.png');
    color: white;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.products {
    padding: 80px 0 0 0;
    background: #f8f9fa;
    position: relative;
}

.products-wave svg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -1%;
}

.features {
    padding: 80px 0 0 0;
    position: relative;
    background: linear-gradient(to left, #0f9b0f, #a8e063);
}

.features-wave svg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -1%;
}


.about {
    padding: 80px 0 0 0;
    background: #f8f9fa;
    position: relative;
}

.about-wave svg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -1%;
}

.contact {
    padding: 80px 0 0 0;
    position: relative;
    background-color: #168116;
}

.contact-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer {
    background: #1b1b1b;
    color: white;
    padding: 60px 0;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-glass .nav-link {
    font-weight: 500;
}

.navbar-glass .nav-link:hover {
    color: #198754;
}


.wave-bg {
    width: 100%;
    overflow: hidden;
}

.wave-bg svg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -1%;
}

/* CONTACT BG */
.contact {
    background: linear-gradient(135deg, #0f2027, #2c5364);
}

/* GLASS FORM */
.glass-form {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* HEADING */
.glass-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

/* INPUT BOX */
.input-box {
    position: relative;
    margin-bottom: 25px;
}

/* INPUT & TEXTAREA */
.input-box input,
.input-box textarea {
    width: 100%;
    padding: 10px 5px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    outline: none;
    color: #fff;
    font-size: 14px;
    resize: none;
}

/* LABEL */
.input-box label {
    position: absolute;
    top: 10px;
    left: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

/* FLOAT EFFECT */
.input-box input:focus~label,
.input-box input:valid~label,
.input-box textarea:focus~label,
.input-box textarea:valid~label {
    top: -12px;
    font-size: 12px;
    color: #00e676;
}

/* LINE HOVER */
.input-box input:focus,
.input-box textarea:focus {
    border-bottom: 2px solid #00e676;
}

/* BUTTON */
.glass-form button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #00c853, #64dd17);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

/* BUTTON HOVER */
.glass-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #1b1b1b;
    color: #fff;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #4caf50;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    color: #ccc;
}

/* HEADINGS */
.footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4caf50;
    padding-left: 5px;
}

/* CONTACT TEXT */
.footer p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 6px;
}

/* HR */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.product-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* CARD */
.product-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

/* BUTTON */
.product-card button {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: #198754;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-8px);
}

.product-card button:hover {
    background: #145c32;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* TEXT */
.about-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    font-size: 15px;
}

/* IMAGE */
.about-section img {
    width: 100%;
    border-radius: 15px;
    transition: 0.3s;
}

.about-section img:hover {
    transform: scale(1.05);
}

/* BOXES */
.about-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-8px);
}

.about-box h4 {
    color: #198754;
    margin-bottom: 10px;
}

.contact-pro {
    padding: 80px 0;
    background: #f8f9fa;
}

/* LEFT SIDE */
.contact-info {
    background: #198754;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* INFO BOX */
.info-box {
    margin-bottom: 15px;
}

.info-box h5 {
    margin-bottom: 5px;
}

/* SOCIAL */
.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

/* RIGHT SIDE FORM */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    margin-bottom: 20px;
}

/* INPUT */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

/* BUTTON */
.contact-form-box button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #198754;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

/* MAP */
.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 15px;
}

.about {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 99;
}

.hero-banner {
    background: url('./assets/banner/ChatGPT\ Image\ Mar\ 17\,\ 2026\,\ 03_05_53\ PM.png') no-repeat center center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #1a1a1a;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin: 15px 0;
}

.btn-success {
    padding: 10px 25px;
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}