/* Reset + Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Global Font */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #111;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

/* Flex Layout */
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

/* Logo */
.logo {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  color: #000;
}


/* Navigation */
.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #1b1b1b;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007bff;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 2px;
    width: 24px;
    background: #000;
    margin: 4px 0;
    display: block;
    transition: all 0.3s ease
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*  Mobile Styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;

        width: 100%;
        background: #fff;

        flex-direction: column;
        align-items: center;
        gap: 16px;

        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    /* Premium subtle gradient */
    background: linear-gradient(135deg,
            #8fc4d1 0%,
            #c9e5ec 30%,
            #ffffff 100%);
}

/* Optional pattern overlay */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: radial-gradient(#00000008 1px, transparent 1px);
    background-size: 20px 20px;

    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Text Block */
.hero-text {
    max-width: 700px;
}

/* Heading */
.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

/* Subtext */
.hero-subtext {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

/* CTA Button */
.btn-primary {
    display: inline-block;
    padding: 12px 26px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

/* Trust Line */
.hero-trust {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;

    /* Animation start state */
    transform: translateX(100px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Animation */
@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* 📱 Responsive */
@media (max-width: 768px) {

    .hero {
        padding: 70px 0 50px;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 10px 20px;
    }

    .hero-image {
        justify-content: center;
        margin-top: 30px;

        /* Slightly reduce animation distance for mobile */
        transform: translateX(50px);
    }
}

/* Service Section */

/* Services Section */
.services {
    padding: 80px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #111;
}

.section-header p {
    font-size: 0.95rem;
    color: #555;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.service-card {
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    transition: all 0.25s ease;
}

/* Hover Effect */
.service-card:hover {
    border-color: #ddd;
    transform: translateY(-4px);
}

/* Card Content */
.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Card */
.service-card {
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #d4d4d4;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Default text */
.service-card h3,
.service-card p {
    transition: color 0.25s ease;
}

/* Hover Base */
.service-card:hover {
    transform: translateY(-4px);
    background-color: #8fc4d1;
}

/* Change text color on hover */
.service-card:hover h3,
.service-card:hover p {
    color: #1b1b1b;
}


/* 📱 Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Story Section */
.story {
    width: 100%;
    background: #365456;
    color: #000000;
}

/* Panel layout */
.story .panel {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 0 10%;
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Inner flex layout */
.story .panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* Text */
.story .panel-text {
    flex: 1;
}

.story .panel-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;

}

.story .panel-text p {
    font-size: 2rem;
    color: #ebebeb;
    max-width: 500px;
}

/* Image */
.story .panel-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story .panel-image img {
    max-width: 66%;
    height: auto;
    transform: scale(0.95);
    opacity: 0.65;
    /* reduce attention */
    transition: transform 0.8s ease, opacity 0.8s ease;

}

/* Animation active */
.story .panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Highlight */
.story .panel.highlight h1 {
    color: #00f65d;
}

/* Initial hidden state */
.story .panel-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.story .panel-image {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.story .panel.active .panel-text {
    opacity: 1;
    transform: translateX(0);
}

.story .panel.active .panel-image {
    opacity: 1;
    transform: translateX(0);
}

.story .panel.active .panel-text {
    transition-delay: 0.2s;
}

.story .panel.active .panel-image {
    transition-delay: 0.4s;
}

.story .panel.active .panel-image img {
    transform: scale(1);
    opacity: 0.85;
}

@media (max-width: 768px) {

    .story .panel-text,
    .story .panel-image {
        transform: translateY(30px);
    }

    .story .panel.active .panel-text,
    .story .panel.active .panel-image {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .story .panel-content {
        flex-direction: column;
        text-align: left;
    }

    .story .panel {
        padding: 40px 20px;
    }

    .story .panel-text h1 {
        font-size: 2rem;
    }

    .story .panel-image {
        margin-top: 20px;
    }
}

/* ===== Timeline (Stable Version) ===== */

.timeline {
    position: relative;
    margin-top: 60px;
}

.process .section-header {
    margin-top: 60px;
}

/* Center line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

/* Each item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

/* LEFT */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: justify;
}

/* RIGHT */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: justify;

}

/* Dot */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 100%;
    transform: translateX(-50%);

    width: 14px;
    height: 14px;
    background: #8fc4d1;
    border-radius: 50%;
    z-index: 2;
}

/* Fix dot for right side */
.timeline-item:nth-child(even)::before {
    left: 0;
}

/* Content box */
.timeline-content {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        text-align: left;
    }

    .timeline-item::before {
        left: 20px !important;
        transform: translateX(-50%);
    }
}

/* Experience Section */
.experience-section {
    padding: 60px 20px;
    background: #8cacbc;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.content p {
    font-size: 1rem;
    color: #111111;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content .highlight {
    font-weight: 600;
    color: #0e0e0e;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.stat {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    justify-content: space-between;
    min-width: 150px;
    min-height: 280px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 1.2rem;
    color: #111;
    text-align: center;
}

.stat span {
    font-size: 0.9rem;
    color: #1b1b1b;
    margin: 6px 6px 18px 6px;
}

/* Responsive */
@media (max-width: 992px) {

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .content h2 {
        font-size: 1.7rem;
    }

    .stat {
        min-height: auto;
    }
}

/* =========================
   Mobile (≤ 768px)
   ========================= */
@media (max-width: 768px) {

    .experience-section {
        padding: 40px 15px;
    }

    .content h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr; /* ✅ stack cards */
    }

    .stat {
        padding: 18px;
    }

    .stat h3 {
        font-size: 1.1rem;
    }

    .stat span {
        font-size: 0.9rem;
        margin: 6px 6px 18px 6px;
        line-height: 1.6;
    }

    .stats-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   Small Mobile (≤ 480px)
   ========================= */
@media (max-width: 480px) {

    .content h2 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .stat {
        padding: 15px;
    }

    .stats-btn {
        font-size: 0.85rem;
        padding: 10px;
    }
}

/* =========================
   Form Responsiveness
   ========================= */

@media (max-width: 768px) {

    .form-section {
        max-width: 95%;
        padding: 25px 15px;
        border-radius: 10px;
    }

    .form-section h2 {
        font-size: 1.4rem;
    }

    .form-close {
        font-size: 1.5rem;
        right: 12px;
        top: 10px;
    }
}

@media (max-width: 480px) {

    .form-section {
        padding: 20px 12px;
    }

    .form-section h2 {
        font-size: 1.2rem;
    }

    .form-close {
        font-size: 1.3rem;
    }
}

/* Forms */

.stats-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #1a73e8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: auto;
    /* push to bottom */
    text-align: center;
}

.stats-btn:hover {
    background: #1669c1;
    transform: translateY(-2px);
}

.form-section {
    margin-top: 50px;
    padding: 40px 30px;
    background: #dbe6e5;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 40px rgb(1, 56, 60);
    display: none;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
}

/* Close button */
.form-close {
    position: absolute;
    top: 14px;
    /* distance from top */
    right: 20px;
    font-size: 1.8rem;
    text-align: right;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

.form-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #111;
}


/* Footer section */
.footer {
    background: #111;
    color: #ddd;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: justify;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    /* More space for content */
    gap: 70px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #777;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog section */
/* Blog Archive Styling */
.blog-archive {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.post-card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-card h2 a {
    color: #1b1b1b;
    text-decoration: none;
}

.post-card h2 a:hover {
    color: #007bff;
    /* Or your brand color */
}

.post-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-excerpt {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
    display: inline-block;
}
/* Responsive Images inside Blog Posts */
.post-content img,
article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}
.post-card {
    height: 100%; /* Makes all cards in a row the same height */
    /* ... your other styles ... */
}

/* Responsive adjustments for the Blog Grid */
@media (max-width: 992px) {
    .post-list {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .post-list {
        grid-template-columns: 1fr;
        /* 1 column for mobile phones */
    }

    .blog-archive h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .post-card {
        padding: 20px;
        /* Slightly less padding on mobile to save space */
    }

    .post-card h2 {
        font-size: 1.25rem;
    }
}

/* Individual Blog Post Styles */
.post-container {
    max-width: 800px; /* Optimal reading width */
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.8; /* Improves readability */
    color: #333;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

/* Style for those checkmark lists in your image */
.post-content li:has(input[type="checkbox"]) {
    list-style-type: none;
    padding-left: 0;
}
@media (max-width: 600px) {
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-container {
        margin: 20px auto;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
}
/* Blog-CTA Box */
/* 1. THE FOUNDATION: Layout for every CTA box */
.blog-cta {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    align-items: center;
    transition: transform 0.2s ease;
}

.blog-cta:hover {
    transform: scale(1.01);
    /* Subtle lift for interaction */
}

/* 2. THE THEMES: Only change colors here */
.cta-orange {
    border: 3px solid #ff4500;
    background: #fffbf5;
}

.cta-blue {
    border: 3px solid #007bff;
    background: #f0f7ff;
}

.cta-green {
    border: 3px solid #28a745;
    background: #f2fff5;
}

/* 3. INTERNAL ELEMENTS: Shared by all CTAs */
.cta-image img {
    width: 200px;
    height: auto;
    border-radius: 4px;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

.cta-icon {
    color: inherit;
    /* Takes color from the border/text */
    font-weight: bold;
    margin-right: 8px;
}

.btn-secondary {
    margin-left: 15px;
    color: #333;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: #ff4500;
    /* Changes to orange on hover */
}

/* 4. RESPONSIVE: Stacks vertically on mobile */
@media (max-width: 768px) {
    .blog-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }
}

/* Lead generation/ guide download page style */
/* ===============================
   CONTENT SECTIONS (POST-FORM)
   SEO + READABILITY OPTIMIZED
================================= */

.content-section {
    padding: 70px 20px;
    background: #ffffff;
}

/* Alternate section background for better visual flow */
.content-section:nth-of-type(even) {
    background: #f7f9fc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Headings */
.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

/* Decorative underline for headings */
.content-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #3b82f6;
    margin-top: 10px;
    border-radius: 2px;
}

/* Paragraph styling */
.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* List styling */
.content-section ul {
    margin-top: 15px;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
    position: relative;
}

/* Custom bullet */
.content-section ul li::marker {
    color: #3b82f6;
}

/* FAQ Styling (AEO boost) */
.content-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    color: #222;
}

.content-section h3 + p {
    margin-top: 8px;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablets */
@media (max-width: 768px) {
    .content-section {
        padding: 50px 15px;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section p,
    .content-section ul li {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .content-section {
        padding: 40px 12px;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h2::after {
        width: 45px;
        height: 3px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}



/* ABOUT SECTION */
.about-section {
  background: #ffffff;
  color: #000000;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-section .container {
  max-width: 1100px;
  margin: auto;
}

/* TYPOGRAPHY */
.about-section h1 {
  font-size: 2.5rem;
  color: #3A86FF;
  margin-bottom: 10px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #021f15;
  margin-bottom: 15px;
}

.about-section h3 {
  font-size: 1.3rem;
  color: #3A86FF;
}

.about-section p {
  color: #000000;
  line-height: 1.6;
}

.about-section .tagline {
  font-weight: 600;
  margin-bottom: 15px;
}

/* SECTIONS */
.about-section .section {
  margin-bottom: 60px;
}

/* GRID */
.about-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.about-section .card {
  background: rgba(37, 35, 35, 0.05);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.about-section .card:hover {
  transform: translateY(-5px);
  background: rgba(93, 126, 126, 0.08);
}

/* QUOTE */
.about-section .quote {
  font-style: italic;
  border-left: 4px solid #00F5A0;
  padding-left: 15px;
  color: #171717;
}

/* CTA */
.about-section .cta {
  text-align: center;
}

.about-section .btn-primary {
  margin: 24px;
  display: inline-block;
  background: #3A86FF;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-section .btn-primary:hover {
  background: #299dc0;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }

  .about-section .grid {
    grid-template-columns: 1fr;
  }
}


/* Services Page */

/* Layout */
.services .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.services .services-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg,
            #8fc4d1 0%,
            #c9e5ec 30%,
            #ffffff 100%);
}

.services .services-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.services .subtitle {
  font-weight: 600;
  color: var(--accent);
}

.services .intro {
  max-width: 700px;
  margin: 20px auto;
  color: var(--muted);
}

/* Sections */
.services .service-block {
  padding: 60px 0;
}

.services .service-block.alt {
  background: var(--light);
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
        text-align: center;

}

.services .objective,
.services .focus {
  font-size: 0.95rem;
  color: var(--muted);
        text-align: center;

}

.services .desc {
  margin: 20px 0;
        text-align: center;

}

/* Cards */
.services .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.services .card {
  background: #cadedc;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: 0.2s ease;
}

.services .card:hover {
  transform: translateY(-4px);
      background: #e9ebeb;
}

.services .card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Comparison Table */
.services .table {
  margin-top: 30px;
}

.services .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.services .row.head {
  font-weight: bold;
  background: var(--light);
}

/* CTA */
.services .cta {
  text-align: center;
  padding: 70px 20px;
}

.services .btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

/* Links */
.services .learn-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .services .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services .card-grid {
    grid-template-columns: 1fr;
  }

  .services .row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .services .services-hero h1 {
    font-size: 1.6rem;
  }
}

  COS Creatives Privacy Policy Layout
   ========================================================================== */


/* Layout Container */
.cos-policy-page-container {
    max-width: 800px;
    margin: 40px auto !important;
    padding: 0 24px;
}

/* Header Section */
.cos-policy-main-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 20px;
}

.cos-policy-hero-title {
    font-size: 2.25rem;
    margin: 0 0 12px 0;
    font-weight: 800;
}

.cos-policy-meta-date {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

/* Base Body Typography */
.cos-policy-content-body {
    font-size: 1.05rem;
}

.cos-policy-section {
    margin-bottom: 35px;
}

.cos-policy-paragraph {
    margin: 0 0 20px 0;
}

/* Headings */
.cos-policy-heading-two {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 35px 0 15px 0;
    font-weight: 700;
}

.cos-policy-heading-three {
    font-size: 1.15rem;
    color: #4a5568;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

/* Badges and Dimmed Text */
.cos-policy-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    color: #3182ce;
    background-color: #ebf8ff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

/* Lists */
.cos-policy-unordered-list {
    margin: 0 0 25px 0;
    padding-left: 24px;
}

.cos-policy-list-item {
    margin-bottom: 12px;
}

.cos-policy-emphasis {
    color: #1a202c;
    font-weight: 600;
}

/* Decorative Elements */
.cos-policy-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

/* Callout Box Disclaimer */
.cos-policy-callout-box {
    background-color: #f7fafc;
    border-left: 4px solid #e2e8f0;
    margin: 20px 0;
    padding: 20px;
    font-size: 1rem;
    color: #4a5568;
    border-radius: 0 6px 6px 0;
}

/* ==========================================================================
   Responsive Design & Mobile Optimization
   ========================================================================== */

@media (max-width: 768px) {
    .cos-policy-page-container {
        margin: 24px auto;
        padding: 0 20px;
    }

    .cos-policy-hero-title {
        font-size: 1.75rem;
    }

    .cos-policy-heading-two {
        font-size: 1.3rem;
    }

    .cos-policy-heading-three {
        font-size: 1.1rem;
    }
    
    .cos-policy-subtext {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        width: fit-content;
    }
}

/* ==========================================================================
   COS Creatives Policy & Terms Shared Layout
   ========================================================================== */

.cos-policy-page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3748;
    line-height: 1.7;
}

.cos-policy-main-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 20px;
}

.cos-policy-hero-title {
    font-size: 2.25rem;
    color: #1a202c;
    margin: 0 0 12px 0;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.cos-policy-meta-date {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

.cos-policy-content-body {
    font-size: 1.05rem;
}

.cos-policy-section {
    margin-bottom: 35px;
}

.cos-policy-paragraph {
    margin: 0 0 20px 0;
}

.cos-policy-heading-two {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 35px 0 15px 0;
    font-weight: 700;
}

.cos-policy-heading-three {
    font-size: 1.15rem;
    color: #4a5568;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.cos-policy-unordered-list {
    margin: 0 0 25px 0;
    padding-left: 24px;
}

.cos-policy-list-item {
    margin-bottom: 12px;
}

.cos-policy-emphasis {
    color: #1a202c;
    font-weight: 600;
}

.cos-policy-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

.cos-policy-callout-box {
    background-color: #f7fafc;
    border-left: 4px solid #3182ce; /* Highlighted blue border accent for interaction */
    margin: 20px 0;
    padding: 20px;
    font-size: 1rem;
    color: #4a5568;
    border-radius: 0 6px 6px 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 768px) {
    .cos-policy-page-container {
        margin: 24px auto;
        padding: 0 20px;
    }

    .cos-policy-hero-title {
        font-size: 1.75rem;
    }

    .cos-policy-heading-two {
        font-size: 1.3rem;
    }

    .cos-policy-heading-three {
        font-size: 1.1rem;
    }
}
