/* ==========================================================================
   IPS - INDUSTRIAL PRODUCT SERVICES
   Consolidated & Responsive Stylesheet
   ========================================================================== */

/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body, html {
    background: #f5f7fa;
    color: #222;
    overflow-x: hidden; /* Prevent horizontal scroll globally */
    max-width: 100%;
    width: 100%;
}

* {
    word-break: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- TOPBAR --- */
.topbar {
    background: #115264;
    color: #fff;
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons a {
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    margin-left: 0;
}

.social-icons a.fb { background: #3b5998; }
.social-icons a.tw { background: #1da1f2; }
.social-icons a.li { background: #0077b5; }
.social-icons a.ig { background: #e1306c; }
.social-icons a.wa { background: #25d366; }

.social-icons a:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* --- NAVBAR --- */
#nav-links {
    margin-left: auto;
}

nav {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 48px;
    z-index: 1500;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 15px rgba(242, 107, 41, 0.1));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(242, 107, 41, 0.2));
}

.logo span {
    color: #115264;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: 0.3s;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    color: #d9581f;
}

/* --- DROPDOWN & SUBMENU --- */
.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    width: 280px;
    display: none;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a {
    padding: 14px 18px;
    color: #222;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #d9581f;
    color: #fff;
    padding-left: 25px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    width: 320px;
}

@media (min-width: 901px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li:first-child > a { border-radius: 8px 8px 0 0; }
.dropdown-menu li:last-child > a { border-radius: 0 0 8px 8px; }

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* --- HERO CAROUSEL --- */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.slide-content p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e2e8f0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: #f26b29;
    border-color: #f26b29;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #f26b29;
    width: 30px;
    border-radius: 10px;
}

/* --- COMMON COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #f26b29;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #d9581f;
    transform: translateY(-3px);
}

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #115264;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* --- INDEX.HTML STYLES --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.products {
    background: #eef4f8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-category h3 {
    font-size: 32px;
    color: #d9581f;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.product-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d9581f;
    border-radius: 2px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 40px 0 60px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #fff;
}

.card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #115264;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f26b29;
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.card:hover::before {
    transform: scaleX(1);
}

.card i {
    font-size: 55px;
    color: #f26b29;
    margin-bottom: 25px;
    transition: 0.3s;
}

.card:hover i {
    transform: scale(1.1);
    color: #d9581f;
}

.card h3 {
    margin-bottom: 15px;
}

.why {
    background: linear-gradient(rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.95)), url('product/bg.webp');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f26b29;
    transform: scaleX(0);
    transition: 0.5s;
    transform-origin: left;
}

.why-box:hover {
    background: rgba(242, 107, 41, 0.08);
    transform: translateY(-15px);
    border-color: #f26b29;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.why-box:hover::before {
    transform: scaleX(1);
}

.why-box i {
    font-size: 55px;
    color: #f26b29;
    margin-bottom: 30px;
    display: inline-block;
    transition: 0.4s;
}

.why-box:hover i {
    transform: rotateY(360deg);
    color: #fff;
}

.why-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;
}

.why-box p {
    font-size: 15px;
    line-height: 2;
    color: #bdc3c7;
}

.clients {
    text-align: center;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.client {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    text-align: center;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.client img {
    max-width: 100%;
    max-height: 90px;
    margin-bottom: 15px;
    transition: 0.4s;
    object-fit: contain;
}

.client:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26b29;
}

.client:hover img {
    transform: scale(1.05);
}

.industries {
    background: #fdfdfd;
    padding: 120px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries .card img {
    object-fit: cover;
}

.industry-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
}

.industry-card .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.75;
}

.industry-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 150, 214, 0.95), rgba(13, 27, 42, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    transition: 0.5s ease;
}

.industry-card:hover .bg-img {
    transform: scale(1.15);
    opacity: 0.9;
}

.industry-card:hover .overlay {
    background: rgba(0, 150, 214, 0.85);
    backdrop-filter: blur(8px);
}

.industry-card i {
    font-size: 45px;
    margin-bottom: 25px;
    color: #fff;
    transition: 0.4s;
}

.industry-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.industry-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.industry-card:hover p {
    opacity: 1;
    transform: translateY(0);
    max-height: 120px;
    margin-top: 10px;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #fff;
    border-radius: 24px;
    margin: 15px;
    opacity: 0;
    transform: scale(1.1);
    transition: 0.5s;
    z-index: 5;
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.contact {
    background: #fdfdfd;
    padding: 140px 8%;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-form-side,
.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-form-side form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-side form .form-grid {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 48px;
    color: #115264;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-side p.tagline {
    color: #f26b29;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.contact-info-side p.desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-list {
    display: grid;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: 0.4s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(242, 107, 41, 0.1);
    border-color: rgba(242, 107, 41, 0.3);
}

.info-item i {
    font-size: 24px;
    color: #f26b29;
    background: rgba(242, 107, 41, 0.08);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.info-content h4 {
    font-size: 18px;
    color: #115264;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-side {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0, 150, 214, 0.15);
    position: relative;
    border: 2px solid #d9581f;
    overflow: hidden;
}

.contact-form-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d9581f, #f26b29, #d9581f);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #115264;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-size: 16px;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f26b29;
    background: #fff;
    box-shadow: 0 10px 30px rgba(242, 107, 41, 0.1);
}

.submit-btn-premium {
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, #115264, #1e3a5f);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.2);
    background: linear-gradient(45deg, #f26b29, #d9581f);
}

.submit-btn-premium i {
    transition: 0.3s;
}

.submit-btn-premium:hover i {
    transform: translateX(5px);
}

.testimonials {
    background: #f0f4f8;
    padding: 120px 8%;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(242, 107, 41, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(13, 27, 42, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(242, 107, 41, 0.15);
    background: #fff;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: #f26b29;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(242, 107, 41, 0.3);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #eee;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 19px;
    color: #115264;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-details p {
    font-size: 13px;
    color: #f26b29;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.star-rating {
    margin-bottom: 15px;
    color: #f1c40f;
    font-size: 14px;
}

.faq {
    background: #f8fafc;
    padding: 120px 8%;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(242, 107, 41, 0.05);
    filter: blur(100px);
    top: 10%;
    right: 5%;
    border-radius: 50%;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #fff;
    border-radius: 24px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(242, 107, 41, 0.08);
    border-color: rgba(242, 107, 41, 0.2);
}

.faq-item.active {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-number {
    font-size: 14px;
    font-weight: 800;
    color: #f26b29;
    background: rgba(242, 107, 41, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.faq-header h3 {
    font-size: 19px;
    color: #115264;
    font-weight: 700;
    transition: 0.3s;
}

.faq-item.active .faq-header h3 {
    color: #f26b29;
}

.faq-trigger {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    color: #115264;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all ease;
    cursor: pointer;
}

.faq-item.active .faq-trigger {
    background: #f26b29;
    color: #fff;
    transform: rotate(180deg);
    box-shadow: 0 10px 20px rgba(242, 107, 41, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-content {
    padding: 0 40px 40px 95px;
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    padding-top: 20px;
}

/* --- ABOUT.HTML SPECIFIC STYLES --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #115264;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.vision-mission {
    background: #f8fafc;
    padding: 100px 8%;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vm-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(242, 107, 41, 0.1);
    border-color: #f26b29;
}

.vm-icon {
    font-size: 40px;
    color: #f26b29;
    margin-bottom: 25px;
}

.core-values {
    padding: 100px 8%;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: #fdfdfd;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.value-card:hover {
    background: #115264;
    color: #fff;
}

.value-card i {
    font-size: 35px;
    color: #f26b29;
    margin-bottom: 20px;
}

.value-card:hover i {
    color: #fff;
}

.journey {
    padding: 100px 8%;
    background: #f8fafc;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #cbd5e1;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #fff;
    border: 4px solid #f26b29;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.timeline-content {
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.img-text-section {
    padding: 100px 8%;
}

.reverse {
    grid-template-columns: 1fr 1fr;
}

.team {
    padding: 100px 8%;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 20px;
    color: #115264;
    margin-bottom: 5px;
}

.team-info p {
    color: #f26b29;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #64748b;
    transition: 0.3s;
}

.team-social a:hover {
    color: #f26b29;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- CLIENTS.HTML SPECIFIC STYLES --- */
.clients-grid {
    padding: 50px 8% 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: #f26b29;
    box-shadow: 0 15px 40px rgba(242, 107, 41, 0.1);
}

.client-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
}

.client-logo-box {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #f8fafc;
    border-radius: 15px;
    padding: 20px;
}

.client-logo-box img {
    max-height: 100%;
    max-width: 250px;
    object-fit: contain;
}

.client-header h3 {
    font-size: 24px;
    color: #115264;
    font-weight: 700;
    margin-top: 10px;
}

.client-tag {
    font-size: 12px;
    background: rgba(242, 107, 41, 0.1);
    color: #f26b29;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.client-body {
    padding-top: 5px;
}

.client-body h4 {
    font-size: 18px;
    color: #334155;
    margin-bottom: 12px;
    font-weight: 600;
}

.client-body p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.client-points li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.client-points li i {
    color: #f26b29;
    font-size: 14px;
}

.why-partner {
    padding: 100px 8%;
    background: #fff;
    text-align: center;
}

.why-item {
    padding: 40px 20px;
    border-radius: 20px;
    background: #f8fafc;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}

.why-item:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #f26b29;
    transform: translateY(-10px);
}

.why-item i {
    font-size: 40px;
    color: #f26b29;
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 20px;
    color: #115264;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.final-cta {
    padding: 100px 8%;
    background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.9)), url('product/bg_1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background: #fff;
    color: #115264;
}

.btn-white:hover {
    background: #f1f5f9;
    color: #f26b29;
}

.client-info-small {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-name-role h4 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #115264;
}

.client-name-role span {
    font-size: 13px;
    color: #f26b29;
}

/* --- CONTACT.HTML SPECIFIC STYLES --- */
.contact-section {
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    color: #115264;
    font-weight: 800;
}

.contact-header p {
    color: #64748b;
    font-size: 18px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.info-card {
    background: linear-gradient(135deg, #115264, #1b2a3a);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(242, 107, 41, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: #fff;
    background: #f26b29;
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(242, 107, 41, 0.3);
    transition: 0.4s;
}

.info-item:hover i {
    transform: scale(1.1);
    background: #fff;
    color: #f26b29;
}

.info-item h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 15px;
}

.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-form-container h3 {
    font-size: 28px;
    color: #115264;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #475569;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    background: #f8fafc;
    color: #1e293b;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f26b29;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(242, 107, 41, 0.1);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #f26b29;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #115264;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.2);
}

.submit-btn i {
    transition: 0.3s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: 80px 8%;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .faq-header h2 {
    font-size: 36px;
    color: #115264;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f26b29;
    transition: 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(242, 107, 41, 0.1);
}

.faq-card h4 {
    font-size: 18px;
    color: #115264;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h4 i {
    color: #f26b29;
}

.faq-card p {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
}

/* --- DOCUMENTS.HTML SPECIFIC STYLES --- */
.doc-section {
    padding: 80px 8%;
    max-width: 1100px;
    margin: 0 auto;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #f26b29;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

.cert-card:hover {
    box-shadow: 0 10px 25px rgba(242, 107, 41, 0.15);
    transform: translateY(-5px);
}

.cert-img-container {
    width: 100%;
    height: 450px;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.coming-soon-text {
    font-size: 26px;
    color: #ccc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cert-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; 
}

.cert-details {
    padding: 20px;
    text-align: center;
    background: #fff;
    flex: 1;
}

.cert-details h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}

.cert-details p {
    color: #666;
    font-size: 14px;
}

/* --- PRODUCT.HTML SPECIFIC STYLES --- */
.products-section {
    padding: 80px 8%;
    background: #eef4f8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pcard {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pcard:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.14);
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f26b29;
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.pcard:hover::before {
    transform: scaleX(1);
}

.pcard-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #f9fbfc;
    padding: 20px;
}

.pcard-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcard-body h3 {
    font-size: 20px;
    color: #115264;
    font-weight: 700;
    margin-bottom: 10px;
}

.pcard-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.pcard-body .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: #115264;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    width: fit-content;
}

.pcard-body .view-btn:hover {
    background: #f26b29;
    transform: translateX(4px);
}

.pcard-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f26b29;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- VALVES & PRODUCTS DETAILS COMMON STYLES --- */
.product-detail-container {
    padding: 120px 8%;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

.product-main-flex {
    display: flex;
    gap: 150px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product-title-centered {
    text-align: center;
    margin-bottom: 60px;
}

.product-title-centered h2 {
    font-size: 48px;
    color: #115264;
    font-weight: 800;
}

.product-gallery {
    flex: 1;
    min-width: 350px;
}

.main-img-box {
    width: 100%;
    height: 500px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.main-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: 0.5s;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumb-box {
    height: 100px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    overflow: hidden;
}

.thumb-box:hover,
.thumb-box.active {
    border-color: #f26b29;
    background: #fff;
}

.thumb-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-specs-box {
    flex: 1;
    min-width: 350px;
}

.product-specs-box h2 {
    font-size: 36px;
    color: #115264;
    margin-bottom: 15px;
    font-weight: 800;
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.tech-specs-table tr {
    border-bottom: 1px solid #f1f5f9;
}

.tech-specs-table td {
    padding: 12px 0;
    font-size: 15px;
}

.tech-specs-table td:first-child {
    font-weight: 700;
    color: #115264;
    width: 180px;
}

.tech-specs-table td:last-child {
    color: #64748b;
}

.precision-forged {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(242, 107, 41, 0.1);
    color: #f26b29;
    font-weight: 700;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.working-principal {
    margin: 25px 0;
    padding: 25px;
    background: #f8fafc;
    border-left: 5px solid #115264;
    border-radius: 0 10px 10px 0;
}

.working-principal h4 {
    margin-bottom: 10px;
    color: #115264;
}

.working-principal p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.detail-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(242, 107, 41, 0.08);
    border-color: #f26b29;
}

.detail-card h3 {
    font-size: 22px;
    color: #115264;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-card h3 i {
    color: #f26b29;
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.detail-card ul li i {
    color: #f26b29;
    font-size: 12px;
    margin-top: 4px;
}

/* --- LIGHTBOX MODAL CAROUSEL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(242, 107, 41, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
    transition: 0.3s;
}

.modal-caption {
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #f26b29;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.modal-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    font-size: 20px;
}

.modal-arrow:hover {
    background: #f26b29;
    border-color: #f26b29;
    transform: scale(1.1);
}

/* --- FOOTER STYLING --- */
footer {
    background: #115264;
    color: #fff;
    padding: 80px 8% 40px;
    position: relative;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo img {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
    background: #fff;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #f26b29;
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 15px;
}

.footer-links li a:hover {
    color: #f26b29;
    transform: translateX(8px);
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links-footer a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.4s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-footer a:hover {
    background: #f26b29;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(242, 107, 41, 0.2);
    border-color: #f26b29;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
    max-width: 1300px;
    margin: 0 auto;
}

.orcaminds-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    padding: 5px 12px;
    background: rgba(242, 107, 41, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(242, 107, 41, 0.2);
}

.orcaminds-link:hover {
    background: #f26b29;
    color: #fff;
    box-shadow: 0 5px 15px rgba(242, 107, 41, 0.3);
}

/* ==========================================================================
   GLOBAL RESPONSIVE OVERRIDES
   ========================================================================== */

/* --- TABLET VIEW (MAX-WIDTH: 900PX) --- */
@media (max-width: 900px) {
    /* Layout paddings scale down */
    section, 
    .about,
    .why,
    .clients,
    .industries,
    .testimonials,
    .faq,
    .contact,
    .content-section, 
    .img-text-section, 
    .values, 
    .team,
    .contact-section,
    .doc-section {
        padding: 60px 5% !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }

    .section-title p {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .why-box {
        padding: 30px 20px !important;
        text-align: left !important;
        display: block !important;
    }

    .why-box i {
        font-size: 40px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
        display: block !important;
    }

    .why-box h3 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        text-align: left !important;
    }

    .why-box p {
        font-size: 14px !important;
        text-align: left !important;
    }

    .topbar {
        justify-content: center !important;
        gap: 12px !important;
        padding: 10px 5% !important;
    }

    .logo img {
        height: 50px !important;
        max-width: 100% !important;
        width: auto !important;
    }

    /* Mobile Menu Burger Icon */
    .menu-toggle {
        display: block !important;
    }

    nav {
        flex-wrap: wrap !important;
        padding: 10px 5% !important;
    }

    /* Main Navigation Links List */
    nav ul {
        width: 100% !important;
        flex-direction: column !important;
        display: none !important;
        margin-top: 20px !important;
        background: #fff !important;
        padding: 10px 0 !important;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
    }

    nav ul.active {
        display: flex !important;
    }

    nav ul li {
        width: 100% !important;
        margin: 10px 0 !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    /* Navigation Dropdowns & Submenus */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        display: none !important;
        background: #f5f7fa !important;
    }

    .dropdown.active > .dropdown-menu {
        display: block !important;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        background: #eef2f6 !important;
        padding-left: 15px;
        display: none !important;
    }

    .dropdown-submenu.active > .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-submenu > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Home Page Layouts */
    .about,
    .contact-container,
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .why-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .full-width {
        grid-column: span 1 !important;
    }

    .hero h1 {
        font-size: 32px !important;
    }

    .slide-content p {
        font-size: 16px !important;
    }

    .hero {
        height: 60vh !important;
        min-height: 480px !important;
        padding: 0 !important;
    }

    .slide {
        padding: 0 6% !important;
    }

    .contact-info-side h2 {
        font-size: 36px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    /* Vision/Mission & Values & Team */
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .vm-grid {
        grid-template-columns: 1fr !important;
    }

    /* Timeline Journey */
    .timeline::after {
        left: 31px !important;
    }

    .timeline-item {
        width: 100% !important;
        padding-left: 70px !important;
        padding-right: 25px !important;
    }

    .timeline-item::after {
        left: 21px !important;
    }

    .right {
        left: 0% !important;
    }

    /* About Us page grids */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .about-img {
        order: 2 !important;
    }

    .about-text {
        order: 1 !important;
    }

    .about-text h2 {
        font-size: 32px !important;
    }

    .about-img img {
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    /* Clients Page Grids */
    .clients-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .client-points {
        grid-template-columns: 1fr !important;
    }

    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact Page Layouts */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    /* Lightbox Modal Nav */
    .modal-nav {
        width: 100% !important;
        left: 0 !important;
        padding: 0 20px !important;
    }

    .modal-arrow {
        width: 40px !important;
        height: 40px !important;
    }

    /* Products Details Responsive */
    .product-gallery {
        width: 100% !important;
        min-width: 0 !important;
    }

    .product-specs-box {
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 30px !important;
    }

    .tech-specs-table td {
        font-size: 14px !important;
        padding: 10px 0 !important;
    }

    .product-detail-container {
        padding: 30px 5% !important;
        margin-top: 20px !important;
        width: 100% !important;
    }

    .tech-specs-table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
    }

    .detail-sections {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .detail-card {
        padding: 25px !important;
    }

    .product-title-centered h2 {
        font-size: 28px !important;
    }

    .product-main-flex {
        flex-direction: column !important;
        gap: 40px !important;
        margin-bottom: 50px !important;
    }

    .main-img-box {
        height: 350px !important;
    }
}

@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- MOBILE VIEW (MAX-WIDTH: 600PX) --- */
@media (max-width: 600px) {
    .section-title h2 {
        font-size: 26px !important;
    }

    .why-box {
        padding: 25px 15px !important;
    }

    .why-box h3 {
        font-size: 20px !important;
    }

    .hero h1 {
        font-size: 26px !important;
    }

    .hero p {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }

    .hero .btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .hero {
        height: 55vh !important;
        min-height: 400px !important;
        padding: 0 !important;
    }

    .slide {
        padding: 0 5% !important;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .topbar {
        justify-content: center !important;
        gap: 12px !important;
        padding: 10px 5% !important;
    }

    .industry-grid {
        grid-template-columns: 1fr !important;
    }

    .industry-card {
        height: 350px !important;
    }

    .contact-info-side h2 {
        font-size: 28px !important;
    }

    .testimonial-card {
        padding: 30px 20px !important;
    }

    .faq-content {
        padding: 0 20px 20px 40px !important;
    }

    .submit-btn-premium {
        font-size: 16px !important;
        padding: 16px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-col h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .social-links-footer {
        justify-content: center !important;
    }

    .footer-bottom {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    /* Vision / Values / Team Grids stack fully */
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .section-header h2 {
        font-size: 32px !important;
    }

    .about-subgrid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .about-text h2 {
        font-size: 26px !important;
    }

    .cta-content h2 {
        font-size: 32px !important;
    }

    .cta-btns {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .cert-img-container {
        height: 320px !important;
    }

    /* Product Valve details */
    .tech-specs-table td:first-child {
        width: 130px !important;
    }

    .main-img-box {
        height: 280px !important;
    }
}
