main {
    width: 100%;
    padding: 0px 10px;
    position: relative;
    z-index: 1;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 500px; /* Match your existing height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* Ensures video covers entire area without distortion */
}

/* Dark overlay for text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

/* Your existing content - ensure it sits above video */
.main_div {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main_div h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.aboutMain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #1a2639; /* Dark industrial blue */
    padding: 70px 10%;
    gap: 30px;
    border-top: 5px solid #ff6b35; /* Accent color */
    border-bottom: 5px solid #ff6b35;
}

.aboutEach {
    flex: 1 1 150px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.aboutEach::before,
.aboutEach::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.aboutEach::before {
    top: 10px;
    left: 10px;
    border-top: 2px solid #ff6b35;
    border-left: 2px solid #ff6b35;
}

.aboutEach::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid #ff6b35;
    border-right: 2px solid #ff6b35;
}

.aboutEach:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.aboutEach:hover::before,
.aboutEach:hover::after {
    width: 30px;
    height: 30px;
}

.aboutEach h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35; /* Industrial orange */
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.aboutEach p {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
}

/* Details Section */
.details {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Optional subtle industrial pattern */
.details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#2c3e50 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    pointer-events: none;
}

.detailsLeft {
    flex: 1.2;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.detailsLeft h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2639;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    line-height: 1.3;
}

/* Decorative underline for heading */
.detailsLeft h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa600);
    border-radius: 2px;
}

.detailsLeft p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: justify;
}

/* First letter styling */
.detailsLeft p::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b35;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    font-family: 'Times New Roman', serif;
}

/* Add a feature list */
.detailsLeft ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.detailsLeft ul li {
    flex: 1 1 calc(50% - 15px);
    padding: 12px 20px;
    background: white;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.detailsLeft ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.detailsLeft ul li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.detailsRight {
    flex: 0.8;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.detailsRight img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border: 5px solid white;
}

/* Image hover effect */
.detailsRight:hover img {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 107, 53, 0.3);
}

/* Decorative elements */
.detailsRight::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff6b35;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.detailsRight:hover::before {
    top: -15px;
    right: -15px;
    opacity: 0.5;
}

/* Add a stats badge */
.detailsRight .badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #ff6b35;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.detailsRight .badge span {
    font-size: 0.9rem;
    display: block;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .details {
        padding: 60px 5%;
        gap: 40px;
    }
    
    .detailsLeft h2 {
        font-size: 2rem;
    }
    
    .detailsLeft p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .details {
        flex-direction: column;
        padding: 50px 20px;
    }
    
    .detailsLeft {
        order: 1;
    }
    
    .detailsRight {
        order: 0;
    }
    
    .detailsLeft h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .detailsLeft h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .detailsLeft p {
        text-align: left;
    }
    
    .detailsLeft ul li {
        flex: 1 1 100%;
    }
    
    .detailsRight::before {
        display: none;
    }
    
    .detailsRight .badge {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .detailsLeft h2 {
        font-size: 1.5rem;
    }
    
    .detailsLeft p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .detailsRight img {
        border-radius: 15px;
    }
}


/* For tablets */
@media (max-width: 768px) {
    .aboutMain {
        padding: 50px 5%;
        gap: 20px;
    }
    
    .aboutEach {
        flex: 1 1 calc(50% - 20px);
        min-width: 140px;
    }
    
    .aboutEach h2 {
        font-size: 2.5rem;
    }
    
    .aboutEach p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .aboutMain {
        padding: 40px 20px;
        gap: 15px;
    }
    
    .aboutEach {
        flex: 1 1 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .aboutEach h2 {
        font-size: 2.2rem;
    }
}

/* Quick Contact Section */
.quick-contact {
    padding: 60px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.quick-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.quick-contact-left {
    flex: 1.5;
    min-width: 300px;
}

.quick-contact-left h2 {
    font-size: 2.2rem;
    color: #1a2639;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.quick-contact-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.quick-contact-left > p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Call Form */
.call-form {
    width: 100%;
}

.call-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.call-form .form-group {
    flex: 1;
    margin-bottom: 15px;
}

.call-form input,
.call-form select,
.call-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.call-form input:focus,
.call-form select:focus,
.call-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.call-form textarea {
    resize: vertical;
    min-height: 60px;
}

.form-footer {
    margin-top: 20px;
}

.call-submit {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.call-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 12px;
    text-align: center;
}

/* Right Side */
.quick-contact-right {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-badge {
    background: linear-gradient(135deg, #1a2639, #2c3e50);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
    color: #ff6b35;
}

.badge-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.quick-links h3 {
    font-size: 1.3rem;
    color: #1a2639;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e2e8f0;
}

.quick-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateX(5px);
    border-color: #ff6b35;
}

.quick-link span {
    font-size: 1.2rem;
}

.contact-page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-page-link:hover {
    background: #e85a2a;
    transform: scale(1.02);
}

.contact-page-link span {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.contact-page-link:hover span {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
    .quick-contact {
        padding: 40px 5%;
    }
    
    .quick-contact-container {
        padding: 30px;
    }
    
    .quick-contact-left h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .quick-contact-container {
        flex-direction: column;
        padding: 25px;
    }
    
    .call-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .quick-contact-right {
        order: -1;
    }
    
    .contact-badge {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quick-contact-left h2 {
        font-size: 1.5rem;
    }
    
    .call-submit {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 80px 10%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a2639;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: #1a2639;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 10%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #1a2639;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa600);
    border-radius: 2px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.gallery-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-footer {
    text-align: center;
    margin-top: 50px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a2639, #2c3e50);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-button:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.gallery-button span {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.gallery-button:hover span {
    transform: translateX(5px);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #ff6b35;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.7);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: #ff6b35;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid #ff6b35;
}

/* Responsive */
@media (max-width: 968px) {
    .gallery-preview {
        padding: 60px 5%;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}