/* ==========================================
   SINEW FEB TECH PVT LTD
   Corporate Elevator Website
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
}


/* ===== Navbar ===== */

.navbar {
    background: #111 !important;
    padding: 15px 0;
    transition: .4s;
}

.navbar-brand img {
    border-radius: 8px;
}

.navbar-brand h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.navbar-brand small {
    color: #0d6efd;
    letter-spacing: 1px;
}

.nav-link {
    color: white !important;
    margin-left: 20px;
    font-weight: 500;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}


/* ===== Hero ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: white;
    padding-top: 180px;
    padding-bottom: 100px;
}

.hero img {
    width: 100%;
    border-radius: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin: 30px 0;
}


/* ===== Buttons ===== */

.btn-primary {
    background: #0066cc;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 14px 30px;
}


/* ===== Sections ===== */

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    color: #0066cc;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}


/* ===== About ===== */

#about img {
    border-radius: 20px;
}

#about p {
    line-height: 1.8;
    font-size: 17px;
}

#about ul {
    margin-top: 20px;
}

#about li {
    margin-bottom: 10px;
}


/* ==========================================
   SERVICES
========================================== */

.services {
    background: #f5f7fa;
}

.service-card {
    border: none;
    border-radius: 18px;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 55px;
    color: #0066cc;
}

.service-card h4 {
    margin-top: 20px;
    font-weight: 700;
}


/* ==========================================
   WHY CHOOSE US
========================================== */

.feature-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.feature-box:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #0066cc;
}

.feature-box:hover i {
    color: white;
}


/* ==========================================
   COUNTER
========================================== */

.counter-section {
    background: #0066cc;
    color: white;
    padding: 80px 0;
}

.counter-section h1 {
    font-size: 55px;
    font-weight: 700;
}

.counter-section p {
    font-size: 18px;
}


/* ==========================================
   PRODUCTS
========================================== */

.product-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    height: 240px;
    object-fit: cover;
}

.product-card h5 {
    color: #0066cc;
    font-weight: 700;
}


/* ==========================================
   GALLERY
========================================== */

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* ==========================================
   TESTIMONIALS
========================================== */

.card {
    border-radius: 18px;
}

.card-body {
    padding: 30px;
}


/* ==========================================
   CONTACT
========================================== */

form input,
form textarea {
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 15px;
}

form button {
    border-radius: 30px;
    padding: 14px;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    background: #111;
}

footer h4,
footer h5 {
    color: #ffffff;
}

footer p,
footer a {
    color: #cccccc;
}

footer a:hover {
    color: #0d6efd;
}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    z-index: 999;
    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
    color: white;
}


/* ==========================================
   SCROLL BUTTON
========================================== */

#topBtn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    font-size: 24px;
    display: none;
    cursor: pointer;
    transition: .3s;
    z-index: 999;
}

#topBtn:hover {
    background: #004f9f;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero img {
        margin-top: 40px;
    }
    .section-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .counter-section h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 28px;
    }
    .whatsapp {
        width: 55px;
        height: 55px;
    }
}


/* ==========================================
   SERVICES
========================================== */

.services {
    background: #f5f7fa;
}

.service-card {
    border: none;
    border-radius: 18px;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 55px;
    color: #0066cc;
}

.service-card h4 {
    margin-top: 20px;
    font-weight: 700;
}


/* ==========================================
   WHY CHOOSE US
========================================== */

.feature-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.feature-box:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #0066cc;
}

.feature-box:hover i {
    color: white;
}


/* ==========================================
   COUNTER
========================================== */

.counter-section {
    background: #0066cc;
    color: white;
    padding: 80px 0;
}

.counter-section h1 {
    font-size: 55px;
    font-weight: 700;
}

.counter-section p {
    font-size: 18px;
}


/* ==========================================
   PRODUCTS
========================================== */

.product-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    height: 240px;
    object-fit: cover;
}

.product-card h5 {
    color: #0066cc;
    font-weight: 700;
}


/* ==========================================
   GALLERY
========================================== */

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* ==========================================
   TESTIMONIALS
========================================== */

.card {
    border-radius: 18px;
}

.card-body {
    padding: 30px;
}


/* ==========================================
   CONTACT
========================================== */

form input,
form textarea {
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 15px;
}

form button {
    border-radius: 30px;
    padding: 14px;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    background: #111;
}

footer h4,
footer h5 {
    color: #ffffff;
}

footer p,
footer a {
    color: #cccccc;
}

footer a:hover {
    color: #0d6efd;
}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    z-index: 999;
    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
    color: white;
}


/* ==========================================
   SCROLL BUTTON
========================================== */

#topBtn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    font-size: 24px;
    display: none;
    cursor: pointer;
    transition: .3s;
    z-index: 999;
}

#topBtn:hover {
    background: #004f9f;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px) {
    .hero {
        text-align: center;
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero img {
        margin-top: 40px;
    }
    .section-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .counter-section h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 28px;
    }
    .whatsapp {
        width: 55px;
        height: 55px;
    }
}


/* ================= PRODUCTS ================= */

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h4 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card p {
    color: #555;
    line-height: 1.7;
}

.product-card .btn {
    border-radius: 30px;
    padding: 10px 25px;
}


/* ================= GALLERY ================= */

.gallery {
    background: #f8f9fa;
}

.gallery-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
    cursor: pointer;
}

.gallery-card:hover img {
    transform: scale(1.08);
}


/* ================= CONTACT ================= */

.contact {
    background: #f8f9fa;
}

.contact-info {
    background: #111;
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 28px;
    color: #0d6efd;
    margin-right: 20px;
}

.contact-item h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 14px;
}

.contact-form .btn {
    border-radius: 30px;
    padding: 12px 35px;
}