:root {
    --primary-color: #90030f;
    --secondary-color: #f5be19;
    --accent-color: #f5be19;
    --text-dark: #90030f;
    --text-light: #727272;
    --bg-light: #fff9f0;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #f5be19 0%, #90030f 100%);
    --gradient-secondary: linear-gradient(135deg, #f5be19 0%, #e67e22 100%);
}

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

section {
    margin: 0;
    display: block;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-primary i {
    margin-right: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
} */

.btn-secondary {
    background: transparent;
    color: #f5be19;
    border: 2px solid var(--primary-color);
}

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

.btn-full {
    width: 100%;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('https://images.unsplash.com/photo-1612438137269-70c848e102e1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    margin-bottom: 0;
}

.hero-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.light-beam {
    position: absolute;
    background: radial-gradient(circle, 
        rgba(245, 190, 25, 0.4) 0%,
        rgba(245, 190, 25, 0.2) 50%,
        rgba(144, 3, 15, 0.1) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(245, 190, 25, 0.3),
        0 0 40px rgba(245, 190, 25, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.light-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 15%;
    animation: bubbleFloat1 6s ease-in-out infinite;
}

.light-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 25%;
    animation: bubbleFloat2 8s ease-in-out infinite reverse;
}

.light-3 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 35%;
    animation: bubbleFloat3 7s ease-in-out infinite;
}

.floating-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, 
        rgba(245, 190, 25, 0.9) 0%,
        rgba(245, 190, 25, 0.6) 50%,
        rgba(245, 190, 25, 0.2) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(245, 190, 25, 0.8),
        0 0 40px rgba(245, 190, 25, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.4);
}

.particle-1 {
    top: 25%;
    left: 20%;
    animation: bubbleRise1 8s ease-in-out infinite;
}

.particle-2 {
    top: 75%;
    left: 75%;
    animation: bubbleRise2 10s ease-in-out infinite reverse;
}

.particle-3 {
    top: 45%;
    right: 15%;
    animation: bubbleRise3 9s ease-in-out infinite;
}

.particle-4 {
    bottom: 35%;
    left: 55%;
    animation: bubbleRise1 11s ease-in-out infinite reverse;
}

.particle-5 {
    top: 20%;
    right: 30%;
    animation: bubbleRise2 7s ease-in-out infinite;
}

@keyframes bubbleFloat1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.7; 
    }
    25% { 
        transform: translate(20px, -30px) scale(1.2); 
        opacity: 1; 
    }
    50% { 
        transform: translate(-15px, -60px) scale(0.8); 
        opacity: 0.5; 
    }
    75% { 
        transform: translate(25px, -40px) scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes bubbleFloat2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6; 
    }
    33% { 
        transform: translate(-20px, -25px) scale(1.3); 
        opacity: 0.9; 
    }
    66% { 
        transform: translate(30px, -45px) scale(0.7); 
        opacity: 0.4; 
    }
}

@keyframes bubbleFloat3 {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translate(15px, -50px) scale(1.4); 
        opacity: 0.3; 
    }
}

@keyframes bubbleRise1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.8; 
    }
    25% { 
        transform: translateY(-30px) translateX(15px) scale(1.2); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-60px) translateX(-10px) scale(0.8); 
        opacity: 0.6; 
    }
    75% { 
        transform: translateY(-40px) translateX(20px) scale(1.1); 
        opacity: 0.9; 
    }
}

@keyframes bubbleRise2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.7; 
    }
    33% { 
        transform: translateY(-25px) translateX(-15px) scale(1.3); 
        opacity: 0.9; 
    }
    66% { 
        transform: translateY(-50px) translateX(12px) scale(0.9); 
        opacity: 0.5; 
    }
}

@keyframes bubbleRise3 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-35px) translateX(-18px) scale(1.4); 
        opacity: 1; 
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.text-primary {
    color: #de0517;
}

.text-secondary {
    color: #f5be19;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.form-group {
    margin-bottom: 0.8rem;
    position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    color: grey;
}

.services {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    clear: both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.3;
}

.service-card p {
    color: grey;
}

.projects {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    clear: both;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.project-card p {
    color: grey;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

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

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    clear: both;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.member-info .title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.member-info .experience {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    clear: both;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.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;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.modal-info p {
    margin: 0;
    opacity: 0.9;
}

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

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

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Director's Message Section */
.director-message {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    clear: both;
}

.director-message .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.director-message .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.company-tagline h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, rgba(240, 190, 25, 0.1), rgba(144, 3, 15, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    display: inline-block;
    margin-top: 1rem;
}

.directors-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.directors-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.director-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(240, 190, 25, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.director-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.director-card .director-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(240, 190, 25, 0.1);
}

.director-card .director-header h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.director-card .director-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.director-card .director-qualification {
    color: var(--text-dark);
    font-size: 1rem;
}

.director-card .director-content {
    text-align: left;
}

.director-card .director-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.directors-summary {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(240, 190, 25, 0.1);
}


.expertise-highlights {
    background: rgba(240, 190, 25, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border-left: 5px solid var(--secondary-color);
}

.expertise-highlights h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-highlights ul {
    list-style: none;
    padding: 0;
}

.expertise-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.expertise-highlights li::before {
    content: '▶';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.8rem;
}

.company-mission {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(144, 3, 15, 0.05), rgba(240, 190, 25, 0.05));
    border-radius: 25px;
    position: relative;
}

.company-mission::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.company-mission blockquote {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.company-mission blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-family: serif;
}

.company-mission blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-family: serif;
}

.closing-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(240, 190, 25, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(240, 190, 25, 0.3);
}

.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    clear: both;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5be19 0%, #90030f 100%);
    position: relative;
    clear: both;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.1) 100%);
    animation: gradientMove 15s ease-in-out infinite;
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

@keyframes gradientMove {
    0% {
        transform: translateX(-25%) translateY(-25%) rotate(0deg);
    }
    25% {
        transform: translateX(-28%) translateY(-28%) rotate(90deg);
    }
    50% {
        transform: translateX(-30%) translateY(-25%) rotate(180deg);
    }
    75% {
        transform: translateX(-28%) translateY(-30%) rotate(270deg);
    }
    100% {
        transform: translateX(-25%) translateY(-25%) rotate(360deg);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 190, 25, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e8ecf0;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%),
                url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 37, 47, 0.9);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 3px;
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Projects Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

/* Director's Message Responsive Styles */
@media (max-width: 1024px) {
    .director-content {
        max-width: 900px;
        padding: 2.5rem;
    }
    
    .director-title h2 {
        font-size: 2.2rem;
    }
    
    .company-mission blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .director-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .director-title h2 {
        font-size: 1.8rem;
    }
    
    .director-name h3 {
        font-size: 1.5rem;
    }
    
    .company-tagline h4 {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    
    .company-mission {
        padding: 1.5rem;
    }
    
    .company-mission blockquote {
        font-size: 1.1rem;
    }
    
    .company-mission blockquote::before,
    .company-mission blockquote::after {
        font-size: 2rem;
    }
    
    .closing-message {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .director-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 20px;
    }
    
    .director-title h2 {
        font-size: 1.5rem;
    }
    
    .director-name h3 {
        font-size: 1.3rem;
    }
    
    .director-name p {
        font-size: 1rem;
    }
    
    .company-tagline h4 {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .expertise-highlights {
        padding: 1rem;
    }
    
    .expertise-highlights h4 {
        font-size: 1.1rem;
    }
    
    .company-mission {
        padding: 1rem;
    }
    
    .company-mission blockquote {
        font-size: 1rem;
    }
    
    .closing-message {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    /* Header and Navigation Optimization */
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo span {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--primary-color);
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(240, 190, 25, 0.1);
        transform: translateX(10px);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section Optimization */
    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-stats {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 10px;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Services Section Optimization */
    .services {
        padding: 60px 0;
    }
    
    .section-header {
        padding: 0 20px;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
        text-align: center;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Projects Section Optimization */
    .projects {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 20px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .project-card {
        border-radius: 15px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Gallery Section Optimization */
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-item {
        height: 250px;
        border-radius: 15px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Team Section Optimization */
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .member-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .member-info .title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .member-info .experience {
        font-size: 0.9rem;
    }
    
    /* Director's Message Section Optimization */
    .director-message {
        padding: 60px 0;
    }
    
    .director-content {
        max-width: 100%;
        margin: 0 20px;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .director-header {
        margin-bottom: 2rem;
    }
    
    .director-title h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .director-name h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .director-name p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .company-tagline h4 {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        line-height: 1.3;
    }
    
    
    .expertise-highlights {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .expertise-highlights h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .expertise-highlights li {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0.4rem 0;
        padding-left: 1.2rem;
    }
    
    .company-mission {
        margin: 2rem 0;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .company-mission blockquote {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .company-mission blockquote::before,
    .company-mission blockquote::after {
        font-size: 2rem;
    }
    
    .closing-message {
        font-size: 1rem;
        padding: 1.2rem;
        line-height: 1.5;
        border-radius: 12px;
    }
    
    /* Testimonials Section Optimization */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1rem;
    }
    
    .testimonial:before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .testimonial-content {
        margin-bottom: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        font-style: italic;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
        color: var(--text-light);
    }
    
    /* Contact Section Optimization */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1rem;
        margin-bottom: 1rem;
        background: rgba(240, 190, 25, 0.05);
        border-radius: 12px;
        border-left: 4px solid var(--secondary-color);
    }
    
    .contact-item i {
        font-size: 1.2rem;
        color: var(--secondary-color);
        margin-right: 1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: var(--primary-color);
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: var(--primary-color);
    }
    
    .form-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-light);
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: var(--primary-color);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
        border: 2px solid rgba(240, 190, 25, 0.3);
        border-radius: 8px;
        background: var(--bg-white);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(240, 190, 25, 0.1);
    }
    
    .btn-full {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    /* Footer Optimization */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-image {
        width: 30px;
        height: 30px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(144, 3, 15, 0.2);
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

.section-header {
    opacity: 1;
}

@media (max-width: 480px) {
    /* Extra Small Screen Optimizations */
    
    /* Base Layout */
    .container {
        padding: 0 15px;
    }
    
    /* Header Optimization */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.4rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo span {
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 50px;
        min-height: 75vh;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 5px;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    /* Section Headers */
    .section-header {
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    /* Services Section */
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 15px;
        max-width: 400px;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
        min-height: 180px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Projects and Gallery */
    .projects, .gallery {
        padding: 50px 0;
    }
    
    .projects-grid, .gallery-grid {
        padding: 0 15px;
        max-width: 400px;
        gap: 1.2rem;
    }
    
    .project-image, .gallery-item {
        height: 180px;
    }
    
    .project-info {
        padding: 1.2rem;
    }
    
    .project-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .project-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Team Section */
    .team {
        padding: 50px 0;
    }
    
    .team-grid {
        padding: 0 15px;
        max-width: 400px;
        gap: 1.2rem;
    }
    
    .team-member {
        padding: 1.5rem 1.2rem;
    }
    
    .member-image {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.2rem;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .member-info .title {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .member-info .experience {
        font-size: 0.85rem;
    }
    
    /* Director's Message */
    .director-message {
        padding: 50px 0;
    }
    
    .director-content {
        margin: 0 15px;
        padding: 1.5rem 1.2rem;
        border-radius: 15px;
    }
    
    .director-header {
        margin-bottom: 1.5rem;
    }
    
    .director-title h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .director-name h3 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
    }
    
    .director-name p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .company-tagline h4 {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        line-height: 1.2;
    }
    
    
    .expertise-highlights {
        padding: 1.2rem;
        margin: 1.2rem 0;
        border-radius: 12px;
    }
    
    .expertise-highlights h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .expertise-highlights li {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0.3rem 0;
        padding-left: 1rem;
    }
    
    .company-mission {
        margin: 1.5rem 0;
        padding: 1.2rem;
        border-radius: 15px;
    }
    
    .company-mission blockquote {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .company-mission blockquote::before,
    .company-mission blockquote::after {
        font-size: 1.8rem;
    }
    
    .closing-message {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.4;
        border-radius: 10px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        padding: 0 15px;
        max-width: 400px;
        gap: 1.2rem;
    }
    
    .testimonial {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .testimonial:before {
        font-size: 2.5rem;
        top: -3px;
        left: 12px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 50px 0;
    }
    
    .contact-content {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        border-radius: 10px;
    }
    
    .contact-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .btn-full {
        padding: 12px;
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.2rem;
    }
    
    .footer-logo-image {
        width: 25px;
        height: 25px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Mission & Values Section */
.mission-values {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.mission-values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.mission-section,
.values-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(240, 190, 25, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mission-section:hover,
.values-section:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.mission-section .section-header,
.values-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.mission-section .section-header h2,
.values-section .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.mission-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.mission-item p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.values-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Mission & Values */
@media (max-width: 1024px) {
    .mission-values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
}

/* Director Message Responsive Design */
@media (max-width: 768px) {
    .director-message {
        padding: 60px 0;
    }
    
    .director-message .section-header h2 {
        font-size: 2rem;
    }
    
    .company-tagline h4 {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .directors-intro {
        margin-bottom: 2rem;
    }
    
    .directors-intro p {
        font-size: 1rem;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .director-card {
        padding: 2rem;
    }
    
    .director-card .director-header h3 {
        font-size: 1.4rem;
    }
    
    .director-card .director-title {
        font-size: 1rem;
    }
    
    .directors-summary {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .director-message {
        padding: 50px 0;
    }
    
    .director-message .section-header h2 {
        font-size: 1.8rem;
    }
    
    .company-tagline h4 {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .directors-grid {
        gap: 1rem;
    }
    
    .director-card {
        padding: 1.5rem;
    }
    
    .director-card .director-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .director-card .director-header h3 {
        font-size: 1.3rem;
    }
    
    .directors-summary {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-values {
        padding: 60px 0;
    }
    
    .mission-section .section-header h2,
    .values-section .section-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .mission-section .section-header,
    .values-section .section-header {
        text-align: center;
    }
    
    .mission-item {
        padding: 1.2rem;
    }
    
    .mission-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .value-item {
        padding: 1.2rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mission-values {
        padding: 50px 0;
    }
    
    .mission-section .section-header h2,
    .values-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .mission-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .mission-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        align-self: flex-start;
    }
    
    .mission-item p {
        font-size: 0.9rem;
    }
    
    .value-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .value-content h3 {
        font-size: 1.1rem;
    }
    
    .value-content p {
        font-size: 0.9rem;
    }
}