/* ===============================
   GLOBAL STYLES
   =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --accent-color: #4a90e2;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ===============================
   HEADER STYLES
   =============================== */

/* 1. TOP UTILITY BAR */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link .material-icons {
    font-size: 18px;
}

/* 2. MAIN BRANDING ROW */
.header-main {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-main .logo {
    flex: 0 1 auto;
}

.header-main .logo img {
    display: block;
    max-width: 300px;
    height: auto;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 3. MAIN NAVIGATION BAR */
.main-nav {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: block;
    padding: 1.2rem 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--secondary-color);
}

.nav-links > li > a.active::after,
.nav-links > li > a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

/* Arrow Icon */
.nav-links .arrow {
    font-size: 0.8em;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow,
.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Desktop */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.8rem 0;
    margin-top: 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.dropdown-menu li a::after {
    display: none;
}

/* ===============================
   RESPONSIVE - MOBILE
   =============================== */

@media (max-width: 820px) {
    /* Top Bar - Stack or reduce font */
    .header-top {
        font-size: 12px;
    }
    
    .contact-info {
        gap: 15px;
        justify-content: center;
    }
    
    /* Header Main - Logo Left, Hamburger Right */
    .header-main {
        padding: 15px 0;
    }
    
    .header-main-container {
        justify-content: flex-start; /* Logo to left */
    }
    
    .header-main .logo img {
        max-width: 200px; /* Smaller logo for mobile */
    }
    
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation - Mobile Menu */
    .main-nav {
        position: relative;
    }
    
    .nav-container {
        padding: 0;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .nav-links.active {
        max-height: 600px;
    }
    
    .nav-links > li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links > li:last-child {
        border-bottom: none;
    }
    
    .nav-links > li > a {
        padding: 1rem 1.5rem;
    }
    
    .nav-links > li > a::after {
        display: none; /* Remove underline on mobile */
    }
    
    /* Dropdown - Mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: 0.9rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .header-top {
        display: none; /* Hide top bar on very small screens */
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header-main .logo img {
        max-width: 160px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
    }
}

/* Large Screens - Wider Logo Support */
@media (min-width: 1400px) {
    .header-main .logo img {
        max-width: 400px;
    }
}

/* ===============================
   HERO SECTION (FIXED)
   =============================== */

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    color: white;
    font-size: 0.95rem;
    z-index: 3;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ===============================
   FEATURES SECTION
   =============================== */

.features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===============================
   ABOUT PREVIEW SECTION
   =============================== */

.about-preview {
    padding: 80px 0;
    background: white;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 15px 0 30px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
}

/* ===============================
   PRODUCTS CAROUSEL (CONVEYOR BELT)
   =============================== */

.products-carousel-container {
    overflow: hidden;
    background: var(--bg-light);
    padding: 60px 0;
    margin-top: 40px;
}

.products-carousel {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.products-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    position: relative;
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 50px 20px 25px;
    color: white;
}

.carousel-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-item {
        width: 300px;
        height: 400px;
    }

    .carousel-title h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .products-carousel-container {
        padding: 40px 0;
    }

    .carousel-track {
        gap: 20px;
        animation: scroll 25s linear infinite;
    }

    .carousel-item {
        width: 250px;
        height: 350px;
    }

    .carousel-title {
        padding: 40px 15px 20px;
    }

    .carousel-title h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        gap: 15px;
        animation: scroll 20s linear infinite;
    }

    .carousel-item {
        width: 200px;
        height: 300px;
    }

    .carousel-title h3 {
        font-size: 1rem;
    }
}

/* Update carousel-item to work as a link */
.carousel-item {
    position: relative;
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    /* Important for anchor tags */
    text-decoration: none;
    /* Remove underline from links */
    color: inherit;
    /* Inherit text color */
}

.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 50px 20px 25px;
    color: white;
}

.carousel-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    /* Ensure white text on links */
}

/* ===============================
   CTA SECTION
   =============================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================
   FOOTER
   =============================== */

.footer {
    background: var(--primary-color);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.85;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-column ul li a:hover {
    color: white;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.85);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: white;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Header */
    .header-top {
        display: none;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-left: 20px;
    }

    /* Hero */
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* About Preview */
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}



















/* About page */



/* ===============================
   PAGE TITLE SECTION
   =============================== */

.page-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-title h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===============================
   ABOUT CONTENT SECTION
   =============================== */

.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ===============================
   MISSION & VISION SECTION
   =============================== */

.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===============================
   CERTIFICATES SECTION
   =============================== */

.certificates-section {
    padding: 80px 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.certificate-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certificate-card:hover {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.certificate-icon {
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.certificate-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certificate-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.certificate-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.certificate-link:hover {
    background: var(--secondary-color);
    color: white;
}

.certificate-link svg {
    transition: transform 0.3s ease;
}

.certificate-link:hover svg {
    transform: translateY(2px);
}

/* ===============================
   RESPONSIVE DESIGN - ABOUT PAGE
   =============================== */

@media (max-width: 1024px) {

    .mv-grid,
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2.5rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        padding: 60px 0 40px;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .about-content-section,
    .mission-vision,
    .certificates-section {
        padding: 50px 0;
    }
}

/* Two Certificates Grid */
.certificates-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for 2 certificates */
@media (max-width: 768px) {
    .certificates-grid-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}








/* ===============================
   PRODUCTS INTRODUCTION
   =============================== */

.products-intro {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===============================
   PRODUCTS HUB GRID
   =============================== */

.products-hub {
    padding: 80px 0;
    background: var(--bg-light);
}

.products-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-hub-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-hub-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-hub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-hub-card:hover .product-hub-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 60, 114, 0.9), rgba(30, 60, 114, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-hub-card:hover .product-overlay {
    opacity: 1;
}

.view-products {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-hub-content {
    padding: 30px;
}

.product-hub-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-hub-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-hub-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-highlights {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    color: var(--text-dark);
    padding: 5px 0;
    font-size: 0.95rem;
}

/* ===============================
   PRODUCTS CTA SECTION
   =============================== */

.products-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.products-cta-section .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.products-cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===============================
   RESPONSIVE - PRODUCTS PAGE
   =============================== */

@media (max-width: 1024px) {
    .products-hub-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-hub-grid {
        grid-template-columns: 1fr;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .product-hub-content h3 {
        font-size: 1.5rem;
    }

    .product-hub-image {
        height: 200px;
    }

    .products-cta-section .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-intro {
        padding: 40px 0;
    }

    .products-hub {
        padding: 50px 0;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .product-hub-content {
        padding: 20px;
    }
}


/* Wall finish */

/* ===============================
   CATEGORY INTRODUCTION
   =============================== */

.category-intro {
    padding: 60px 0;
    background: white;
}

.category-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.category-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===============================
   PRODUCTS LIST SECTION
   =============================== */

.products-list-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.product-detail-image {
    height: 100%;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-detail-card:hover .product-detail-image img {
    transform: scale(1.05);
}

.product-detail-content {
    padding: 40px;
}

.product-detail-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.product-info-section {
    margin-bottom: 25px;
}

.product-info-section h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.product-detail-content .btn {
    margin-top: 10px;
}

/* ===============================
   RELATED PRODUCTS SECTION
   =============================== */

.related-products {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-color);
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-card:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.related-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

/* ===============================
   RESPONSIVE - PRODUCT PAGES
   =============================== */

@media (max-width: 1024px) {
    .product-detail-card {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        height: 250px;
    }

    .product-detail-content {
        padding: 30px 20px;
    }

    .product-detail-content h3 {
        font-size: 1.6rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .category-intro h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .product-detail-content {
        padding: 20px;
    }

    .product-detail-content h3 {
        font-size: 1.4rem;
    }

    .product-info-section h4 {
        font-size: 1rem;
    }
}



/* ===============================
   PRODUCT ACTIONS
   =============================== */

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateY(-2px);
}

/* ===============================
   CERTIFICATE MODAL
   =============================== */

.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow: auto;
    padding: 20px;
}

.certificate-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.modal-actions {
    text-align: center;
    padding: 10px 0;
}

.modal-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===============================
   RESPONSIVE - MODAL
   =============================== */

@media (max-width: 768px) {
    .certificate-modal {
        padding: 10px;
    }

    .modal-content {
        max-width: 100%;
    }

    .modal-body {
        padding: 15px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}



/* ===============================
   MAP SECTION
   =============================== */

.map-section {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===============================
   CONTACT INFO SECTION
   =============================== */

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

/* ===============================
   CONTACT FORM SECTION
   =============================== */

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    position: relative;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===============================
   RESPONSIVE - CONTACT PAGE
   =============================== */

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .map-section {
        height: 350px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 300px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }
}

.feature-icon .material-icons {
    font-size: 4rem;
    /* Adjust size as needed */
    color: #1e3c72;
}

.mission-vision .material-icons {
    font-size: 4rem;
    /* Adjust size as needed */
    color: #1e3c72;
}

/* Add this CSS to your stylesheet */

.contact-link {
    display: inline-flex;
    /* This is the key property */
    align-items: center;
    /* This vertically centers the items */
    gap: 8px;
    /* Creates space between the icon and text */

    /* Your other styles */
    text-decoration: none;
    color: inherit;
}

/* Optional: Adjust icon size if needed */
.contact-link .material-icons {
    font-size: 20px;
    /* Try adjusting this size to match your text better */
}
