/* ==========================================================================
   1. GLOBAL STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif; 
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

/* ==========================================================================
   2. HEADER & NAVIGATION STYLES
   ========================================================================== */
header {
    width: 100%;
    box-sizing: border-box;
    display: block;
    
    /* GLOBAL CLEARANCE: Creates physical placeholder space on desktop so content cannot slide under fixed bars */
    padding-bottom: 120px; 
}

.PhEmHeader {
    background-color: #000435;
    padding: 0.5px;
    width: 100%;
}

.PhEmnav {
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    flex-wrap: wrap;                
    gap: 15px;                      
    list-style: none;               
    margin: 0;
    padding: 10px 20px;             
}

.PhEmnav li {
    text-decoration: none;
    display: inline-flex;
}

.PhEmnav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    gap: 3px;
}

.PhEmnav a:hover {
    color: #bf9b30;
}

.menuNav {
    display: flex;
    background: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 auto;
    width: 95%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    top: 50px; /* Secure placement underneath unpinned contact line */
    box-shadow: 0 4px 20px rgba(0, 4, 53, 0.15);
}

.compLogo {
    width: 12rem;
    height: auto;
    flex-shrink: 0;
}

.menuHeader {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menuItem {
    margin: 0 15px;
    flex-shrink: 0;
}

.menuItem a {
    text-decoration: none;
    color: #04094d;
    font-weight: bold;
}

.menuItem a:hover {
    color: #bf9b30;
}

/* ==========================================================================
   4. INTRO DET / SIDE-BY-SIDE SIDEBAR SECTION (BALANCED 65-35 GRID STRUCTURE)
   ========================================================================== */
.abtDet, .aboutDet {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 0 20px;
    
    /* RESET: Relies safely on the header's padding structure to clear desktop gaps cleanly */
    margin: 0 auto 40px auto;
    padding-top: 0px; 
}

.introDet h3, .usDet h3, .prodAbt h3, .prodDet h3 {
    font-size: 24px !important;          
    color: #04094d;
    margin-top: 0 !important;            
    margin-bottom: 12px !important;
}

.introDet p, .usDet p {
    color: #04094d;
    font-size: 18px !important;          
    margin: 0 0 15px 0;
    line-height: 1.6;                    
    text-align: justify !important;      
}

/* 1. Left Text Column: Expands to 65% width */
.introDet, .usDet {
    flex: 0 0 65%;
    max-width: 65%;
}

/* 2. Right Image Column: Shrinks to 35% width */
.prodAbt, .prodDet {
    flex: 0 0 35%;
    max-width: 35%;
}

/* 3. Image List & Items: Stacked vertically at full width of the 35% column */
ul.abtImage, ul.productImage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

ul.abtImage li, ul.productImage li {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 4. Images: Scale proportionally without cropping */
ul.abtImage img, 
ul.productImage img,
img.abtImage, 
img.prodImage {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ==========================================================================
   5. WELCOME & OTHER CONTROLS
   ========================================================================== */
.welDet h2 {
    font-size: 2.25rem;
    color: #04094d;
    letter-spacing: 0.04em;
    margin-left: 10px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.welDet img {
    width: 360px;
    margin-left: 20px;
}

/* ==========================================================================
   6. FOOTER STYLING
   ========================================================================== */
footer {
    background-color: #000435;      
    color: #ffffff;                 
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
    width: 100%;
}

.footerContainer {
    width: 100%;
}

.footerCol h3 {
    color: #bf9b30;
    font-size: 18px;
    margin-bottom: 15px;
}

.addressDetails p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.goldenLine {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #bf9b30 !important;
    border: none;
    margin: 15px 0;
    opacity: 1;
}

.footerBottom {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 3px solid #bf9b30; 
    text-align: center;
}

.footerBottom p {
    color: #94a3b8;
    font-size: 13px;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS (ALL PAGES UNIFIED MOBILE PROFILES)
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    /* MOBILE SPACER RESET: Erases the desktop container padding behavior so items snap tight */
    header {
        padding-bottom: 0px !important;
    }

    /* Forces the very top contact info strip to stay visible on mobile layout stacks */
    .PhEmHeader {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 99998 !important; 
        height: auto !important;
    }

    .PhEmnav {
        padding: 8px 15px !important;
        gap: 10px !important;
        justify-content: center !important; 
    }

    .PhEmnav a {
        font-size: 13px !important; 
    }
    
    /* 9.1 HORIZONTAL FLOATING PILL NAVIGATION (Shifted Down for Clearances) */
    .menuNav {
        position: fixed !important; 
        top: 55px !important;              
        left: 4% !important;               
        right: 4% !important;
        width: 92% !important;
        display: flex !important;
        flex-direction: row !important;    
        justify-content: space-between !important;
        align-items: center !important;
        border-radius: 50px !important;    
        padding: 10px 18px !important;      
        z-index: 99999 !important;         
        background: #ffffff !important;    
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18) !important; 
    }

    .compLogo {
        width: 6.5rem !important;
        height: auto !important;
        flex-shrink: 0 !important;         
    }
    
    /* 9.2 HORIZONTAL TOUCH-SWIPE LINK ROW */
    .menuHeader {
        display: flex !important;
        flex-direction: row !important; 
        align-items: center !important;
        gap: 16px !important;              
        list-style-type: none !important;
        margin: 0 0 0 15px !important;
        padding: 5px 0 !important;
        overflow-x: auto !important;       
        white-space: nowrap !important;    
        max-width: 70% !important;         
        scrollbar-width: none !important;  
    }

    .menuHeader::-webkit-scrollbar {
        display: none !important;
    }

    .menuItem {
        margin: 0 !important;
        flex-shrink: 0 !important;         
    }

    .menuItem a {
        font-size: 14px !important;        
        font-weight: 700 !important;
        color: #04094d !important;         
        text-transform: uppercase;         
        letter-spacing: 0.5px;
        white-space: nowrap !important;     
    }

    /* 9.3 YOUR CONTENT & ABOUT SECTION RESPONSIVE UPDATES */
    .abtDet, .aboutDet {
        flex-direction: column !important; 
        gap: 30px !important;
        
        /* Clear responsive spacing profile block */
        padding-top: 135px !important;     
        margin: 0 auto !important;
    }

    .introDet, .usDet, .prodAbt, .prodDet {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .introDet p, .usDet p {
        text-align: left !important;       
    }
}
