/* ==========================================================================
   GLOBAL RESETS & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}



/* ==========================================================================
   NAVBAR CONTAINER & SCROLL EFFECTS
   ========================================================================== */

.navbar {
    background-color: #e8fcff;
    color: #47bac3;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: top center;
}

.navbar {
    box-shadow: none !important;
    border-bottom: none !important;
}

.navbar.scrolled {
    box-shadow: none !important;
}

.navbar.scrolled {
    background-color: white;
    transform: scaleY(0.9);
}



/* ==========================================================================
   TOP BAR - CONTACT INFORMATION
   ========================================================================== */

.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 5% 0;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 55px;
}

.navbar.scrolled .top-bar {
    padding: 3px 5% 0;
    opacity: 0.9;
    transform: scaleY(0.9);
    transform-origin: top center;
}

.contact-info {
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.contact-btn {
    background-color: #47bac3;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.contact-btn:hover {
    background-color: #333;
}



/* ==========================================================================
   MAIN NAVIGATION & LOGO
   ========================================================================== */

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
    transition: all 0.4s ease;
    margin-top: -25px;
    height: 70px;
}

.navbar.scrolled .nav-main {
    padding: 0 5% 5px;
    margin-top: -20px;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: -5px;
}

.logo-img {
    height: 95px;
    padding-bottom: 17px;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-img {
    height: 85px;
}



/* ==========================================================================
   NAVIGATION LINKS
   ========================================================================== */

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    margin-bottom: 8px;
}

.navbar.scrolled .nav-links {
    gap: 22px;
}

.navbar.scrolled .dropdown-menu a {
    color: #ffffff !important;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 6px 4px;
    position: relative;

}

.nav-links > li > a {
    color: #051d3b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 6px 4px;
    position: relative;
    text-transform: uppercase;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
}

.scrolled .nav-links a {
    color: #051d3b;
    font-size: 14px;
}

.scrolled .nav-links li {
    color: #ffffff;
    font-size: 14px;
}

.navbar {
    color: #051d3b;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #47bac3;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}



/* ==========================================================================
   DROPDOWN MENUS
   ========================================================================== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #051d3b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    padding-left: 20px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    color: #ffffff;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

@media (min-width: 769px) {
    .dropdown > a i {
        display: none;
    }
}



/* ==========================================================================
   HAMBURGER MENU
   ========================================================================== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    background: #051d3b;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1000;
}

.hamburger:hover {
    background: #333333;
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active {
    background: #333333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 20px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 20px;
}

.navbar.scrolled .hamburger {
    background: #000000;
}

.navbar.scrolled .hamburger:hover {
    background: #333333;
}

.navbar.scrolled .hamburger span {
    background-color: #ffffff;
}



/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
/* ==========================================================================
   MOBILE MENU COLOR FIX FOR HOSTINGER
   ========================================================================== */

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-main {
        margin-top: 0;
        padding: 10px 5%;
        height: auto;
        align-items: center;
        justify-content: space-between;
    }

    .navbar.scrolled .nav-main {
        padding: 15px 5%;
        margin-top: 0;
    }

    .logo-container {
        margin-top: 0;
    }

    .logo-img {
        height: 60px;
        padding-bottom: 0px;
        margin-top: 10px;
    }

    .navbar.scrolled .logo-img {
        height: 45px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 70px 0 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 0;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    /* CRITICAL FIX: Force mobile menu links to stay blue */
    .nav-links li a,
    .navbar.scrolled .nav-links li a,
    .nav-links.active li a,
    .navbar.scrolled .nav-links.active li a {
        display: block;
        width: 100%;
        padding: 10px 20px;
        font-size: 16px;
        color: #051d3b !important; /* Force blue color with !important */
        text-transform: uppercase;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: right;
    }

    .nav-links li a:hover {
        background-color: rgba(5, 29, 59, 0.1);
        color: #051d3b !important; /* Force blue on hover too */
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown > a i {
        transition: transform 0.3s ease;
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        background: rgba(5, 29, 59, 0.05);
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* CRITICAL FIX: Force dropdown links to stay blue */
    .dropdown-menu a,
    .navbar.scrolled .dropdown-menu a {
        padding: 12px 20px 12px 30px;
        font-size: 14px;
        font-weight: 500;
        background-color: transparent;
        color: #051d3b !important; /* Force blue color with !important */
        text-align: right;
    }

    .dropdown-menu a:hover {
        background-color: rgba(5, 29, 59, 0.1);
        color: #051d3b !important; /* Force blue on hover too */
    }

    .mobile-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #051d3b;
        font-size: 28px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(5, 29, 59, 0.1);
        z-index: 1002;
    }

    .close-menu:hover {
        background: rgba(5, 29, 59, 0.2);
        transform: scale(1.1);
    }

    .navbar.scrolled {
        transform: none;
        background-color: #e8fcff;
    }
    
    /* EXTRA SAFETY: Override any potential conflicting styles */
    .navbar.scrolled .nav-links li a,
    .navbar.scrolled .nav-links.active li a,
    .navbar.scrolled .dropdown-menu a {
        color: #051d3b !important;
    }
}





@media (max-width: 480px) {
    .nav-main {
        padding: 10px 15px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-links {
        width: 85%;
    }
}



/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    padding: 90px 5% !important; 
    background: #e8fcff;
    position: relative;
    overflow: hidden;
min-height: 95vh;

}


.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1461px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 730.5px;
}

.hero-content h1 {
    font-size: 86px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: "Poppins", Sans-serif;
    letter-spacing: -0.5px;
    max-width: 700px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins", Sans-serif;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 600px;
}

.hero-content p:first-of-type {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.hero .hero-container .hero-content .cta-button {
    background: #051d3b;
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    font-family: "Poppins", Sans-serif;
    letter-spacing: 0.5px;
}

.hero .hero-container .hero-content .cta-button:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: #e8fcff;
    z-index: -1;
    border-radius: 12px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.featured-authors {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.author-circle {
    width: 94px;
    height: 87px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.author-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.author-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#c5f2f6 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
        margin: 0;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin: 5px 0;
        line-height: 1.2;
    }

    .hero-image {
        order: 1;
        margin: 0 0 5px 0;
        max-height: 40vh;
        width: 100%;
    }

    .featured-authors {
        order: 3;
        gap: 8px;
        margin: 0;
        padding: 5px 0 0 0;
        justify-content: center;
        display: flex;
        width: 100%;
    }

    .author-circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .hero-buttons {
        margin: 8px 0;
        gap: 5px;
    }

    .hero-image::before,
    .hero-image::after,
    .hero-content::before,
    .hero-content::after,
    .featured-authors::before,
    .featured-authors::after {
        content: none;
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: 60vh;
        padding-bottom: 10px;
        gap: 0;
    }

    .hero-content {
        padding: 0 8px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin: 3px 0;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }

    .hero-image {
        max-width: 95%;
        margin: 0 auto 3px auto;
        max-height: 35vh;
    }

    .featured-authors {
        gap: 18px;
        padding: 3px 0 0 0;
        margin: 0;
    }

    .author-circle {
        width: 60px;
        height: 60px;
    }

    .hero-buttons {
        margin: 5px 0;
        gap: 4px;
    }

    .btn {
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
        margin: 0;
    }

    .hero-container > * {
        margin: 0;
        padding: 0;
    }

    .hero-content > *:last-child {
        margin-bottom: 0;
    }
}



/* ==========================================================================
   STATS & CTA SECTION
   ========================================================================== */

.stats-cta-section {
    padding: 10px 5%;
    background: #051d3b;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 8px;
    background: #051d3b;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #47bac3;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
}

.stat-label {
    font-size: 18px;
    color: white;
    font-weight: 500;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
}

.cta-content p {
    font-size: 18px;
    color: #47bac3;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
}

.cta-content .cta-button {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #47bac3;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
}

.cta-content .cta-button:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
        text-align: center;
    }

    .stat-number {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
        line-height: 1.3;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}



/* ==========================================================================
   AUTHORS SECTION - 6 COLUMN LAYOUT
   ========================================================================== */

.authors-section {
    padding: 80px 5%;
    background: #e8fcff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a202c;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.authors-grid-six-col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
    justify-items: center;
}

.author-item {
    border-radius: 8px;
    overflow: visible;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 280px;
}

.author-item:hover {
    transform: translateY(-5px);
}

.author-image {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.author-image img {
    width: auto;
    height: 420px;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.author-item:hover .author-image img {
    transform: scale(1.05);
}



/* ==========================================================================
   AUTHORS SECTION RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1400px) {
    .authors-grid-six-col {
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
    }
    
    .author-image img {
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .authors-grid-six-col {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
    
    .author-image img {
        height: 380px;
    }
}

@media (max-width: 900px) {
    .authors-grid-six-col {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .author-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .authors-grid-six-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .author-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .authors-grid-six-col {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 20px;
        padding: 0 15px;
    }
    
    .author-image img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    
    .author-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 360px) {
    .authors-grid-six-col {
        gap: 15px;
        padding: 0 10px;
    }
    
    .author-image img {
        height: 250px;
    }
}



/* ==========================================================================
   CUSTOMIZED APPROACH SECTION
   ========================================================================== */

.customized-approach {
    padding: 80px 5%;
    background: #f8fdff;
    position: relative;
}

.customized-approach .section-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.connecting-line {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 40px;
    width: 3px;
    z-index: 1;
}

.step-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #47bac3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(5, 29, 59, 0.3);
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(71, 186, 195, 0.2);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #47bac3, #051d3b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: #47bac3;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.step-icon.consultation {
    -webkit-mask-image: url('Assets/IC.png');
    mask-image: url('Assets/IC.png');
}

.step-icon.evaluation {
    -webkit-mask-image: url('Assets/manuscript.png');
    mask-image: url('Assets/manuscript.png');
}

.step-icon.editing {
    -webkit-mask-image: url('Assets/E&P.png');
    mask-image: url('Assets/E&P.png');
}

.step-icon.publishing {
    -webkit-mask-image: url('Assets/P.png');
    mask-image: url('Assets/P.png');
}

.step-icon.distribution {
    -webkit-mask-image: url('Assets/P&D.png');
    mask-image: url('Assets/P&D.png');
}

.step-icon.marketing {
    -webkit-mask-image: url('Assets/MS.png');
    mask-image: url('Assets/MS.png');
}

.step-icon.sales {
    -webkit-mask-image: url('Assets/S&P.png');
    mask-image: url('Assets/S&P.png');
}

.step-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #051d3b;
    margin: 0;
    font-family: "Poppins", Sans-serif;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.step-card:hover h3 {
    color: #47bac3;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #47bac3;
    transition: width 0.3s ease;
}

.step-card:hover h3::after {
    width: 40px;
}



/* ==========================================================================
   CUSTOMIZED APPROACH RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .approach-steps {
        gap: 35px;
    }
    
    .connecting-line {
        left: 35px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-right: 20px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
    }
    
    .step-card h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .customized-approach {
        padding: 60px 5%;
    }
    
    .customized-approach .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .approach-steps {
        gap: 30px;
    }
    
    .connecting-line {
        left: 30px;
    }
    
    .step-number {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-right: 18px;
    }
    
    .step-card {
        padding: 22px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .step-card h3 {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .approach-steps {
        gap: 25px;
    }
    
    .connecting-line {
        left: 28px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .step-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .customized-approach {
        padding: 50px 4%;
    }
    
    .customized-approach .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .connecting-line {
        display: none;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
    }
    
    .step-card h3 {
        font-size: 15px;
    }
}



/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    justify-content: center;
    align-items: stretch;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
}

.service-item:hover {
    background-color: #f8fdff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
    z-index: 2;
}

.service-item {
    background-color: #47bac3;
}

.service-item:nth-child(2),
.service-item:nth-child(4),
.service-item:nth-child(6),
.service-item:nth-child(7),
.service-item:nth-child(9),
.service-item:nth-child(11) {
    background-color: #ffffff;
}

.service-item:nth-child(1),
.service-item:nth-child(3),
.service-item:nth-child(5),
.service-item:nth-child(8),
.service-item:nth-child(10),
.service-item:nth-child(12) {
    background-color: #f0fcfc;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background-color: #47bac3;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.service-icon.book-planning {
    -webkit-mask-image: url('Assets/bookplanning.png');
    mask-image: url('Assets/bookplanning.png');
}

.service-icon.book-coaching {
    -webkit-mask-image: url('Assets/book coaching.png');
    mask-image: url('Assets/book coaching.png');
}

.service-icon.proposal {
    -webkit-mask-image: url('Assets/proposal.png');
    mask-image: url('Assets/proposal.png');
}

.service-icon.ghostwriting {
    -webkit-mask-image: url('Assets/ghostwriring.png');
    mask-image: url('Assets/ghostwriring.png');
}

.service-icon.marketing {
    -webkit-mask-image: url('Assets/p&b.png');
    mask-image: url('Assets/p&b.png');
}

.service-icon.agent {
    -webkit-mask-image: url('Assets/Agent.png');
    mask-image: url('Assets/Agent.png');
}

.service-icon.navigation {
    -webkit-mask-image: url('Assets/pubnav.png');
    mask-image: url('Assets/pubnav.png');
}

.service-icon.website {
    -webkit-mask-image: url('Assets/autweb.png');
    mask-image: url('Assets/autweb.png');
}

.service-icon.beta {
    -webkit-mask-image: url('Assets/beta.png');
    mask-image: url('Assets/beta.png');
}

.service-icon.bestseller {
    -webkit-mask-image: url('Assets/bbestseller.png');
    mask-image: url('Assets/bbestseller.png');
}

.service-name {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
    line-height: 1.4;
}

.service-icon.editing {
    -webkit-mask-image: url('Assets/editing.png');
    mask-image: url('Assets/editing.png');
}

.service-icon.illustration {
    -webkit-mask-image: url('Assets/illustration.png');
    mask-image: url('Assets/Illustrations.png');
}



/* ==========================================================================
   SERVICES SECTION RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 5%;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 4%;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-name {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .services-section {
        padding: 40px 3%;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .service-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .service-name {
        text-align: left;
    }
}




/* ==========================================================================
           SUCCESS SECTION
           ========================================================================== */
        .success-section {
            align-content: center;
            padding: 50px 5%;
            background: #051d3b;
            display: flex;
            justify-content: center;
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        .success-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .success-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
        }

        .side-images {
            display: flex;
            gap: 25px;
            flex: 0 0 auto;
        }

        .side-images img {
            width: 240px;
            height: 340px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        .success-text {
            flex: 1;
            text-align: center;
            max-width: 600px;
            margin: 0 40px;
            position: relative;
        }

        .success-text h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 40px;
            font-weight: 300;
            line-height: 1.2;
            font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
        }

        .success-text p {
            font-size: 18px;
            color: white;
            line-height: 1.6;
            margin-bottom: 30px;
            font-family: "Poppins", Sans-serif;
        }

        .success-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .quote-btn, .contact-btn {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: "Poppins", Sans-serif;
        }

        .quote-btn {
            background: #47bac3;
            color: white;
        }

        .contact-btn {
            background: #47bac3;
            color: white;
        }

        .quote-btn:hover, .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .round-images-above {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .round-images-above img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .divider {
            width: 100%;
            height: 2px;
            background: #e2e8f0;
            margin: 30px 0;
        }

        /* ==========================================================================
           SUCCESS SECTION RESPONSIVE DESIGN
           ========================================================================== */

        @media (max-width: 1350px) {
            .side-images img {
                width: 200px;
                height: 300px;
            }
        }

        @media (max-width: 1200px) {
            .side-images img {
                width: 180px;
                height: 270px;
            }
            
            .success-text {
                margin: 0 30px;
            }
            
            .success-text h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 1100px) {
            .side-images img {
                width: 160px;
                height: 240px;
            }
            
            .round-images-above img {
                width: 100px;
                height: 100px;
            }
            
            .success-text h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 1024px) {
            .success-content {
                gap: 30px;
            }
            
            .side-images img {
                width: 140px;
                height: 210px;
            }
            
            .round-images-above img {
                width: 90px;
                height: 90px;
            }
            
            .success-text h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 950px) {
            .side-images {
                flex-direction: column;
            }
            
            .side-images img {
                width: 120px;
                height: 180px;
            }
        }

        @media (max-width: 900px) {
            .side-images {
                display: none;
            }
            
            .success-text {
                margin: 0;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .success-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .success-text h2 {
                font-size: 28px;
            }
            
            .success-text p {
                font-size: 16px;
            }
            
            .success-buttons {
                flex-direction: column;
                align-items: center;
                margin-bottom: 30px;
            }
            
            .round-images-above {
                gap: 20px;
            }
            
            .round-images-above img {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            .success-section {
                padding: 60px 4%;
            }
            
            .success-text h2 {
                font-size: 24px;
            }
            
            .quote-btn, .contact-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .round-images-above img {
                width: 70px;
                height: 70px;
            }
        }



/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.why-choose-section {
    padding: 70px 5%;
    background: linear-gradient(135deg, #f8fdff 0%, #e8fcff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #47bac3, #2c5282);
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(71, 186, 195, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #47bac3, #2c5282);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 12px;
    font-family: "Poppins", Sans-serif;
    line-height: 1.4;
    padding: 0 5px;
}

.feature-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-family: "Poppins", Sans-serif;
    margin: 0;
}



/* ==========================================================================
   WHY CHOOSE US RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-section .section-title {
        font-size: 30px;
    }
    
    .feature-card {
        padding: 22px 20px;
    }
    
    .feature-card h3 {
        font-size: 17px;
    }
    
    .feature-card p {
        font-size: 14.5px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 5%;
    }
    
    .why-choose-section .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .why-choose-section .divider {
        margin-bottom: 35px;
    }
    
    .feature-card {
        padding: 20px 18px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .why-choose-section .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 18px 16px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 4%;
    }
    
    .why-choose-section .section-title {
        font-size: 22px;
    }
    
    .feature-card {
        padding: 16px 14px;
    }
    
    .feature-card h3 {
        font-size: 25px;
        font-weight: 120;
    }
    
    .feature-card p {
        font-size: 13.5px;
    }
}



/* ==========================================================================
   MANUSCRIPT PROMO SECTION
   ========================================================================== */

.manuscript-promo {
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
    width: 100%;
    text-align: center;
    background: #051d3b;
    color: white;
    position: relative;
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.manuscript-promo h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
}

.manuscript-promo p {
    color: #e8fcff;
    margin: 15px 0;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Poppins", Sans-serif;
}

.manuscript-promo .cta-button {
    background: #47bac3;
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    font-family: "Poppins", Sans-serif;
    letter-spacing: 0.5px;
}

.manuscript-promo .cta-button:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marquee-container {
    background-color: #47bac3;
    color: white;
    padding: 6px 0;
    overflow: hidden;
    width: 100%;
}

.marquee {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee span {
    padding: 0 40px;
    font-weight: bold;
    font-size: 18px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}



/* ==========================================================================
   MANUSCRIPT PROMO RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .promo-container {
        padding: 40px 15px;
    }
    
    .manuscript-promo h2 {
        font-size: 28px;
    }
    
    .manuscript-promo p {
        font-size: 16px;
    }
    
    .marquee span {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .manuscript-promo .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}



/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    font-family: "Poppins", Sans-serif;
    width: 100%;
    padding: 80px 0;
    background: #e7ecfe;
    color: #051d3b;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
    color: #051d3b;
}

.subheading {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-column {
    flex: 1;
    padding-top: 20px;
}

.contact-form-column {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 15px;
}

.info-icon {
    background: #051d3b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #051d3b;
    text-align: left;
}

.info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #051d3b;
    margin: 0;
    text-align: left;
}

.social-media {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.social-media h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #051d3b;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #051d3b;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3aa1a9;
    transform: translateY(-3px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #47bac3;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #051d3b;
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* ==========================================================================
   CONTACT SECTION RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 968px) {
    .contact-columns {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .contact-info-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-column {
        width: 100%;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        width: 100%;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .info-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .info-text h3 {
        text-align: center;
        width: 100%;
    }
    
    .info-text p {
        text-align: center;
        width: 100%;
    }
    
    .social-media {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-media h3 {
        text-align: center;
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 28px;
    }
    
    .subheading {
        font-size: 16px;
    }
    
    .contact-form-column {
        padding: 30px;
    }
    
    .info-text h3 {
        font-size: 18px;
    }
    
    .info-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-form-column {
        padding: 20px;
    }
    
    .contact-section h2 {
        font-size: 24px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .info-item {
        margin-bottom: 30px;
    }
}








/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 80px 5%;
    background: #051d3b;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .section-title {
    font-size: 40px;
    font-weight: 300;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.faq-section .divider {
    width: 60px;
    height: 3px;
    background: #47bac3;
    margin: 0 auto 50px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f9ff;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    font-family: "Poppins", Sans-serif;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #051d3b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    font-family: "Poppins", Sans-serif;
    margin: 0 0 25px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}



/* ==========================================================================
   FAQ SECTION RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .faq-section .section-title {
        font-size: 32px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }
    
    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .faq-section .divider {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 4%;
    }
    
    .faq-section .section-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .faq-icon {
        font-size: 22px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
        max-height: 300px;
    }
}

@media (max-width: 375px) {
    .faq-section {
        padding: 40px 3%;
    }
    
    .faq-section .section-title {
        font-size: 22px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
}



/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 0px;
    position: relative;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #051d3b;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
    font-style: bold;
    padding-bottom: 5px;
    cursor: default;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 18px;
    font-weight: normal;
    display: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #051d3b;
    font-weight: 200;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    line-height: 1.4;
    display: block;
    font-family: "Poppins", Sans-serif
}

.footer-column ul li a:hover {
    color: #47bac3;
    padding-left: 5px;
}

.scroll-column {
    position: relative;
}

.scroll-container {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #47bac3 #f1f1f1;
}

.scroll-container::-webkit-scrollbar {
    width: 6px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #47bac3;
    border-radius: 3px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #3aa1a9;
}

.scroll-container::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-row {
    width: 100%;
}

.contact-item {
    margin-bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.contact-item .contact-text {
    color: #051d3b;
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

.contact-item.phone .contact-text {
    font-weight: bold;
    font-size: 16px;
    color: #051d3b;
}

.contact-item.email .contact-text {
    font-weight: bold;
    color: #051d3b;
}

.main-footer .footer-container .footer-top .footer-column.contact-column .cta-button {
    background: #051d3b;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
    width: 100%;
    display: block;
}

.main-footer .footer-container .footer-top .footer-column.contact-column .cta-button:hover {
    background: #47bac3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    background-color: #051d3b;
    padding: 20px 20px;
    width: 99.5vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: #718096;
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
}

.built-by {
    color: #718096 !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

.built-by a {
    color: #47bac3;
    text-decoration: none;
}

.built-by a:hover {
    text-decoration: underline;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.ssocial-icons {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.ssocial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ssocial-icon:hover {
    background-color: #47bac3;
    transform: translateY(-2px);
}



/* ==========================================================================
   FOOTER RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-column {
        border-bottom: 1px solid #e2e8f0;
        padding: 15px 0;
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-toggle {
        cursor: pointer;
    }
    
    .dropdown-icon {
        display: block;
    }
    
    .footer-column ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .footer-column.active ul {
        max-height: 1000px;
    }
    
    .footer-column.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .contact-column ul {
        max-height: none !important;
        display: block !important;
    }
    
    .scroll-container {
        max-height: none;
        overflow: visible;
    }
    
    .main-footer .footer-container .footer-top .footer-column.contact-column .cta-button {
        width: auto !important;
        padding: 12px 16px !important;
        max-width: 280px;
        margin: 0;
        display: inline-block;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 20px;
    }
    
    .footer-brand {
        order: 2;
    }
    
    .ssocial-icons {
        order: 3;
        margin: 5px 0 0 0;
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo-container {
        order: 1;
        margin-bottom: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-footer .footer-container .footer-top .footer-column.contact-column .cta-button {
        max-width: 240px !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    
    .footer-column h3 {
        font-size: 15px;
    }
    
    .contact-item .contact-text {
        font-size: 13px;
    }
    
    .contact-item.phone .contact-text {
        font-size: 14px;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}





/* ==========================================================================
   POPUP MODAL STYLES
   ========================================================================== */

.eh-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.eh-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.eh-popup-content {
    background: #e7ecfe;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    font-family: "Poppins", Sans-serif;
}

.eh-popup-overlay.active .eh-popup-content {
    transform: translateY(0);
}

.eh-close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #051d3b;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.eh-close-popup:hover {
    color: #3aa1a9;
}

.eh-popup-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #051d3b;
}

.eh-popup-subheading {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a5568;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.eh-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.eh-form-group {
    flex: 1;
}

.eh-form-group.full-width {
    width: 100%;
}

.eh-form-input, .eh-form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    transition: border-color 0.3s ease;
}

.eh-form-input:focus, .eh-form-textarea:focus {
    outline: none;
    border-color: #47bac3;
}

.eh-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.eh-submit-btn {
    background: #051d3b;
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", Sans-serif;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

.eh-submit-btn:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* ==========================================================================
   POPUP MODAL RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .eh-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .eh-popup-content {
        padding: 30px 20px;
    }
    
    .eh-popup-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .eh-popup-content {
        padding: 20px 15px;
    }
    
    .eh-popup-title {
        font-size: 22px;
    }
}



/* ==========================================================================
   AUTHOR SERVICES HERO SECTION
   ========================================================================== */

.authour-services-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    overflow: hidden;
}

.authour-services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.authour-services-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;

}

.authour-services-headline {
    font-size: 76px;
    font-weight: 500;
    color: #2c353a;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: "Poppins", Sans-serif;
    letter-spacing: -0.5px;
}

.authour-services-description {
    font-size: 1.15rem;
    color: #2c353a;
    line-height: 1.7;
    font-family: "Eurostile Oblique", "Microgramma", "Bauhaus Std", sans-serif;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.authour-services-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.authour-services-btn-primary {
    background: white;
    color: #47bac3;
    border: 1px solid #47bac3;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 200;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.authour-services-btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.authour-services-btn-secondary {
    background: #47bac3;
    color: white;
    border: 1px solid #3bf2ff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 200;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.authour-services-btn-secondary:hover {
    background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.authour-services-featured {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 120px;
}

.authour-services-circle {
    width: 70px;
    height: 70px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.authour-services-circle:hover {
    transform: translateY(-5px);
}

.authour-services-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ==========================================================================
   AUTHOR SERVICES RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .authour-services-headline {
        font-size: 3.5rem;
    }
    
    .authour-services-description {
        font-size: 1rem;
    }
    
    .authour-services-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .authour-services-circle {
        width: 60px;
        height: 60px;
    }
    
    .authour-services-featured {
        margin-top: 25px;
    }
    
    .authour-services-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .authour-services-headline {
        font-size: 1.9rem;
    }
    
    .authour-services-featured {
        gap: 15px;
    }
    
    .authour-services-circle {
        width: 50px;
        height: 50px;
    }
}







.authour-services-section { position: relative; }

.authour-services-bg-image { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; z-index: 0; 
}

.has-cyan-gradient::before {
    content: "";
    position: absolute; top:0; left:0; width:100%; height:100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        rgba(89, 193, 201, 0.863) 0%, /* #59c1c9 */ rgba(89, 193, 201, 0.8) 45%, rgba(89, 193, 201, 0.6) 65%, rgba(89, 193, 201, 0.3) 80%, rgba(255, 255, 255, 1) 100%
    );
    backdrop-filter: blur(3px);
}

.authour-services-content { position: relative; z-index:2; }







.writing-services-block {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.writing-services-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 95%; /* Increased from 60% to bring cyan color higher */
    background: linear-gradient(to top, rgba(71, 187, 195, 0.507), transparent);
    z-index: 0;
}

.writing-header-center {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.writing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 120px;
    align-items: stretch; /* Changed to stretch for vertical alignment */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.writing-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
}

.writing-image-side {
    flex: 0 0 45%; /* Increased from 40% */
    display: flex;
    align-items: center; /* Vertically center the image */
    justify-content: center;
}

.writing-book-visual {
    width: 100%;
    max-width: 500px; /* Increased from 300px */
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    mix-blend-mode: multiply;
    opacity: 0.95;
    /* Add the floating animation */
    animation: float 8s ease-in-out infinite;
}

/* Define the floating animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.writing-main-title {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: "Poppins", Sans-serif;
    
    color: #1a3c4f;
    line-height: 1.3;
    text-align: center;
}

.writing-description-text {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
}

.writing-offer-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a3c4f;
    margin: 0px 0 0px 0;
}

.writing-offer-subtext {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 20px;

}

.writing-features-list {
    list-style: none;
    margin: 0 0 0px 0;
    padding: 0;
}

.writing-feature-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #2c3e50;
    padding-left: 25px;
    position: relative;
}

.writing-feature-item:before {
    content: "✓";
    color: #1a3c4f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.writing-mission-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a3c4f;

    line-height: 1.6;
}

.writing-action-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.writing-action-button {
    background: white;
    color: #47bac3;
    border: 1px solid #47bac3;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 200;
    border-radius: 50px; /* Changed from 6px to 50px */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.writing-action-button:hover {
   background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.writing-action-button2 {
    background: #47bac3;
    color: white;
    border: 1px solid #3bf2ff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 200;
    border-radius: 50px; /* Changed from 6px to 50px */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;

}

.writing-action-button2:hover {
     background: #3aa1a9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}



/* Responsive Design */
@media (max-width: 968px) {
    .writing-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .writing-image-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    .writing-services-block {
        padding: 50px 0;
    }
    
    .writing-main-title {
        font-size: 1.9rem;
    }
    
    .writing-book-visual {
        max-width: 320px; /* Adjusted for mobile */
    }
    
    .writing-action-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .writing-main-title {
        font-size: 1.7rem;
    }
    
    .writing-book-visual {
        max-width: 280px; /* Adjusted for small mobile */
    }
}










.book-services {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h1 {
            font-size: 2.5rem;
            color: #051d3b;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .services-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .service-tab {
            padding: 12px 25px;
            background: white;
            border: 2px solid #47bac3;
            border-radius: 30px;
            font-weight: 600;
            color: #051d3b;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-tab:hover,
        .service-tab.active {
            background: #47bac3;
            color: white;
        }

        .service-content {
            text-align: center;
            margin-bottom: 40px;
            display: none;
        }

        .service-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .service-content h2 {
            font-size: 2rem;
            color: #47bac3;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-content p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }

        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #47bac3, transparent);
            margin: 30px auto;
            width: 80%;
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            width: 350px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .package-type {
            font-size: 1.4rem;
            color: #051d3b;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .price-range {
            font-size: 1.6rem;
            color: #47bac3;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
            min-height: 280px;
        }

        .features li {
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            color: #64748b;
            position: relative;
            padding-left: 25px;
        }

        .features li:before {
            content: "✓";
            color: #47bac3;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Features Slider */
        .features-slider {
            position: relative;
            overflow: hidden;
            min-height: 280px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.3s ease;
        }

        .slide {
            min-width: 100%;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #47bac3;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .pricing-cards {
                gap: 20px;
            }
            
            .pricing-card {
                width: 320px;
            }
        }

        @media (max-width: 768px) {
            .section-title h1 {
                font-size: 2rem;
            }
            
            .services-nav {
                gap: 10px;
            }
            
            .service-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .service-content h2 {
                font-size: 1.7rem;
            }
            
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                width: 100%;
                max-width: 400px;
            }
            
            .features {
                min-height: auto;
            }
            
            .features-slider {
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 1.7rem;
            }
            
            .services-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .service-tab {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
            
            .service-content h2 {
                font-size: 1.5rem;
            }
            
            .service-content p {
                font-size: 1rem;
            }
        }