/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

body {
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #1a2b3c;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb300;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #d32f2f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}

.btn:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211,47,47,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #d32f2f;
    color: #d32f2f;
    box-shadow: none;
}

.btn-outline:hover {
    background: #d32f2f;
    color: white;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-top {
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
    padding: 8px 0;
    color: #1a2b3c;
}

.header-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.header-text img {
    width: 30px;
    height: 30px;
    filter: brightness(0.2);
}

.header-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 0 3px;
    color: #1a2b3c;
    text-decoration: none;
    transition: 0.3s;
}

.header-social a:hover {
    background: white;
    transform: translateY(-3px);
}

.header-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-call img {
    width: 30px;
    height: 30px;
    filter: brightness(0.2);
}

.header-call a {
    color: #1a2b3c;
    text-decoration: none;
    font-weight: 700;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER TOP STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MAIN & LOGO STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-main {
    padding: 15px 0;
    background: white;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    max-width: 350px;
}

.logo img {
    height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #1a2b3c;
    font-weight: 600;
    padding: 10px 0;
    transition: 0.3s;
}

.menu a:hover {
    color: #d32f2f;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 220px;
    display: none;
    list-style: none;
    padding: 15px 0;
    z-index: 100;
    border-radius: 8px;
}

.menu li:hover .submenu {
    display: block;
}

.submenu li {
    padding: 8px 20px;
}

.submenu a {
    color: #555;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER MAIN & LOGO STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f6 100%);
    min-height: 500px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    color: #1a2b3c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #d32f2f;
}

.hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-section {
    background: #ffffff;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 30px;
}

.about-content h2 {
    font-size: 36px;
    color: #1a2b3c;
    margin-bottom: 25px;
    position: relative;
}

.about-content h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d32f2f;
    margin-top: 15px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-item i {
    width: 40px;
    height: 40px;
    background: #ffb300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2b3c;
    font-size: 18px;
}

.detail-text strong {
    display: block;
    color: #1a2b3c;
    font-size: 14px;
    font-weight: 600;
}

.detail-text span {
    color: #666;
    font-size: 14px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-title {
    font-size: 32px;
    color: #1a2b3c;
    margin: 40px 0 25px 0;
    padding-left: 15px;
    border-left: 6px solid #d32f2f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: #ffb300;
    font-size: 28px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 20px;
    color: #1a2b3c;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.product-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.product-btn {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.product-btn.view {
    background: #d32f2f;
    color: white;
}

.product-btn.enquiry {
    background: #ffb300;
    color: #1a2b3c;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

.products-priority {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.priority-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.priority-tag {
    background: #ffb300;
    color: #1a2b3c;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255,179,0,0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-section {
    background: #ffffff;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(211,47,47,0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.company-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.company-info-card h3 {
    font-size: 28px;
    color: #1a2b3c;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffb300;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-list i {
    width: 50px;
    height: 50px;
    background: #ffb300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2b3c;
    font-size: 20px;
}

.info-text h4 {
    font-size: 18px;
    color: #1a2b3c;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-text p {
    color: #666;
    line-height: 1.7;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-size: 28px;
    color: #1a2b3c;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d32f2f;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d32f2f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer {
    background: #0a1a2a;
    color: white;
    padding: 70px 0 20px;
}

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

.footer-about h3 {
    color: #ffb300;
    font-size: 26px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #a0a0a0;
    line-height: 1.9;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffb300;
    color: #0a1a2a;
    transform: translateY(-5px);
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffb300;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffb300;
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.footer-contact i {
    color: #ffb300;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #808080;
    font-size: 14px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .logo img {
        height: 70px;
        max-width: 220px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .header-call span:not(:last-child) {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 60px;
        max-width: 200px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .header-text span {
        font-size: 14px;
    }
    
    .header-call a {
        font-size: 14px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/* Banner Section */
.page-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3b 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    margin-top: 140px; /* Adjust based on header height */
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    color: #ffffff;
    font-size: 18px;
}

.breadcrumb a {
    color: #ffb300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd966;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
}

.breadcrumb .current {
    color: #ffffff;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
        margin-top: 120px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .banner-title {
        font-size: 28px;
    }
}





/* Header Fixed */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Top */
.header-top {
    background: #1a472a;
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 2px solid #ffb300;
}

/* Header Main */
.header-main {
    background: #ffffff;
    padding: 10px 0;
}

/* Adjust Banner Section - Remove margin-top */
.page-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3b 100%);
    padding: 100px 0 80px;  /* Increased top padding to account for fixed header */
    text-align: center;
    position: relative;
    margin-top: 0;  /* Remove margin-top */
}

/* Responsive adjustment for banner */
@media (max-width: 768px) {
    .page-banner {
        padding: 120px 0 60px;  /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 100px 0 40px;
    }
}




/* Banner Section */
.page-banner {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3b 100%);
    padding: 180px 0 100px;  /* Increased top padding to push content below fixed header */
    text-align: center;
    position: relative;
    margin-top: 0;
    min-height: 300px;  /* Minimum height ensure */
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.breadcrumb {
    color: #ffffff;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .page-banner {
        padding: 160px 0 80px;
    }
    
    .banner-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 140px 0 60px;
        min-height: 250px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 120px 0 50px;
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 28px;
    }
}


