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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-tag {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0077be;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: #666;
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    max-height: 90px;
    width: auto;
    display: block;
}

.logo-icon {
    color: #0077be;
    font-size: 1.75rem;
}

.logo-text {
    color: #1a1a1a;
}

.highlight {
    color: #0077be;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0077be;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-content {
    display: none;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0077be;
    color: white;
}

.btn-primary:hover {
    background: #005f99;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: #1a1a1a;
}

.btn-outline-small {
    color: #0077be;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline-small i {
    transition: transform 0.3s;
}

.btn-outline-small:hover i {
    transform: translateX(5px);
}

.project-info a.btn-outline-small {
    margin-top: 1rem;
    display: inline-flex;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0077be;
    color: #0077be;
}

.btn-secondary:hover {
    background: #0077be;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #0077be;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #0077be;
    text-decoration: none;
    font-weight: 600;
}

.learn-more i {
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    background: #f0f4f8;
    padding: 3rem 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0077be;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 2.75rem;
    color: #0077be;
    margin-bottom: 1.25rem;
    display: block;
}

.stat-item {
    padding: 2rem 0;
}

/* Why Choose Us */
.why-choose {
    padding: 3rem 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #0077be;
}

.why-choose-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
    background: #000;
}

.why-choose-image img,
.why-choose-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-video {
    min-height: 100%;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-info {
    padding: 1.5rem;
    background: #f8f9fa;
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

/* Testimonial Preview */
.testimonial-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

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

.testimonial-item {
    height: 100%;
}

.testimonial-card-inner {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.testimonial-author-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077be 0%, #005f99 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-details strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-details span {
    display: block;
    color: #888;
    font-size: 0.8rem;
}

.read-more {
    display: inline-block;
    margin-top: 2rem;
    color: #0077be;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta {
    background: url('../images/banner/contact-banner.png') no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta .btn-primary {
    background: white;
    color: #0077be;
}

.cta .btn-primary:hover {
    background: #f0f4f8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 4rem 0 2rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-icon {
    color: #0077be;
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0077be;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #0077be;
    width: 16px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border-radius: 50%;
    color: #999;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: #0077be;
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Page Hero */
.page-hero {
    color: white;
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding: 0;
    text-align: center;
    margin-top: 60px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero .container {
    width: 100%;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.hero-about {
    background-image: url('../images/banner/about-us-banner.png');
}

.hero-services {
    background-image: url('../images/banner/service-banner-desktop.png');
}

.hero-projects {
    background-image: url('../images/banner/projects-main-bannner.png');
}

.hero-clientele {
    background-image: url('../images/banner/clientele-logo.png');
}

.hero-testimonials {
    background-image: url('../images/banner/testimonials.png');
}

.hero-contact {
    background-image: url('../images/banner/contact-banner.png');
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 70vh;
        background-size: cover;
        background-position: center;
    }

    .hero-about {
        background-image: url('../assets/images/banner/about-us-banner.png');
    }

    .hero-services {
        background-image: url('../images/banner/service-banner-desktop.png');
    }

    .hero-projects {
        background-image: url('../images/banner/projects-main-bannner.png');
    }
    .hero-clientele {
        background-image: url('../images/banner/clientele-logo.png');
    }

    .hero-testimonials {
        background-image: url('../images/banner/testimonials.png');
    }

    .hero-contact {
        background-image: url('../images/banner/contact-banner.png');
    }
}

@media (max-width: 768px) {
    .hero-about {
        background-image: url('../images/banner/banner-service-mobile.png');
    }

    .hero-services {
        background-image: url('../images/banner/banner-service-mobile.png');
    }

    .hero-projects {
        background-image: url('../images/banner/projects-main-bannner.png');
    }

    .hero-clientele {
        background-image: url('../images/banner/mobile-client.png');
    }

    .hero-testimonials {
        background-image: url('../images/banner/testimonial-mobile.png');
    }

    .hero-contact {
        background-image: url('../images/banner/contact-mobile.png');
    }
}

/* Mobile Hero Height */
@media (max-width: 768px) {
    .page-hero {
        min-height: 55vh;
        background-size: cover;
        background-position: center center;
    }
}

/* Services Detail Page */
.services-full {
    padding: 3rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text ul {
    list-style: none;
    margin: 2rem 0;
}

.service-detail-text ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-text ul li::before {
    content: "✓";
    color: #0077be;
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

/* Projects Gallery */
.projects-gallery {
    padding: 5rem 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: #f0f4f8;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0077be;
    color: white;
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

/* Clients Page */
.clients-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

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

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0077be;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.clients-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #0077be;
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

/* Clients Grid Section */
.clients-grid-section {
    padding: 2rem 0;
}

.clients-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.client-category-card {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #0077be;
    color: white;
    font-weight: 700;
    border-radius: 12px;
}

.client-category-card h3 {
    font-size: 1.35rem;
    margin: 0;
    color: #111;
}

.clients-logos {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.clients-logos.grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clients-logos.grid-5,
.clients-logos.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clients-logos.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clients-logos.grid-all {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .clients-logos.grid-all {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .clients-logos.grid-all {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 14px;
}

.client-logo img {
    width: auto;
    max-width: 140px;
    max-height: 80px;
    height: auto;
    filter: grayscale(0%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
  
@media (max-width: 992px) {
    .clients-showcase {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Full Page */
.testimonials-full {
    padding: 2rem 0;
}

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

.testimonial-card-full {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card-full i {
    font-size: 2rem;
    color: #0077be;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text-full {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author-full strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author-full span {
    font-size: 0.875rem;
    color: #666;
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    font-size: 0.875rem;
    color: #ffc107;
    margin-right: 2px;
}

/* About Page Styles */
.our-story {
    padding: 5rem 0;
}

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

.story-text strong {
    color: #0077be;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Mission Vision */
.mission-vision {
    background: #f8f9fa;
    padding: 0.1rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mv-card i {
    font-size: 2.5rem;
    color: #0077be;
    margin-bottom: 1rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.mv-card p {
    color: #555;
    line-height: 1.7;
}

/* Leadership */
.leadership {
    padding: 5rem 0;
}

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

.team-card {
    text-align: center;
    transition: all 0.3s;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
}

.team-bio {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem !important;
}

/* Certifications */
.certifications {
    background: #f8f9fa;
    padding: 2rem 0;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cert-item i {
    font-size: 2rem;
    color: #0077be;
    margin-bottom: 1rem;
}

.cert-item span {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive About */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-section {
    padding: 5rem 0;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: #0077be;
}

.contact-detail-item h4 {
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.hidden {
    display: none;
}

.map-section {
    margin-bottom: -6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .why-choose-content,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-masonry {
        grid-template-columns: 1fr;
    }
    
    /* Responsive Clientele Intro */
    .intro-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .clients-intro h2 {
        font-size: 2rem;
    }
    
    .intro-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .clients-logos.grid-6,
    .clients-logos.grid-4,
    .clients-logos.grid-3 {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 60px;
    }

    .stats {
        display: none;
    }
}