
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
}

/* ===== HEADER STYLES ===== */
.header-container {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Section - Single Row */
.top-section {
    display: flex;
    width: 100%;
    height: 85px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: nowrap;
    position: relative;
    border-bottom: 1px solid #eee;
}

/* Logos Container */
.logos-container {
    display: flex;
    gap: 15px;
    flex: 0 0 auto;
}



.left-box img{
    object-fit: contain;
}

/* Center Teal Section */
.center-teal {
    flex: 1;
    background: #03a9b9;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    font-size: 16px;
    position: relative;
    margin: 0 18px;
    border-radius: 5px;
    min-height: 50px;
    flex-wrap: wrap;
}
.center-teal a{
    text-decoration: none;
    color: #fff;
}

.center-teal span {
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.3s;
}

.center-teal span:hover {
    opacity: 0.9;
}

/* Dropdowns inside center teal */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #333;
    min-width: 150px;
    display: none;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-content a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #03a9b9;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* ===== MOBILE MENU IMPROVEMENTS ===== */
.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    color: #333;
    flex: 0 0 auto;
    z-index: 1001;
    position: relative;
}

/* Mobile Nav - Slide from right */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 80px 0 0 0;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.mobile-nav a {
    padding: 16px 25px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav a:hover {
    background: #f9f9f9;
    padding-left: 30px;
}

/* MOBILE DROPDOWNS */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-btn {
    padding: 16px 25px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    color: #333;
    width: 100%;
    transition: background 0.3s, padding-left 0.3s;
}

.mobile-dropdown-btn:hover {
    background: #f9f9f9;
    padding-left: 30px;
}

.mobile-dropdown-btn.active {
    background: #f0f8ff;
    color: #03a9b9;
    font-weight: 600;
}

.mobile-dropdown-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.mobile-dropdown-btn.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    background: #fafafa;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-dropdown-content.active {
    display: flex;
    max-height: 500px;
    padding: 10px 0;
}

.mobile-dropdown-content a {
    padding: 12px 35px;
    font-size: 16px;
    color: #555;
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    background: #f0f0f0;
    color: #03a9b9;
}

/* Close button for mobile menu */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 1002;
}

/* Desktop dropdown improvements */
.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #eee;
    min-width: 200px;
    display: none;
    flex-direction: column;
    border-radius: 0 0 5px 5px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown:hover .nav-dropdown-content {
    display: flex;
}

.nav-dropdown-content a {
    padding: 12px 20px;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
    transition: background 0.3s, padding-left 0.3s;
}

.nav-dropdown-content a:hover {
    background: #f9f9f9;
    padding-left: 25px;
    color: #03a9b9;
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 18px 0;
    background: white;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.navbar a:hover {
    color: #03a9b9;
}

.navbar a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #03a9b9;
}

/* Dropdown in Navbar */
.nav-dropdown {
    position: relative;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet: 901px to 1100px */
@media (max-width: 1100px) {
    .center-teal {
        gap: 15px;
        font-size: 15px;
        margin: 0 10px;
    }
    
    .navbar {
        gap: 35px;
        font-size: 17px;
    }
    
    .left-box img {
        height: 55px;
    }
}

/* Small Tablet: 769px to 900px */
@media (max-width: 900px) {
    .top-section {
        flex-wrap: wrap;
        padding: 10px 15px;
        height: 60px;
    }
    
    .logos-container {
        order: 1;
        flex: 0 0 auto;
        width: 60%;
    }
    
    .center-teal {
        order: 3;
        width: calc(100% - 30px);
        margin: 10px 15px 0 15px;
        padding: 10px 15px;
        font-size: 14px;
        gap: 15px;
        justify-content: center;
    }
    
    .center-teal span {
        font-size: 14px;
    }
    
    .menu-btn {
        display: block;
        order: 2;
        flex: 0 0 auto;
        margin-top: -80px;
    }
    
    .navbar {
        display: none;
    }
    
    .left-box img {
        height: 50px;
        margin-top: -80px;
    }
    
    /* Prevent hover dropdowns on mobile */
    .dropdown-content,
    .nav-dropdown-content {
        position: static;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* Large Mobile: 601px to 768px */
@media (max-width: 768px) {
    .logos-container {
        width: 70%;
    }
    
    .center-teal {
        font-size: 13px;
        gap: 10px;
        padding: 8px 10px;
    }
    
    .center-teal span {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }
    
    .left-box img {
        height: 45px;
    }
    
    .menu-btn {
        font-size: 24px;
        padding: 8px;
    }
}

/* Medium Mobile: 481px to 600px */
@media (max-width: 600px) {
    .top-section {
        padding: 8px 10px;
    }
    
    .logos-container {
        width: 80%;
        gap: 10px;
    }
    
    .center-teal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 8px;
        margin: 8px 10px 0 10px;
        font-size: 12px;
    }
    
    .center-teal span {
        font-size: 12px;
        padding: 4px;
    }
    
    /* Hide some center teal items on very small screens */
    .center-teal span:nth-child(1),
    .center-teal span:nth-child(3) {
        display: none;
    }
    
    .center-teal .dropdown {
        display: none;
    }
    
    .left-box img {
        height: 40px;
    }
    
    .menu-btn {
        font-size: 22px;
        padding: 6px;
    }
    
    .mobile-nav a {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .mobile-dropdown-btn {
        padding: 12px 15px;
        font-size: 16px;
    }
}

/* Small Mobile: Up to 480px */
@media (max-width: 480px) {
    .logos-container {
        width: 85%;
        gap: 8px;
    }
    
    .center-teal {
        display: none; /* Hide completely on very small screens */
    }
    
    .left-box img {
        height: 35px;
    }
    
    .menu-btn {
        font-size: 20px;
        padding: 5px;
    }
    
    .mobile-nav a {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .mobile-dropdown-btn {
        padding: 10px 15px;
        font-size: 15px;
    }
}

/* Extra Small Mobile: Up to 360px */
@media (max-width: 360px) {
    .logos-container {
        width: 90%;
    }
    
    .left-box img {
        height: 30px;
    }
    
    .menu-btn {
        font-size: 18px;
    }
    
    .mobile-nav {
        width: 85%;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-nav.active {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .mobile-nav a {
        padding: 10px 20px;
    }
    
    .mobile-dropdown-btn {
        padding: 10px 20px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    width: 100%;
    height: 80vh;
    min-height: 400px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.nav-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-buttons button {
    background: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.nav-buttons button:hover {
    background: #f5f5f5;
}

/* Dots */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ff7b00;
}

/* ===== MAIN SECTION ===== */
.section-wrapper {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

/* Left Curved Background */
.left-bg {
    position: absolute;
    left: -15%;
    top: -10%;
    width: 80%;
    height: 150%;
    background: #f5f5f7;
    border-radius: 50%;
    z-index: 0;
}

/* Left Content */
.left-content {
    width: 45%;
    z-index: 2;
    min-width: 300px;
}

.left-content h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.left-content h1 {
    font-size: 55px;
    color: #e56913;
    line-height: 1.2;
    font-weight: 700;
}

/* Right Content */
.right-content {
    width: 48%;
    z-index: 2;
    padding-left: 30px;
    min-width: 300px;
}

.right-content h2 {
    font-size: 55px;
    color: #e6e6e6;
    font-weight: 700;
    margin-bottom: 20px;
}

.right-content p {
    font-size: 20px;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* ===== FLOATING ELEMENTS ===== */
.get-quote {
    position: fixed;
    right: 0;
    top: 30%;
    background: #00bcd4;
    color: #fff;
    padding: 12px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s, transform 0.3s;
}

.get-quote:hover {
    background: #0097a7;
    transform: translateX(-5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #17c055;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
}

/* ===== WHY SECTION ===== */
.section-why {
    display: flex;
    width: 100%;
    background: #dff7f9;
    overflow: hidden;
    flex-wrap: wrap;
}

/* Left Scroll Box */
.left-scroll-box {
    width: 38%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Images Wrapper */
.scroll-images {
    display: flex;
    flex-direction: column;
    animation: scrollUp 25s linear infinite;
}

/* Image Effect */
.scroll-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    clip-path: inset(40% 20% 40% 20%);
    animation: openClose 3s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes scrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

@keyframes openClose {
    0% {
        opacity: 0;
        transform: scale(1.2);
        clip-path: inset(40% 20% 40% 20%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        clip-path: inset(0% 0% 0% 0%);
    }
}

/* Right Content in Why Section */
.right-content-why {
    width: 62%;
    padding: 80px 7%;
}

.right-content-why h1 {
    font-size: 55px;
    font-weight: 700;
    color: #e56913;
    margin-bottom: 20px;
}

.right-content-why p {
    font-size: 22px;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
}

/* Speed Control Box */
.speed-controller {
    width: 100%;
    padding: 20px;
    background: #dff7f9;
    text-align: center;
}

.speed-controller input {
    width: 60%;
    max-width: 300px;
}

.speed-controller label {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    display: block;
    margin-bottom: 10px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 50px 0;
    background-color: #eaf6f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007a8d;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-top: 15px;
    color: #007a8d;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h1 {
    font-size: 2.8rem;
    color: #1a3c6e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, #1a3c6e, #4a90e2);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    line-height: 1.6;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.8rem;
    color: #1a3c6e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-icon {
    font-size: 1.5rem;
    color: #4a90e2;
}

.product-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style-type: none;
    margin-bottom: 25px;
}

.features-list li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #4a90e2;
    margin-right: 10px;
    font-size: 0.9rem;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.color-options span {
    font-weight: 600;
    color: #555;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: #333;
    transform: scale(1.1);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-button {
    background: linear-gradient(to right, #1a3c6e, #4a90e2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cta-button:hover {
    background: linear-gradient(to right, #15325c, #3a7bd5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 60, 110, 0.2);
}

.product-badge {
    background-color: #f0f7ff;
    color: #1a3c6e;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #d1e3ff;
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a3c6e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #4a90e2;
}

/* ===== IMAGE GALLERY ===== */
.gallery-container {
    width: 100%;
    max-width: 1300px;
    padding: 20px;
    margin: 0 auto;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.image-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    background-color: white;
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-wrapper {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.window-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Colorful hover effects for each image */
.image-item:hover .window-img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.08);
}

/* Different color overlay for each window type */
.villa-item:hover .window-img {
    box-shadow: inset 0 0 0 1000px rgba(52, 152, 219, 0.25);
}

.tilt-turn-item:hover .window-img {
    box-shadow: inset 0 0 0 1000px rgba(46, 204, 113, 0.25);
}

.sliding-item:hover .window-img {
    box-shadow: inset 0 0 0 1000px rgba(155, 89, 182, 0.25);
}

.casement-item:hover .window-img {
    box-shadow: inset 0 0 0 1000px rgba(241, 196, 15, 0.25);
}

.image-label {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.image-label h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.villa-item .label-icon {
    background-color: #3498db;
}

.tilt-turn-item .label-icon {
    background-color: #2ecc71;
}

.sliding-item .label-icon {
    background-color: #9b59b6;
}

.casement-item .label-icon {
    background-color: #f1c40f;
}

.image-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hover Indicator */
.hover-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.image-item:hover .hover-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Instructions */
.instructions {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.instructions h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructions h3 i {
    margin-right: 10px;
    color: #3498db;
}

.instructions p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.demo-button {
    display: inline-block;
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

/* ===== UNIQUE EVERY SPACE SECTION ===== */
.unique-every-space-section {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    background: #fff;
}

.unique-container {
    max-width: 1200px;
    margin: 0 auto;
}

.unique-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.unique-header h2 span {
    display: block;
    font-size: 24px;
    color: #666;
}

.unique-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.unique-tabs-switch {
    display: flex;
    gap: 10px;
}

.unique-tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
}

.unique-tab-btn.active {
    background: #ff6600;
    color: #fff;
}

.unique-content-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.unique-tabs-list {
    display: flex;
    flex-direction: column;
}

.unique-tab-item {
    padding: 15px 10px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 500;
    border: 1px solid #eee;
    background: #f9f9f9;
}

.unique-tab-item.active {
    color: #ff6600;
    font-weight: 700;
    border-color: #ff6600;
    background: #fff;
}

.unique-preview img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 400px;
    object-fit: cover;
}

.unique-preview h3 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: -120px;
    margin-left: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.unique-preview p {
    font-size: 16px;
    color: #ffffff;
    margin-left: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ===== APL FEATURES SECTION ===== */
#apl-features-section {
    position: relative;
    padding: 70px 0;
    background: #eef5ff;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* Background Shapes */
.apl-bg-circle {
    position: absolute;
    background: #e7f0ff;
    border-radius: 50%;
    z-index: 0;
}

.apl-bg-circle.big {
    width: 900px;
    height: 900px;
    top: -350px;
    right: -250px;
}

.apl-bg-circle.small {
    width: 650px;
    height: 650px;
    top: 200px;
    right: -300px;
    opacity: 0.5;
}

/* Container */
.apl-features-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

/* Left Side */
.apl-left-box {
    flex: 1;
}

.apl-small-title {
    font-size: 24px;
    color: #103a57;
    margin-bottom: 5px;
}

.apl-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #ff6d1d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.apl-description {
    max-width: 550px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 18px;
}

/* Features Grid */
.apl-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 40px;
}

.apl-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #263238;
}

.apl-feature-item .apl-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

/* Right Side */
.apl-right-box {
    flex: 1;
    text-align: center;
}

.apl-window-img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: 10px;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 40px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1613545325278-f24b0cae1224?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

/* Left Side Image */
.left-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-image img {
    width: 420px;
    max-width: 100%;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* Right Side Form */
.form-box {
    background: #fff;
    width: 500px;
    max-width: 100%;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    flex: 1;
}

.form-box h2 {
    color: #f26b00;
    margin-bottom: 25px;
    font-size: 32px;
}

form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    transition: border 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #f26b00;
    outline: none;
}

form textarea {
    min-height: 120px;
    resize: none;
}

.check {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
    cursor: pointer;
}

.check input {
    width: auto;
    margin-right: 8px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #f26b00;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.submit-btn:hover {
    background: #db5a00;
}

/* ===== STATS ROW ===== */
.stats-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #00A9B7;
    color: white;
    padding: 10px 0;
    min-height: 120px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: left;
    padding: 0 20px;
    margin: 10px 0;
    position: relative;
}

.stat-item h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.stat-item p {
    font-size: 12px;
    line-height: 1.5;
}

/* Divider line between boxes */
.divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
}

/* ===== GALLERY SECTION ===== */
.gallery-section-unique {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.gallery-title-unique {
    font-size: 48px;
    color: #e76f26;
    margin-bottom: 40px;
    font-weight: 800;
}

/* Slider Wrapper */
.slider-wrapper-unique {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slider Row */
.slider-unique {
    display: flex;
    gap: 20px;
    transition: transform 1s ease-in-out;
}

/* Slide Box */
.slide-unique {
    min-width: 40.33%;
    flex-shrink: 0;
}

.slide-unique img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s;
}

.slide-unique:hover img {
    transform: scale(1.05);
}

/* ===== AWARD SECTION ===== */
.award-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 8%;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
}

.award-left {
    width: 50%;
    min-width: 300px;
    flex: 1;
}

.award-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: #666;
}

.award-title {
    font-size: 48px;
    color: #e76f26;
    margin-top: -10px;
    margin-bottom: 20px;
}

.award-desc {
    font-size: 15px;
    color: #555;
    width: 90%;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* List Items */
.award-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.award-item {
    padding: 18px 0;
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;
    color: #444;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: color 0.3s;
}

.award-item:hover {
    color: #e76f26;
}

.award-item .icon {
    color: #e76f26;
    margin-right: 10px;
}

.award-item.active {
    color: #e76f26;
    border-bottom: 2px solid #e76f26;
}

/* Right Side Image */
.award-right {
    width: 50%;
    min-width: 300px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-image-box {
    width: 420px;
    height: 420px;
    max-width: 100%;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.award-image-box img {
    width: 70%;
    height: auto;
    max-width: 100%;
}

/* ===== BLOGS SECTION ===== */
.blogs-section {
    width: 100%;
    padding: 50px 8%;
    background: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #e86927;
    margin-bottom: 40px;
    text-align: center;
}

.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 260px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.category {
    margin-top: 0;
    font-size: 14px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    margin: 10px 0 20px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.read-more {
    font-size: 15px;
    text-decoration: none;
    color: #e86927;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.read-more span {
    margin-left: 8px;
    transition: 0.3s;
}

.read-more:hover span {
    transform: translateX(4px);
}

.btn-center {
    text-align: center;
    margin-top: 40px;
}

#viewAllBtn {
    padding: 12px 30px;
    background: #e86927;
    color: #fff;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    font-weight: 600;
}

#viewAllBtn span {
    margin-left: 8px;
    transition: transform 0.3s;
}

#viewAllBtn:hover {
    opacity: 0.85;
}

#viewAllBtn:hover span {
    transform: translateX(4px);
}

/* ===== CONTENT SECTION ===== */
.apl-section {
    width: 100%;
    padding: 50px 8%;
    background: #ffffff;
}

.apl-container {
    max-width: 1100px;
    margin: auto;
}

.apl-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.apl-heading strong {
    font-weight: 800;
    color: #e56913;
}

.apl-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.apl-list {
    list-style: disc;
    padding-left: 30px;
    color: #555;
}

.apl-list li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.apl-list strong {
    color: #333;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e56913;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li i {
    color: #e56913;
    width: 20px;
}

.footer-col ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-col ul li a:hover {
    color: #e56913;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #e56913;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #333;
    color: #b3b3b3;
    font-size: 14px;
}

/* ===== RESPONSIVE MEDIA QUERIES FOR ENTIRE PAGE ===== */

/* Large Desktop: 1200px and above */
@media (min-width: 1200px) {
    .container, .apl-container, .footer-container {
        max-width: 1140px;
    }
}

/* Desktop: 992px to 1199px */
@media (max-width: 1199px) {
    .left-content h1, .right-content h2, .right-content-why h1 {
        font-size: 45px;
    }
    
    .apl-main-title {
        font-size: 42px;
    }
    
    .gallery-title-unique, .section-title, .award-title {
        font-size: 42px;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: 768px to 991px */
@media (max-width: 991px) {
    /* Main Section */
    .section-wrapper {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }
    
    .left-bg {
        width: 140%;
        height: 70%;
        top: 0;
        left: -20%;
    }
    
    .left-content, .right-content {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .left-content h1 {
        font-size: 40px;
    }
    
    .right-content h2 {
        font-size: 40px;
    }
    
    .right-content p {
        font-size: 18px;
    }
    
    /* Why Section */
    .section-why {
        flex-direction: column;
    }
    
    .left-scroll-box {
        width: 100%;
        height: 300px;
    }
    
    .scroll-images img {
        height: 200px;
    }
    
    .right-content-why {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }
    
    .right-content-why h1 { 
        font-size: 40px; 
    }
    
    .right-content-why p { 
        font-size: 18px; 
    }
    
    /* Services Section */
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* APL Features Section */
    .apl-features-container {
        flex-direction: column;
        text-align: center;
    }
    
    .apl-left-box {
        text-align: center;
    }
    
    .apl-description {
        max-width: 100%;
    }
    
    /* Enquiry Section */
    .enquiry-section {
        flex-direction: column;
    }
    
    .form-box {
        width: 100%;
        margin-left: 0;
    }
    
    /* Unique Every Space Section */
    .unique-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .unique-tabs-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .unique-tab-item {
        white-space: nowrap;
        margin-right: 10px;
        margin-bottom: 0;
        min-width: 120px;
    }
    
    /* Stats Row */
    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        width: 45%;
        text-align: center;
        padding: 20px 10px;
    }
    
    .stat-item h2 {
        text-align: center;
    }
    
    .divider {
        display: none;
    }
    
    /* Gallery Section */
    .slide-unique {
        min-width: 50%;
    }
    
    .slide-unique img {
        height: 380px;
    }
    
    /* Award Section */
    .award-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .award-left, .award-right {
        width: 100%;
    }
    
    .award-desc {
        width: 100%;
    }
    
    .award-item {
        font-size: 22px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Floating Elements */
    .get-quote {
        font-size: 16px;
        padding: 10px 8px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 30px;
    }
    
    .whatsapp-btn img {
        width: 32px;
    }
}

/* Small Tablet: 577px to 767px */
@media (max-width: 767px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .left-content h1, .right-content h2, .right-content-why h1, .apl-main-title {
        font-size: 36px;
    }
    
    .gallery-title-unique, .section-title, .award-title {
        font-size: 36px;
    }
    
    .apl-heading {
        font-size: 28px;
    }
    
    .unique-preview h3 {
        font-size: 24px;
        margin-top: -100px;
    }
    
    .award-image-box {
        width: 350px;
        height: 350px;
    }
    
    .slide-unique img {
        height: 320px;
    }
    
    .stat-item {
        width: 100%;
    }
}

/* Mobile: 481px to 576px */
@media (max-width: 576px) {
    /* General */
    h1, h2, h3 {
        word-break: break-word;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
    
    .nav-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .nav-buttons button {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .indicators {
        bottom: 15px;
    }
    
    /* Main Section */
    .section-wrapper {
        padding: 40px 15px;
    }
    
    .left-content h3 {
        font-size: 28px;
    }
    
    .left-content h1, .right-content h2, .right-content-why h1 {
        font-size: 32px;
    }
    
    .right-content p {
        font-size: 16px;
    }
    
    /* Services Section */
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-number {
        font-size: 1.5rem;
    }
    
    /* Products Section */
    .section-header h1 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .logo {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .products-section {
        padding: 30px 15px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* Image Gallery */
    .image-gallery {
        gap: 20px;
    }
    
    .image-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .image-wrapper {
        height: 220px;
    }
    
    /* Unique Every Space Section */
    .unique-header h2 {
        font-size: 28px;
    }
    
    .unique-header h2 span {
        font-size: 20px;
    }
    
    .unique-tabs-switch {
        width: 100%;
        justify-content: center;
    }
    
    .unique-preview img {
        height: 300px;
    }
    
    .unique-preview h3 {
        font-size: 22px;
        margin-top: -80px;
    }
    
    .unique-preview p {
        font-size: 14px;
    }
    
    /* APL Features Section */
    .apl-features-container {
        padding: 0 20px;
    }
    
    .apl-main-title {
        font-size: 32px;
    }
    
    .apl-description {
        font-size: 16px;
    }
    
    .apl-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Enquiry Section */
    .enquiry-section {
        padding: 30px 20px;
    }
    
    .form-box {
        padding: 25px;
    }
    
    .form-box h2 {
        font-size: 26px;
    }
    
    form .row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Stats Row */
    .stats-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stat-item {
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }
    
    .stat-item h2 {
        font-size: 32px;
    }
    
    .stat-item p {
        font-size: 16px;
    }
    
    /* Gallery Section */
    .slide-unique {
        min-width: 100%;
    }
    
    .gallery-title-unique {
        font-size: 32px;
    }
    
    /* Award Section */
    .award-title {
        font-size: 32px;
    }
    
    .award-item {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .award-image-box {
        width: 300px;
        height: 300px;
    }
    
    /* Blogs Section */
    .section-title {
        font-size: 32px;
    }
    
    .blogs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Content Section */
    .apl-heading {
        font-size: 24px;
    }
    
    .apl-text,
    .apl-list li {
        font-size: 15px;
    }
    
    .apl-section {
        padding: 40px 6%;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Floating Elements */
    .get-quote {
        font-size: 14px;
        padding: 8px 6px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn img {
        width: 28px;
    }
}

/* Small Mobile: Up to 480px */
@media (max-width: 480px) {
    .hero-slider {
        height: 40vh;
        min-height: 250px;
    }
    
    .left-content h1, .right-content h2, .right-content-why h1, .apl-main-title {
        font-size: 28px;
    }
    
    .gallery-title-unique, .section-title, .award-title {
        font-size: 28px;
    }
    
    .apl-heading {
        font-size: 22px;
    }
    
    .unique-preview h3 {
        font-size: 20px;
        margin-top: -60px;
        margin-left: 15px;
    }
    
    .unique-preview p {
        margin-left: 15px;
        font-size: 13px;
    }
    
    .form-box h2 {
        font-size: 24px;
    }
    
    .stat-item h2 {
        font-size: 28px;
    }
    
    .award-image-box {
        width: 250px;
        height: 250px;
    }
    
    .get-quote {
        display: none; /* Hide on very small screens */
    }
}

/* Extra Small Mobile: Up to 360px */
@media (max-width: 360px) {
    .hero-slider {
        height: 35vh;
        min-height: 200px;
    }
    
    .left-content h1, .right-content h2, .right-content-why h1 {
        font-size: 24px;
    }
    
    .left-content h3 {
        font-size: 22px;
    }
    
    .right-content p {
        font-size: 14px;
    }
    
    .gallery-title-unique, .section-title, .award-title {
        font-size: 24px;
    }
    
    .unique-header h2 {
        font-size: 24px;
    }
    
    .unique-header h2 span {
        font-size: 18px;
    }
    
    .unique-tabs-switch button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .form-box h2 {
        font-size: 22px;
    }
    
    .submit-btn {
        font-size: 18px;
        padding: 14px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn img {
        width: 24px;
    }
}

/* Print Styles */
@media print {
    .get-quote,
    .whatsapp-btn,
    .menu-btn,
    .nav-buttons,
    .indicators,
    .submit-btn,
    .cta-button,
    .demo-button,
    #viewAllBtn {
        display: none !important;
    }
    
    .header-container {
        position: static;
        box-shadow: none;
    }
    
    .top-section {
        border-bottom: 1px solid #000;
    }
    
    .center-teal {
        background: #fff;
        color: #000;
        border: 1px solid #000;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



