/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e40af;
    transition: transform 0.3s ease;
    gap: 15px;
}

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

.logo-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
    /* Ensure transparency works */
    background-color: transparent;
    /* Remove any potential white borders */
    border: none;
    /* Force the image to respect transparency */
    mix-blend-mode: multiply;
}

.logo-text {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    line-height: 1.2;
    max-width: 700px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

/* Mobile Social Icons */
.mobile-social-section {
    display: none; /* Hidden by default */
    background: #f8fafc;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 20px 0;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-social-section .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.mobile-social-section .social-icon.facebook {
    background-color: #1877F2;
}

.mobile-social-section .social-icon.youtube {
    background-color: #FF0000;
}

.mobile-social-section .social-icon.instagram {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-social-section .social-icon.instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mobile-social-section .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Show mobile social icons only on mobile */
@media (max-width: 768px) {
    .mobile-social-section {
        display: block;
    }
}

.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.header-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.header-social .social-icon.facebook {
    background-color: #1877F2;
}

.header-social .social-icon.youtube {
    background-color: #FF0000;
}

.header-social .social-icon.instagram {
    background: transparent;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.header-social .social-icon.instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.header-social .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Instagram gradient for social icons */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* For the icon inside, we'll use a white color */
.social-icon.instagram i {
    color: white !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
}

/* Dropdown (Services) */
.nav-item {
    position: relative;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.8em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    display: none;
    z-index: 1100;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #1d4ed8;
}

/* Mobile submenu within mobile menu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-left: 12px;
    margin-top: 8px;
}

.mobile-submenu a {
    padding: 8px 10px;
    border-radius: 8px;
    background: #f9fafb;
    color: #374151;
    text-decoration: none;
}

.mobile-submenu a:hover {
    background: #eef2ff;
}

/* Make Services look like a normal mobile link with an arrow */
button.mobile-nav-link.dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 12px 0;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

button.mobile-nav-link.dropdown-toggle::after {
    content: '▾';
    font-size: 0.9rem;
    color: #6b7280;
    transition: transform 0.2s ease;
}

button.mobile-nav-link.dropdown-toggle.open::after {
    transform: rotate(180deg);
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px; /* Added padding to create space below navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #dbeafe 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('./assets/hero_image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6); /* Optional: Makes text stand out */
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, #2563eb, #1d4ed8); */
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #ffffff;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;

}
.service-icon img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: inline-block;
}

/* Responsive media for service cards */
.service-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #000;
    line-height: 1.6;
}

/* Work Video Section */
.work-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.video-description p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
}

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

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

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

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Modern Equipment Section */
.modern-equipment {
    padding: 4rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

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

.equipment-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.equipment-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.equipment-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.equipment-image p {
    text-align: center;
    margin: 0;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    padding: 0.25rem 0;
}

@media (max-width: 768px) {
   .equipment-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .equipment-image {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
        height: auto;
    }
    
    .equipment-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .equipment-image p {
        margin: 1rem 0 0 0;
        font-size: 1.1rem;
        text-align: center;
        padding: 0 0.5rem;
        font-weight: 500;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3b82f6;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    object-fit: contain;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #d1d5db;
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.service-areas {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-areas li {
    color: #d1d5db;
    font-size: 0.9rem;
}

.areas-note {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.footer-btn.primary {
    background: #3b82f6;
    color: white;
}

.footer-btn.secondary {
    background: #10b981;
    color: white;
}

.footer-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

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

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: #4CAF50 !important; */
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.call-btn:hover {
    /* background: #3e8e41 !important; */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 1000;
}

.whatsapp-btn i {
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover i {
    transform: scale(1.1);
}

.call-btn {
    background: #3b82f6;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Icon Utilities */
.wa-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    color: #ffffff; /* inherits as fill via currentColor */
}
/* 
.wa-green {
    color: #25d366;
} */

/* Larger icon use cases (hero/section icon blocks) */
.wa-lg {
    width: 56px;
    height: 56px;
}

/* Image-based WhatsApp icon utilities (uses assets/whatsapp.png) */
.wa-img {
    width: 24px;
    height: 24px;
    display: inline-block;
    object-fit: contain;
}

.wa-img-lg {
    width: 56px;
    height: 56px;
}

/* Ensure buttons align icon + text nicely */
.footer-btn,
.method-btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* On floating circular WhatsApp button, use slightly larger glyph */
.floating-btn.whatsapp-btn .wa-icon {
    width: 28px;
    height: 28px;
}
.floating-btn.whatsapp-btn .wa-img {
    width: 32px;
    height: 32px;
}

/* If using the PNG that already includes the green circle, keep button background transparent */
.floating-btn.whatsapp-btn {
    background: #25d366 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* In footer WhatsApp button, slightly smaller glyph */
.footer-btn.secondary .wa-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -8px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0,-1px,0);
    }
}

/* Fade in animation for scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        position: relative;
        background: white;
    }
    
    .header-content {
        min-height: auto;
        padding: 10px 0;
    }
    
    .logo {
        align-items: center;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 0.9rem;
        max-width: 160px;
        line-height: 1.1;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }
    
    .hero {
        padding-top: 40px; /* Space for the header */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .logo {
        padding: 10px 0;
        max-width: 80%;
    }
    
    .logo-text {
        font-size: 1rem;
        line-height: 1.4;
        padding: 6px 0;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .logo {
        padding: 12px 0;
        max-width: 70%;
    }
    
    .logo-text {
        font-size: 0.9rem;
        line-height: 1.3;
        padding: 4px 0;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-contact,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        color: #000;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* Additional styles for the new static pages */

/* Services Page Specific Styles */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.main-service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.main-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-header .service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.service-details {
    padding: 2.5rem;
}

.service-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-description {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3b82f6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 1rem;
}

.service-process {
    margin-bottom: 2rem;
}

.service-process ol {
    padding-left: 1.5rem;
    color: #4b5563;
}

.service-process li {
    padding: 0.3rem 0;
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.additional-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.additional-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.additional-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.additional-service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-list li {
    padding: 0.3rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.service-list li::before {
    content: "• ";
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Page Specific Styles */
/* Map and Contact Section */
.map-contact-section {
    padding: 80px 0;
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-details-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-details-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-details-header h3 {
    font-size: 1.75rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-details-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 1rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-text a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.small-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .map-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-details-card {
        padding: 1.5rem;
    }
    
    .contact-details-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
}

.contact-methods {
    padding: 80px 0;
    background: white;
}

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

.contact-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.method-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-method-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-method-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.method-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.method-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section Styles */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-header {
    padding: 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.info-header .info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.info-content {
    padding: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    color: #4b5563;
    font-weight: 500;
}

.hours-row strong {
    color: #1f2937;
    font-weight: 600;
}

.hours-row.emergency {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
    margin: 0 -2rem -2rem;
}

.service-areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.area-item {
    color: #4b5563;
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.areas-note {
    color: #6b7280;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
}

.emergency-card {
    border-left: 4px solid #ef4444;
}

.emergency-card .info-header {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

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

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.emergency-feature .feature-icon {
    font-size: 1.2rem;
    color: #ef4444;
}

.emergency-btn {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    border-left: 4px solid #3b82f6;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact CTA Section Styles */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.contact-cta .cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-option p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn.primary {
    background: white;
    color: #2563eb;
}

.cta-btn.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.whatsapp {
    background: #25d366;
    color: white;
}

.cta-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* About Page Specific Styles */
.stats-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #f3f4f6;
}

.stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.stat-card .stat-label {
    color: #6b7280;
    font-weight: 500;
}

.our-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: stretch;
}

.story-text {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
}

.story-text .story-paragraphs p + p {
    margin-top: 1rem;
}

.story-highlights .highlight-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #4b5563;
}

.feature-icon { /* already used elsewhere; keep consistent */
    font-size: 1.2rem;
}

.our-values {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
    text-align: center;
}

.value-card .value-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.why-choose-us .choose-us-content {
    margin-top: 2rem;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.choose-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.our-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* View More Button Styles */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin: 20px auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure the link inside the button is also white */
.view-more-btn a {
    color: inherit !important;
    text-decoration: none;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.view-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Add an arrow icon using pseudo-element */
.view-more-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover::after {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-more-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.team-highlight {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
}

.team-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

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

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-service-card {
        min-width: auto;
    }

    .service-header,
    .service-details {
        padding: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-header,
    .service-details {
        padding: 1.5rem;
    }

    .main-service-card {
        margin: 0 -10px;
    }

    .info-header,
    .info-content {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .cta-option {
        padding: 2rem;
    }
}
/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.header-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.header-social .social-icon.facebook {
    background-color: #1877F2;
}

.header-social .social-icon.youtube {
    background-color: #FF0000;
}

.header-social .social-icon.instagram {
    background: transparent;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.header-social .social-icon.instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.header-social .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .header-social {
        display: none;
    }
}

