
:root {
    --primary: #1f2937;
    --accent: #ffab00;
    --light: #f8f9fa;
    --dark: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

/* =======================
   Typography & Titles
======================= */
.section-title {
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.2rem;
    text-align: center;
}

.section-title::after {
    content: '';
    width: 90px;
    height: 5px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.about-hero {
            background: linear-gradient(135deg, rgba(31,41,55,0.85), rgba(0,43,56,0.85)), url('hero.jpeg') center/cover no-repeat fixed;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 0; 
        }
/* =======================
   Layout & Spacing
======================= */
.container {
    max-width: 1320px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 auto;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 768px) {
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* =======================
   Navbar
======================= */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.9rem;
    color: var(--dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* =======================
   Hero Carousel
======================= */
#heroCarousel .carousel-item {
    height: clamp(450px, 75vh, 700px);
    position: relative;
    overflow: hidden;
}

#heroCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    bottom: 12%;
    left: 5%;
    right: 5%;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.carousel-caption h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.carousel-caption p {
    font-size: clamp(1rem, 3.5vw, 1.4rem);
}

/* =======================
   Buttons
======================= */
.btn-gold {
    background: var(--accent);
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #ffc107;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
}

/* =======================
   Product Cards
======================= */
.product-card {
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all .45s cubic-bezier(.19, 1, .22, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .18);
}

.product-card .img-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.product-card:hover img {
    transform: scale(1.12);
}

.product-card .img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent 60%);
    opacity: 0;
    transition: .4s;
}

.product-card:hover .img-wrapper::after {
    opacity: 1;
}

.product-content {
    flex-grow: 1;
    padding: 22px;
    background: #f9fbfd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.read-more-btn {
    padding: 9px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #343a40;
    background:#ffab00;
    position: relative;
    overflow: hidden;
    transition: .35s;
    display: inline-flex;
    align-items: center;
}

.read-more-btn::after {
    content: "→";
    margin-left: 8px;
    transition: .35s;
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #ff9800, #ffb300);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.read-more-btn:hover::after {
    margin-left: 14px;
}

/* =======================
   Feature / Hover Cards
======================= */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.vision-mission-card {
    border: 1px solid #eee;
}

/* =======================
   Marquee
======================= */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color:#545454;
    color: white;
    padding: 1.2rem 0;
}

.marquee {
    display: inline-flex;
    animation: marquee-scroll 11s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    color:dark;
    padding: 0 3rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee {
    animation-play-state: paused;
}

/* =======================
   Contact Cards
======================= */
.contact-card {
    min-height: 320px;
    border: none;
    border-radius: 14px;
    background: white;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.8rem;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.3rem;
}

@media (max-width: 991px) {
    .contact-card {
        min-height: 300px;
    }
}
/* Contact Form Styling */

.contact-form-section {
    background: #f8f9fa;
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
                rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    transition: 0.3s ease;
}

.contact-form-box:hover {
    transform: translateY(-5px);
}

.contact-form-box h4 {
    font-weight: 600;
    margin-bottom: 25px;
    color: #004d66;
}

/* Inputs */
.contact-form-box .form-control,
.contact-form-box .form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form-box textarea {
    height: 120px !important;
    resize: none;
}

/* Focus Effect */
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #004d66;
    box-shadow: 0 0 0 0.15rem rgba(0, 77, 102, 0.25);
}

/* Button */
.contact-btn {
    background: #ffab00;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #e69a00;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-box {
        padding: 25px;
    }
}
/* =======================
   CTA & Footer
======================= */
.cta-section {
    background-color:#545454;;
    color: white;
    padding: 7rem 0;
    text-align: center;
}

footer {
    background: #0f1419;
    color: #ccc;
    padding: 5rem 0 2rem;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent);
}
   .card-body { padding: 2.5rem !important; }
        .text-justify { text-align: justify; }
/* =======================
   WhatsApp Floating Button
======================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* =======================
   Mobile Adjustments
======================= */
@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 2.2rem;
    }
    .product-card {
        height: auto;
        min-height: 380px;
    }
}