/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#145c4a;; /* NEW navy */
    color:#1b2e2b;
    text-decoration: white;
}
/* 
/* HEADER */
/* header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#062f2a; /* darker navy */
    /* color:white;
    border-bottom:2px solid #f5a623;
}  */ */

/* .logo{
    font-size:70px;
    font-weight:bold;
  
} */

/* NAV */
nav a{
    margin:0 10px;
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#f5a623;
}

.btn{
    background:#f5a623;
    padding:8px 15px;
    border-radius:5px;
    color:#062f2a !important;
    font-weight:bold;
}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* HERO */
.hero{
    position:relative;
    height:60vh;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(55%);
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
}

.hero-text h1{
    font-size:40px;
    margin-bottom:10px;
    color:#f5a623;
}

.hero-text p{
    font-size:18px;
    color:#1b2e2b;
}

/* PRODUCTS */
.products{
    padding:50px 20px;
    text-align:center;
}

.products h2{
    font-size:28px;
    margin-bottom:30px;
    color:#f5a623;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
}

/* CARD */
.card{
    background:#062f2a; /* match header */
    padding:15px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
    transform:translateY(-5px);
    border-color:#f5a623;
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

.card h3{
    margin-top:10px;
    color:#f5a623;
}

/* FOOTER */
footer{
   
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
    border-top:2px solid #f5a623;
}

/* FORM */
.form{
    padding:50px 20px;
    max-width:500px;
    margin:auto;
}

.form h2{
    margin-bottom:20px;
    color:#f5a623;
}

.form input,
.form textarea{
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border:1px solid #1c3a6b;
    background:#062f2a;
    color:#1b2e2b;
    border-radius:5px;
}

.form button{
    background:#f5a623;
    border:none;
    padding:10px;
    color:#062f2a;
    cursor:pointer;
    border-radius:5px;
    font-weight:bold;
}

/* responvive */
/* RESPONSIVE */

/* Phones (small screens) */
@media (max-width: 480px) {
    nav {
        display: none;
        flex-direction: column;
        background: #062f2a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%; /* full width for small screens */
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .logo-container {
        max-width: 150px;
    }

    .logo-container img {
        height: 60px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #062f2a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .logo-container {
        max-width: 180px;
    }

    .logo-container img {
        height: 70px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        padding: 25px;
        text-align: center;
    }
}

/* Laptops */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: row;
        padding: 30px;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 1200px;
    }
}


/* added */
/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 40px;
    background:#062f2a;;
    position:relative;
    z-index:1000;
    border-bottom:2px solid #f5a623;
    justify-content:space-between;
    border-bottom:2px solid #f5a623;
    flex-wrap:wrap;
}
header nav a{
    color: #ffffff !important;
}
/* LOGO IMAGE */
.logo-container{
    display:flex;
    align-items:center;
    max-width:150px; /* controls how wide it can go */
    background:#062f2a;
}
.logo-container img{
    height:70px;   /* increase size */
    width:auto;
    object-fit:contain;
}

/* NAV */
nav{
    display:flex;
    align-items:center;
}

nav a{
    margin:0 12px;
    text-decoration:none;
    color:#1b2e2b;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#f5a623;
}

/* BUTTON */
.btn{
    background:#f5a623;
    padding:8px 15px;
    border-radius:5px;
    color:#062f2a !important;
    font-weight:bold;
}

/* MENU TOGGLE (3 DOTS) */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#f5a623;
}
/* active */

/* MOBILE */
@media(max-width:768px){
    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        flex-direction:column;
        background:#062f2a;
        position:absolute;
        top:70px;
        right:0;
        width:230px;
        padding:15px;
        border-radius:0 0 10px 10px;
        box-shadow:0 6px 20px rgba(0,0,0,0.4);
    }

    nav a{
        margin:10px 0;
        text-align:left;
    }

    nav.active{
        display:flex;
    }

    .contact-container{
        flex-direction:column;
    }

    .contact-info, .contact-form{
        padding:25px;
        text-align:center;
    }
}

/* SMALL PHONES (iPhone fix) */
@media (max-width:480px){
    .search-box input{
        width:100px;
    }

    .logo-container img{
        height:70px;
    }

    header{
        padding:10px 12px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button{
        font-size:14px;
        padding:10px;
    }
}
@media (max-width:600px){
    .search-box input{
        width:100px;
    }

    .logo-container img{
        height:70px;
    }

    header{
        padding:10px 12px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button{
        font-size:14px;
        padding:10px;
    }
}


/* TABLETS */
@media (max-width:1024px){
    .contact-container{
        flex-direction:row;
        padding:30px;
    }
}

/* LARGE DESKTOPS */
@media (min-width:1200px){
    .contact-container{
        max-width:1200px;
    }
}
@media (min-width:480px){
    .contact-container{
        max-width:1200px;
    }
}

/* cart */
button{
    background:#d1dae2;
    color:white;
    border:none;
    padding:10px;
    margin-top:10px;
    border-radius:5px;
    cursor:pointer;
}

button:hover{
    background:#ff8c00;
  
}

/* header styling */
/* HEADER RIGHT SIDE */
.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* SEARCH */
.search-box{
    position:relative;
}

.search-box input{
    padding:8px;
    border-radius:5px;
    border:none;
    width:200px;
}

/* SEARCH RESULTS */
.search-results{
    position:absolute;
    top:40px;
    width:100%;
    background:white;
    border-radius:5px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    display:none;
    max-height:200px;
    overflow-y:auto;
    z-index:1000;
    flex-wrap:wrap;
}

.search-results div{
    padding:10px;
    cursor:pointer;
}

.search-results div:hover{
    background:#f0f0f0;
}

/* CART */
.cart-icon{
    background:#ff8c00;
    padding:8px 12px;
    border-radius:5px;
    cursor:pointer;
    color:white;
    font-weight:bold;
}
/* contact */
.contact-section {
    background: #062f2a; /* dark background */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* LEFT: FORM */
.contact-form {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
}

.contact-form h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #062f2a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #e63946; /* red accent */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c72c3a;
}

/* RIGHT: INFO */
.contact-info {
    flex: 1;
    padding: 40px;
    background: #062f2a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffcc70;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.info-item i {
    margin-right: 10px;
    color: #ffcc70;
}

/* RESPONSIVE */

/* Phones (small screens) */
@media (max-width: 480px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info, .contact-form {
        text-align: center;
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        padding: 25px;
        text-align: center;
    }
}

/* Laptops */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: row;
        padding: 30px;
    }
}

/* Large desktops */
@media (min-width: 1200px) {
    .contact-container {
        max-width: 1200px;
    }
}

/* category */
/* CATEGORY SECTION */
.categories{
    text-align:center;
    margin:40px 0 20px;
}

.categories h3{
    margin-bottom:15px;
    color:#062f2a;
}

/* CATEGORY GRID */
.category-list{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* CATEGORY CARD */
.category-card{
    padding:12px 20px;
    background:#062f2a;
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
    transition:0.3s;
}

/* HOVER EFFECT */
.category-card:hover{
    background:#ff8c00;
    transform:translateY(-3px);
}


/* services styling */
.services-hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.services-hero h2 {
    font-size: 32px;
    color: #062f2a;
    margin-bottom: 10px;
}

.services-hero p {
    color: #555;
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

/* CARDS */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0 10px;
    color: #062f2a;
}

.service-card p {
    padding: 0 15px 20px;
    color: #666;
    font-size: 14px;
}

/* VIDEO */
.video-section {
    text-align: center;
    padding: 60px 20px;
    background: #f4f8f7;
}

.video-section h2 {
    margin-bottom: 20px;
    color: #062f2a;
}

.video-container {
    max-width: 800px;
    margin: auto;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

#typing::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}