99% of storage used … If you run out, you can't create, edit, and upload files. Get 100 GB of storage for BDT 150.00 BDT 38.00/month for 2 months.
/* Header Mobile Menu */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle-btn div {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle-btn.active .i-one {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle-btn.active .i-two {
    opacity: 0;
}

.menu-toggle-btn.active .i-three {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Contact Section */
.section-padding {
    padding: 2rem 0;
    background: #000;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.contact-info {
    padding: 2rem;
    background: #1a1a1a;
    color: #fff;
}

.info-section {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    font-family: "ppneuemontreal_bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 1rem;
}

.desc {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.brand-image {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
}

/* Contact Form */
.contact-form {
    padding: 2rem;
    background: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background: #1a1a1a;
    border: 1px solid #fff; /* White border for input fields */
    color: #fff;
    font-size: clamp(14px, 2vw, 16px);
    padding: 0.75rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-control:focus {
    border-color: #b8860b; /* Golden border on focus */
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.7); /* Glowing effect */
    outline: none;
    background: #1a1a1a;
    color: #fff;
}

.form-control::placeholder {
    color: #ccc; /* Placeholder text color */
    opacity: 0.7;
}

.cta-btn {
    background: transparent;
    border: 2px solid #b8860b;
    color: #fff;
    font-size: clamp(12px, 1vw + 0.5rem, 16px);
    font-weight: 700;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: #b8860b;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 850px) {
    header {
        background: black;
        padding: 10px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        z-index: 999;
        transition: left 0.3s ease;
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 20px;
    }

    .nav-menu ul li {
        margin: 1rem 0;
    }

    .nav-menu ul li a {
        font-size: clamp(18px, 4vw, 24px);
    }

    .header-cta-btn {
        display: none;
    }

    .menu-toggle-btn {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .col-xl-6 {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .logo img {
        width: 120px;
    }

    .menu-toggle-btn {
        top: 20px;
        right: 20px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .form-control {
        font-size: 14px;
    }

    .cta-btn {
        padding: 0.5rem 1.5rem;
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    header {
        padding: 10px 15px;
    }

    .logo img {
        width: 100px;
    }

    .menu-toggle-btn {
        right: 15px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .desc {
        font-size: 14px;
    }
}