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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Navigation - Enhanced */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #1e88e5 100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.logo-svg {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.footer-logo .logo-svg {
    height: 45px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #1e88e5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Enhanced */
.hero {
    height: 100vh;
    display: flex;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 3;
    position: relative;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ff6b35;
    font-weight: 700;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #1e88e5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #f0f0f0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #1e88e5);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-current {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
}

.page-separator {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.page-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 107, 53, 0.7);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.building-bg {
    width: 100%;
    height: 100%;
    background: url('assets/4.jpeg') center/cover;
    transform: perspective(1000px) rotateY(-10deg) scale(1.1);
    transition: transform 0.3s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), transparent 50%);
    z-index: 2;
}

.hero-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 4;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: #ff6b35;
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    color: white;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, white, transparent);
    animation: scroll-bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Hero Section - Alternative Styles */
.hero-alt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-alt .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-alt .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-alt .hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-alt .highlight {
    color: #ffdd57;
}

.hero-alt .hero-pagination {
    margin-top: 2rem;
}

.hero-alt .page-current {
    font-size: 1.5rem;
}

.hero-alt .page-dots {
    gap: 15px;
}

.hero-alt .dot {
    width: 12px;
    height: 12px;
}

.hero-alt .dot.active {
    background: #ffdd57;
}

.hero-alt .hero-image {
    height: 400px;
}

.hero-alt .building-bg {
    transform: none;
}

/* About Section - Template Style */
.about-section {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-number-large {
    position: absolute;
    left: -50px;
    top: -20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    line-height: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #333;
}

.about-title strong {
    font-weight: 700;
    color: #2c3e50;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.about-features i {
    color: #ff6b35;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-gallery {
    flex: 1;
    position: relative;
    height: 500px;
}

.about-image-main {
    position: relative;
    width: 70%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.8), rgba(30, 136, 229, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main:hover .image-overlay {
    opacity: 1;
}

.view-more-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-image-main:hover .view-more-btn {
    transform: translateY(0);
}

.about-image-grid {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}

.about-image-small {
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-image-small:hover img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #ff6b35;
    width: 20px;
    border-radius: 10px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-number {
    position: absolute;
    left: 20px;
    top: 50px;
    font-size: 8rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.products-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.products-text {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title strong {
    font-weight: bold;
}

.section-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.products-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.main {
    grid-row: span 2;
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.electrical-work {
    background: url('assets/1.jpeg') center/cover,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.air-conditioning {
    background: url('assets/2.jpeg') center/cover,
                linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.installation {
    background: url('assets/3.jpeg') center/cover,
                linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.view-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: #ff6b35;
    color: white;
}

/* Business Section */
.business {
    padding: 100px 0;
    background: white;
}

.section-center-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 80px;
    color: #333;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.business-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.card-icon i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #1e88e5 100%);
    color: white;
    border-radius: 20px;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.business-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.business-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e55529;
}

/* Vision & Mission Section - Template Style */
.vision-mission-section {
    background: #f5f5f5;
    padding: 120px 0;
    position: relative;
}

.vision-mission-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.vision-mission-images {
    flex: 1;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}

.vision-mission-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.vision-mission-image.main {
    grid-row: 1;
}

.vision-mission-image.secondary {
    grid-row: 2;
}

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

.image-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #1e88e5);
}

.vision-mission-content {
    flex: 1;
    background: white;
    padding: 80px 60px;
    position: relative;
    display: flex;
    align-items: center;
}

.section-number-vertical {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.vision-mission-text {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vision-mission-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #333;
}

.vision-mission-title strong {
    font-weight: 700;
    color: #2c3e50;
}

.vision-block,
.mission-block {
    margin-bottom: 2.5rem;
}

.vision-block h3,
.mission-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.vision-block h3 i,
.mission-block h3 i {
    font-size: 1.1rem;
}

.vision-block p,
.mission-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-left: 30px;
}

.values-block {
    margin: 2.5rem 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.values-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
    font-style: italic;
}

.vision-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.vision-cta-link:hover {
    gap: 15px;
    color: #e55529;
}

.vision-cta-link i {
    transition: transform 0.3s ease;
}

.vision-cta-link:hover i {
    transform: translateX(5px);
}

/* Different Section */
.different {
    background: #f8f9fa;
    padding: 100px 0;
}

.different-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.different-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.city-bg {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: url('assets/5.jpeg') center/cover,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.different-text {
    flex: 1;
    position: relative;
}

.different-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.different-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.view-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.view-more-link:hover {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

.business-img {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.city-img {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.building-img {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.service-content {
    padding: 20px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.service-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.expand-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

/* News Section */
.news {
    background: linear-gradient(135deg, #ff6b35 0%, #1e88e5 100%);
    padding: 100px 0;
    color: white;
}

.news-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.news-left {
    flex: 1;
}

.news-left h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.news-left p {
    opacity: 0.9;
}

.news-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.news-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.news-item h3 {
    margin: 10px 0 20px;
    font-weight: 400;
}

.news-pagination {
    display: flex;
    gap: 10px;
}

.news-pagination .dot {
    background: rgba(255, 255, 255, 0.3);
}

.news-pagination .dot.active {
    background: white;
}

/* Vision & Mission Styles */
.vision-mission {
    margin: 2rem 0;
}

.vision-block, .mission-block {
    margin-bottom: 2rem;
}

.vision-block h3, .mission-block h3 {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.vision-block p, .mission-block p {
    line-height: 1.6;
    color: #666;
}

/* Detailed Services Section */
.detailed-services {
    padding: 100px 0;
    background: white;
    position: relative;
}

.detailed-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.detailed-services .service-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: auto;
}

.detailed-services .service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.detailed-services .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    margin-bottom: 12px;
    color: #666;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.team-info > p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 25px;
    height: 25px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.team-image {
    flex: 1;
    height: 400px;
}

.team-bg {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: url('assets/6.jpeg') center/cover,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-info > p {
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-text p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35, #1e88e5);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: #ff6b35;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-contact p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #ccc;
}

.footer-contact strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

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

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-certifications span:not(:contains('•')) {
    padding: 5px 10px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #ff6b35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .building-bg {
        transform: none;
    }
    
    .hero-nav {
        right: 15px;
        gap: 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .products-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .products-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .product-card.main {
        grid-row: span 1;
    }
    
    .section-number {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-center-title {
        font-size: 2rem;
    }
    
    .different-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .different-image {
        height: 300px;
    }
    
    .news-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .business-cards {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-image {
        height: 300px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .detailed-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section Mobile */
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .section-number-large {
        display: none;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-gallery {
        height: 400px;
    }
    
    .about-image-grid {
        position: static;
        transform: none;
        flex-direction: row;
        width: 100%;
        margin-top: 20px;
    }
    
    /* Vision Mission Mobile */
    .vision-mission-wrapper {
        flex-direction: column;
    }
    
    .vision-mission-images {
        height: 400px;
        grid-template-rows: 1fr 1fr;
    }
    
    .vision-mission-content {
        padding: 50px 30px;
    }
    
    .section-number-vertical {
        display: none;
    }
    
    .vision-mission-title {
        font-size: 2.2rem;
    }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 80px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-center-title {
        font-size: 1.5rem;
    }
    
    .news-left h2 {
        font-size: 2rem;
    }
    
    .different-text h2 {
        font-size: 1.8rem;
    }
}