
.contact-section {
    max-width: 1100px;
    height: 100%;
    margin: 2rem auto;
    display: flex;
    gap: 30px;
    padding: 20px;
}

.form-container {
    flex: 2;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: #002b5c;
    margin-bottom: 10px;
}

.form-container p {
    color: #444;
    margin-bottom: 20px;
}

.row {
    display: flex;
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 13px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #002b5c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #004b9a;
}

/* Right Side Box */
.contact-info {
    flex: 1;
    height: 70%;
    background: #ffa200;
    padding: 30px;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-top: 0;
    font-size: 22px;
}

.contact-btn {
    display: block;
    margin-top: 20px;
    padding: 12px;
    background: #002b5c;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.contact-btn:hover {
    background: #004b9a;
}

 .overview-section {
            background-color: transparent;
            padding: 0;
            position: absolute;
            z-index: 10;
            right: 80px;
            top: -55px;
            width: auto;
            height: 15rem;
        }

        .overview-box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            background-color: #ffa200;
            padding: 20px 25px;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            width: 300px;
            
        }

        .metric-card {
            text-align: center;
            color: white;
        }

        .metric-number {
            font-size: 30px;
            font-weight: 700;
            color: #002b5c;
            margin-bottom: 5px;
        }

        .metric-label {
            font-size: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Clients Section Styles */
        .clients-section {
          
            position: relative;
        }

        .clients-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .clients-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: #002b5c;
            margin-bottom: 20px;
        }

        .clients-content p {
            color: #002b5c;
            line-height: 1.8;
            font-size: 15px;
        }

        .clients-content .accent-line {
            width: 60px;
            height: 3px;
            background-color: #ff6b35;
            margin-bottom: 30px;
        }

        .clients-logos {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            width: 200px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .client-logo:hover {
            opacity: 1;
        }

        .client-logo img {
            max-width: 100%;
            height: auto;
        }
          /* Gallery Section Styles */
            .gallery-section {
           background-color: #f8f9fa;
            padding: 80px 20px;
        }

        .gallerycontainer {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .gallery-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #002b5c;
            margin-bottom: 15px;
        }

        .gallery-header p {
            color: #999;
            font-size: 15px;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
           background: none;
            border: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover,
        .filter-btn.active {
           color: #1a1a1a;
        }

        .filter-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #ff6b35;
        }

        .filter-icon {
            width: 20px;
            height: 20px;
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            position: relative;
        }

        .gallery-item {
           position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            height: 200px;
            opacity: 1;
            transition: opacity 0.4s ease, transform 0.4s ease;
            
        }

        .gallery-item.hidden-initially {
            display: none;
        }

        .gallery-item.hidden-item {
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
        }

        .gallery-grid:hover .gallery-item.hidden-item {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

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

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 58, 82, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

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

        .view-icon {
            font-size: 2.5em;
            filter: grayscale(1) brightness(2);
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            height: 400px;
        }

        .gallery-item:nth-child(7) {
            grid-column: span 2;
        }

        /* See More Overlay Badge */
        .see-more-overlay {
            position: relative;
        }

        .see-more-overlay img {
            filter: brightness(0.4);
        }

        .see-more-badge {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 10, 96, 0.55);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .see-more-overlay:hover .see-more-badge {
            background: rgba(255, 140, 66, 0.9);
        }

        .see-more-number {
            font-size: 3em;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }

        .see-more-label {
            font-size: 1.1em;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Remove old see more button styles */
        .see-more-container {
            display: none;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .image-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        .modal-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 10px;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { 
                transform: scale(0.8);
                opacity: 0;
            }
            to { 
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2em;
            cursor: pointer;
            padding: 10px;
            transition: all ease 0.3s;
            z-index: 10001;
        }

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

        .modal-nav {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            cursor: pointer;
            padding: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .modal-prev {
            left: 20px;
        }

        .modal-next {
            right: 20px;
        }

        .modal-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 1.1rem;
        }
@media (max-width: 1024px) {
           
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        @media (max-width: 768px) {
            


            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                height: 250px;
            }

            .gallery-item:nth-child(7) {
                grid-column: span 2;
            }

            .gallery-filters {
                gap: 1rem;
            }
        }

        @media (max-width: 350px) {
            

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

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(7) {
                grid-column: span 1;
                height: 200px;
            }

            .gallery-item {
                height: 200px;
            }
        }


        @media (max-width: 968px) {
            .overview-section {
                position: static;
                padding: 20px;
                height: auto;
            }

            .overview-box {
                grid-template-columns: repeat(4, 1fr);
                width: 100%;
              
                margin: 0 auto 20px;
                height: auto;
            }

            /* .clients-section {
                padding-top: 20px;
            }

            .clients-container {
                grid-template-columns: 1fr;
            }

            .clients-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        */
            
             .clients-container{
                display: none;
             }
        }

        @media (max-width: 640px) {
            .overview-box {
                grid-template-columns: (4,1fr);
                height: auto;
            }

            .clients-logos {
                grid-template-columns: 1fr;
            }

            
        }

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        height: auto;
    }

    .row {
        flex-direction: column;
    }
}

.toast {
    position: fixed;
    top: 25px;
    right: -300px;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.error {
    background: #e63946;
}

.toast.show {
    right: 20px;
}
