/* Careers Page Styles - Dark Mode */

/* Variables */
:root {
    --dark-bg: #121212;
    --darker-bg: #1a1a1a;
    --primary-color: #48bb70;
    --primary-light: #6fd996;
    --primary-dark: #297c4a;
    --text-color: #e7e6e6;
    --text-dark: #a0a0a0;
    --header-color: #ffffff;
    --card-bg: #1e1e1e;
    --card-hover: #262626;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--header-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header Styles */
.careers-header {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.9)), url('assets/careers-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fixed-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: var(--transition);
}

.fixed-logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--primary-color);
    background-color: rgba(72, 187, 112, 0.1);
}

/* Hero Section */
.hero-section {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: #fff;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--header-color);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Why Join Section */
.why-join-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(72, 187, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Roles Section */
.roles-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
}

.roles-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.role-card {
    display: flex;
    gap: 3rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.role-image {
    flex: 1;
    max-width: 350px;
    overflow: hidden;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.role-content {
    flex: 2;
    padding: 2.5rem;
}

.role-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.role-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.role-requirements {
    list-style: none;
    margin-bottom: 1.5rem;
}

.role-requirements li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.role-requirements li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.training-note {
    background-color: rgba(72, 187, 112, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.testimonial-quote {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.team-member-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.team-member-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-member-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.team-member-info p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
}

/* Openings Section */
.openings-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
}

.job-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    flex: 1;
}

.job-type {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.full-time {
    background-color: rgba(72, 187, 112, 0.15);
    color: var(--primary-color);
}

.part-time {
    background-color: rgba(108, 99, 255, 0.15);
    color: #6c63ff;
}

.flexible {
    background-color: rgba(255, 159, 67, 0.15);
    color: #ff9f43;
}

.job-details {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.1);
}

.job-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-details i {
    color: var(--primary-color);
}

.job-description {
    padding: 1.5rem;
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.job-apply-btn {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.job-apply-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.all-positions {
    text-align: center;
    margin-top: 2rem;
}

.all-positions p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Application Process Section */
.application-section {
    background-color: var(--dark-bg);
    padding: 5rem 0;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(72, 187, 112, 0.2);
    top: 70px;
    bottom: -30px;
    left: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Application Form Section */
.application-form-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
}

.application-container {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.application-info {
    flex: 1;
}

.application-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.application-info p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.application-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.application-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(72, 187, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.application-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.application-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.application-form-container {
    flex: 1;
}

form {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-response {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.form-response.success {
    background-color: rgba(72, 187, 112, 0.1);
    color: var(--primary-color);
}

.form-response.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff5757;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background-color: transparent;
    border: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    appearance: none;
    background-color: var(--card-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2348bb70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    color: var(--text-color);
    border: 1px solid #333;
    border-radius: 5px;
}

.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group select option {
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 0.5rem;
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

/* Footer Section - Modern Design */
.footer-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #18072e 50%, #0f2419 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(72, 187, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(47, 118, 84, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Company Info Section */
.footer-company {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 16px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Navigation Sections */
.footer-nav h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    position: relative;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav ul li a {
    color: var(--text-color);
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    opacity: 0.8;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(10px);
}

.footer-nav ul li a:hover::before {
    width: 8px;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(72, 187, 112, 0.3);
}

.social-icon i {
    font-size: 1rem;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
}

.footer-designed-by {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
}

.hamza-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    transition: var(--transition);
}

.hamza-logo:hover {
    background: rgba(72, 187, 112, 0.2);
    transform: scale(1.05);
}

.hamza-logo img {
    width: 100px !important;
    height: 100px !important;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.hamza-logo:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
}

.hamza-logo span {
    font-weight: 500;
    font-size: 0.75rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .role-card {
        flex-direction: column;
    }
    
    .role-image {
        max-width: 100%;
    }
    
    .application-container {
        flex-direction: column;
    }
    
    .application-info {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-nav:last-child {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        right: 0;
        background-color: var(--darker-bg);
        width: 100%;
        padding: 1rem 0;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 0.5rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .footer-company {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-nav {
        width: 100%;
    }
    
    .footer-nav h3 {
        margin-bottom: 15px;
    }
    
    .footer-nav h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav ul li a::before {
        display: none;
    }
    
    .footer-nav ul li a:hover {
        transform: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .footer-designed-by {
        order: 2;
        margin-top: 10px;
    }
    
    .footer-copyright {
        order: 1;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .application-feature {
        flex-direction: column;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .application-feature h4 {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        gap: 25px !important;
    }
    
    .footer-logo img {
        width: 140px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-contact-item {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .footer-nav h3 {
        font-size: 1rem;
    }
    
    .footer-nav ul li a {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 0.9rem;
    }
    
    .hamza-logo img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Designer credit styles */
.designer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.designer-text {
    font-size: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0;
}

.designer-logo {
    width: 120px;
}

/* Footer social container styling */
.footer-social-container {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    gap: 15px;
}

.footer-social-container h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Additional responsive styles for designer credit */
@media screen and (max-width: 480px) {
    .designer-credit {
        margin-top: 1.2rem;
        gap: 5px;
    }

    .designer-text {
        font-size: 0.45rem;
    }

    .designer-logo {
        width: 45px;
    }
} 