/* ====== Reset & Base ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1250px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Outfit', sans-serif;
}

.btn {
    font-family: 'Raleway', sans-serif;
}

/* ====== Navbar ====== */

.navbar {
    background-color: #67C4DB;
    padding: 10px 0;
}

.navbar .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #fff !important;
    transition: color 0.3s;
    margin-right: 6px;
}

.navbar .nav-link:hover {
    color: #2D2D2D !important;
}

/* Add left padding to nav-items on mobile/tab so they don’t sit under logo */
@media (max-width: 991px) { /* Bootstrap lg breakpoint */
    .navbar-collapse {
        padding-left: 10px; /* adjust as needed */
    }
}

/* ====== Section General ====== */
section {
    padding: 100px 0;
}

section h2, h1 {
    font-size: 30px;
    font-weight: 600;
    color: #2D2D2D;
    margin: 0 !important;
}

section hr {
    color: #67C4DB;
}

section .text-muted {
    font-size: 20px;
    margin: 0 0 25px 0;
}

section p {
    font-size: 17px;
    color: #2D2D2D;
    line-height: 30px;
}

section h5 {
    font-size: 21px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    color: #67C4DB;
    font-weight: 600;
}

/* ====== attendance ====== */

#attendance {
    margin-top: 80px;
}

#attendance img {
    height: 370px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#attendance .points p {
    margin-bottom: 5px;
}

/* ====== stock ====== */

#stock {
    padding: 100px 0;
}

#stock img {
    height: 395px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#stock .points p {
    margin-bottom: 5px;
}

/* ====== chatbot ====== */

#chatbot img {
    height: 380px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#chatbot .points p {
    margin-bottom: 5px;
}

/* ====== telecall ====== */

#telecall {
    padding: 100px 0;
}

#telecall img {
    height: 370px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#telecall .points p {
    margin-bottom: 5px;
}

/* ====== expressions ====== */

#expressions img {
    height: 520px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#expressions .points p {
    margin-bottom: 5px;
}

/* ====== food ====== */

#food {
    padding: 100px 0;
}

#food img {
    height: 370px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#food .points p {
    margin-bottom: 5px;
}

/* ====== tryon ====== */

#tryon img {
    height: 350px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

#tryon .points p {
    margin-bottom: 5px;
}

/* ====== Responsive image heights (mobile) ====== */
@media (max-width: 768px) {
  #attendance img, #stock img, #chatbot img, #telecall img,
  #expressions img, #food img, #tryon img {
    height: auto;
    max-height: 300px;
  }
}

/* ====== QUICK CONNECT ====== */

#connect .contact-info i {
    color: #67C4DB;
}

#connect .contact-info p {
    font-size: 18px;
}

#connect .form-control,
#connect .form-select {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

#connect .form-control:focus,
#connect .form-select:focus {
    border-color: #67C4DB;
    box-shadow: 0 0 4px rgba(0, 183, 255, 0.4);
}

#connect .btn {
    background-color: #67C4DB;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s;
    border-radius: 3px;
}

#connect button:hover {
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
    transform: scale(1.05);
}

/* ====== FOOTER ====== */
footer {
    background-color: #2D2D2D;
}

footer .footer-bottom {
    font-size: 16px;
}

footer .footer-bottom .text-info {
    color: #fff !important;
}

footer .footer-bottom .text-info:hover {
    color: #67C4DB !important;
}


/* WhatsApp + ScrollTop styles moved to css/common.css */
