/* --- Base Styling & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfdfd;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

span {
    color: #00a8cc;
}

/* --- Header & Navigation --- */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    color: #0b3c5d;
}

nav a {
    margin-left: 25px;
    font-weight: 600;
    color: #555;
}

nav a:hover {
    color: #00a8cc;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #e6f7ff 0%, #ceeefd 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #0b3c5d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background-color: #00a8cc;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #00a8cc;
    box-shadow: 0 4px 14px rgba(0, 168, 204, 0.3);
}

.btn:hover {
    background-color: #0b3c5d;
    border-color: #0b3c5d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0b3c5d;
    border-color: #0b3c5d;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #0b3c5d;
    color: #fff;
}

.btn-full {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* --- Services & Grid Cards --- */
.services, .why {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    color: #0b3c5d;
    margin-bottom: 50px;
}

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

.card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 168, 204, 0.15);
    border-color: #ceeefd;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px; /* Space reserved for the icon */
    margin-bottom: 25px;
}

.card-icon img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}


.card h3 {
    color: #0b3c5d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.mini-card {
    padding: 30px 20px;
}

/* --- About Section --- */
.about {
    background-color: #f4fafd;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about-img-box img {
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2.3rem;
    color: #0b3c5d;
    margin-bottom: 40px;
}

.about-features {
    list-style: none;
    margin-top: 20px;
}

.about-features li {
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 10px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.3rem;
    color: #0b3c5d;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

.info-item .icon {
    font-size: 1.8rem;
    background-color: #e6f7ff;
    padding: 10px 15px;
    border-radius: 12px;
}

.info-item h4 {
    color: #0b3c5d;
    font-size: 1.1rem;
}

.info-item p a:hover {
    color: #00a8cc;
}

/* --- Contact Form Quick Box --- */
.contact-form-bg {
    background-color: #0b3c5d;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 60, 93, 0.2);
}

.contact-form-bg h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-form-bg p {
    color: #ceeefd;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.contact-form-bg input, .contact-form-bg select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    font-family: inherit;
}

.contact-form-bg input::placeholder {
    color: #ceeefd;
}

.contact-form-bg select option {
    color: #333;
}

/* --- Footer --- */
footer {
    background-color: #07273d;
    color: #a4b3be;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- Dynamic CSS Animations --- */

/* Floating movement for the main hero PNG image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-animation {
    animation: float 4s ease-in-out infinite;
}

/* --- Responsive Layout Breaks --- */
@media (max-width: 992px) {
    .hero-flex, .about-grid, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        max-width: 320px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }

    .about-features li {
        text-align: left;
        display: inline-block;
        margin: 0 10px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    header .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    nav a {
        margin: 0 10px;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    color: #fff;
}

.whatsapp-icon {
    font-size: 1.4rem;
}

/* Pulsing attention-grabbing animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hide the text label on small mobile screens to save space */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-text {
        display: none;
    }
}

/* Service Tag Cloud Styles */
.service-tags-container {
    margin-top: 40px;
    text-align: center;
}

.service-tags-container h4 {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tag {
    background-color: #f0f7ff;
    color: #0066cc;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #cce3ff;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* SEO Brands & Locations Cards */
.seo-keyword-section {
    background-color: #f8fafc;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
}

.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.seo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.seo-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.seo-card-header h3 {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

.seo-icon {
    font-size: 1.4rem;
}

.seo-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Brand Badges */
.seo-chips span {
    background-color: #f1f5f9;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.seo-chips span:hover {
    background-color: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

/* Location Badges (Subtle Green Accent for Trust) */
.location-chips span {
    background-color: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.location-chips span:hover {
    background-color: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
}