/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f8fcff, #eef7f5);
    color: #1c1c1c;
}

/* Navbar & Footer */
#navbar,
#footer {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* ================= Hero Section ================= */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.agency {
    color: #ff5a3c;
    font-weight: 600;
    font-size: 1rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: #0d1b2a;
    margin: 20px 0 10px;
}

.highlight {
    color: #ff5a3c;
}

.hero-text p {
    color: #607480;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #ff5a3c;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e44b2f;
}

.play-btn {
    background: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    color: #ff5a3c;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* Hero Image */
.hero-image-container {
    flex: 1;
    max-width: 700px;
    position: relative;
    text-align: right;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
}

.thumbnail-container img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, border 0.2s;
}

.thumbnail-container img:hover {
    transform: scale(1.05);
    border: 2px solid #ff5a3c;
}

/* ================= About Section ================= */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0c3b4a;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff5e3a;
    bottom: -10px;
    left: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
    margin-top: 15px;
}

/* ================= Cards Section ================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px auto 40px;
    max-width: 1200px;
    padding: 0 20px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #ff5e3a15;
    border-radius: 50%;
    z-index: 0;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #0c3b4a;
    position: relative;
    z-index: 1;
}

.card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-image-container {
        text-align: center;
        margin-bottom: 30px;
    }

    .thumbnail-container {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p,
    .card p {
        font-size: 1rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }
}

/*services */

.services-section {
    text-align: center;
    padding: 60px 20px;
}

.subtitle {
    color: #fd5f37;
    font-weight: 500;
    margin-bottom: 8px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #101c32;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #fd5f37;
}

.icon-container {
    margin-bottom: 20px;
}

.icon-container img {
    height: 100px;
    background: #ffe9e3;
    padding: 10px;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #101c32;
}

.service-card p {
    font-size: 0.95rem;
    color: #5a6570;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-link {
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.card-link.red {
    color: #fd5f37;
}

.card-link.teal {
    color: #ff5a3c;
}

.view-all-btn-wrapper {
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fd5f37;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #e84c24;
}

/* contact section styles */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(120deg, #e97460 0%, #ec7c68 100%);
    color: #fff;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #f25a40;
}

.contact-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px dashed #ff7e67;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

form input:focus,
form textarea:focus {
    border-color: #f2715a;
    background: #fff7f5;
}

button {
    background: #f25a40;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #ef4e31;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffcb05;
    color: #111;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    display: none;
    animation: pop 0.5s ease forwards;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@keyframes pop {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* testimonia*/
/* Background + Overlay */
.testimonial-section {
    background: url('images/testimonial-background.png') no-repeat center center/cover;
    padding: 100px 20px;
    color: #fff;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 20px;
    border-radius: 20px;
    max-width: 2000px;
    margin: 0 auto;
    text-align: center;
}

/* Heading styles */
.section-subtitle {
    font-size: 1.2rem;
    color: #fca311;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Slider container */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

/* Card styles */
.testimonial-card {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    color: #333;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1e2b4f;
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.stars {
    color: #fca311;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.message {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* blogs*/
.blog-section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.blog-tag {
    color: #f25a40;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f1b3d;
    margin-top: 5px;
}

.view-all-btn {
    background-color: #0f1b3d;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background-color: #1c2b56;
}

.blog-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.meta {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.meta .dot {
    height: 4px;
    width: 4px;
    background: #f25a40;
    border-radius: 50%;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f1b3d;
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    color: #f25a40;
    text-decoration: none;
    border: 1px solid #f25a40;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #f25a40;
    color: white;
}