:root {
    --color-primary: #003c7a;    /* Deep Blue */
    --color-secondary: #c25700;  /* Vibrant Orange */
    --color-white: #ffffff;
    --color-light: #f4f7f9;
    --color-dark: #1a2b3c;
    
    --shadow-clay: 12px 12px 24px #bebebe, -12px -12px 24px #ffffff;
   --shadow-clay-hover: 2px 2px 5px #d0d0d0, -2px -2px 5px #ffffff;

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.color-secondary{
color: #c25700;
}
.border-secondary{
    border-color: #c25700 !important;
}
.hero-modern {
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero-modern {
        clip-path: none;
    }
}
.clay-card {
    overflow: hidden;
}
/* ===== PERMANENT HORIZONTAL SCROLL FIX ===== */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

section, footer, header {
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}
.clay-card p {
    word-break: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 768px) {

    .clay-card .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left;
    }

    .icon-box-3d {
        margin-bottom: 15px;
    }

}
.contact-text {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
}

.border-primary{
    border-color: #003c7a !important;
}
.animate-fade-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}
.text-primary{
    color: #003c7a !important;
}
/* 3D Claymorphism Cards */
.clay-card {
    background: #ffffff;
    border-radius: 30px;
    /* box-shadow: var(--shadow-clay); */
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.clay-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-clay-hover);
}

/* Modern Typographic Logo Styling */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
}

.logo-icon-box {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 4px 4px 0px var(--color-secondary);
    margin-right: 15px;
    flex-shrink: 0;
}

.logo-text-block {
    border-left: 3px solid var(--color-secondary);
    padding-left: 15px;
}

.logo-text-block .name {
    font-weight: 800;
    display: block;
    line-height: 1.1;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.logo-text-block .tagline {
    font-size: 0.65rem;
    color: var(--color-secondary);
    font-weight: 700;
    display: block;
    margin-top: 3px;
    letter-spacing: 0.2px;
}

/* 3D Sections */
.hero-modern {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00254d 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.btn-modern {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.btn-modern-primary {
    background: var(--color-secondary);
    color: white;
    border: none;
}

.btn-modern-primary:hover {
    background: #a34900;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(194, 87, 0, 0.3);
    color: white;
}

.icon-box-3d {
    width: 70px;
    height: 70px;
    background: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-secondary);
    box-shadow: 6px 6px 0px var(--color-primary);
    margin-bottom: 25px;
    animation: float 4s ease-in-out infinite;
}

    .footer-nav li {
        margin-bottom: 14px;
        transition: transform 0.3s ease;
    }
    
    .footer-nav a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: block;
    }
    
    .footer-nav li:hover {
        transform: translateX(10px);
    }
    
    .footer-nav li:hover a {
        color: var(--color-secondary);
        font-weight: 600;
    }
    
    .social-btn-3d {
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .social-btn-3d:hover {
        background: var(--color-secondary);
        transform: translateY(-8px) rotate(-8deg);
        box-shadow: 8px 8px 0px var(--color-primary);
        color: white;
    }

    .contact-pulse-icon {
        width: 35px;
        height: 35px;
        background: rgba(194, 87, 0, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-secondary);
        font-size: 0.9rem;
        position: relative;
    }

    .contact-pulse-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid var(--color-secondary);
        opacity: 0.5;
        animation: pulse-ring 2s infinite;
    }

    @keyframes pulse-ring {
        0% { transform: scale(0.8); opacity: 0.5; }
        100% { transform: scale(1.6); opacity: 0; }
    }

    .footer-brand-card {
        padding: 12px 20px !important;
        background: #ffffff !important;
    }
    .hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

.social{
    display: flex;
    flex-direction: row;
}