* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #fff;
    color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px !important;
}


/* Navbar Styles */
.navbar {
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    background-color: #ffffff;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
}

/* Logo Image */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-btn {
    background: linear-gradient(135deg, #6e5edc, #8869f3) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: 0.3s !important;
}

/* Navigation Menu Styles */
.nav-menu {
    transition: top 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

/* dl,
ol,
ul {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
} */

.header-btn {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.header-btn button {
    margin-left: 14px;
}


.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.5s ease;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #000;
    transition: all 0.3s ease;
}


/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    header {
        padding: 25px !important;
    }

    .navbar {
        position: fixed;
        /* top: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        z-index: 1000;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: -150%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        text-align: center;

    }

    .nav-menu.active {
        top: 72px;
    }

    .nav-links {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0 !important;
    }
}


/* Hero Section with Wave Background */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: linear-gradient(to right, #f8f8ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Logo/Wave.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 55%;
}

.badge {
    background: #f1f1f1;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #5f3dc4;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-green {
    background-color: #d1f5c8;
    color: #000;
}

.btn-outline {
    border: 2px solid #bcbcff;
    color: #5f3dc4;
    background-color: transparent;
}

.hero-right {
    text-align: center;
}

.hero-img {
    width: 340px;
    border-radius: 20px;
}

.info-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: left;
}

.info-card h3 {
    font-family: Georgia, serif;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    font-size: 14px;
    margin: 6px 0;
}

.highlight {
    font-weight: bold;
    color: #5f3dc4;
}

.who-am-i-section {
    padding: 30px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #222;
    overflow: hidden;
}

.who-am-i-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    animation: fadeInUp 1s ease-in-out;
}

.who-left img {
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-right {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.who-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.highlight-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(to right, #7b5af5, #5dc27d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-in-out;
}

.highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.35s ease;
    position: relative;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-image: linear-gradient(135deg, #7b5af5, #5dc27d) 1;
}

.highlight-card img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.highlight-card strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
    color: #000;
}

/* Border Color Variants */
.green-border {
    border-color: #c9f7e6;
}

.blue-border {
    border-color: #d1eaff;
}

.purple-border {
    border-color: #e8dcff;
}

.pink-border {
    border-color: #ffdce8;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION 3 - COMPANIES I WORKED WITH */
.companies-section {
    padding: 30px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* 2x2 layout */
    gap: 30px;
}

.company-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s;
}

.company-card:hover {
    transform: translateY(-5px);
}

.company-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.company-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visit-btn {
    display: inline-block;
    background-color: #6366f1;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.visit-btn:hover {
    background-color: #4f46e5;
}

.company-logo {
    height: 70px;
    /* Bigger logo */
    width: 100%;
    max-width: 30%;
    object-fit: contain;
    /* margin-top: 20px; */
    /* display: block; */
    /* margin: 0; */
    /* margin-left: auto; */
    margin-right: auto;
}


/* SECTION 4 - WHAT I DO */
.what-i-do {
    position: relative;
    padding: 30px 40px;
    background-color: #fff;
    /* Fallback background */
    overflow: hidden;
}

/* Wave background image with 18% opacity */
.what-i-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Logo/Wave.png') no-repeat center center;
    background-size: cover;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

/* Ensure the section content stays above the background */
.what-i-do>* {
    position: relative;
    z-index: 1;
}


.section-title {
    text-align: center;
    font-size: 2rem;
    color: #6a4df4;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: #fff;
    padding: 30px 24px;
    border-radius: 18px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    height: 50px;
    margin-bottom: 20px;
}

.service-category {
    color: #555;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.service-title {
    font-size: 1.5rem;
    color: #6a4df4;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 16px;
}

.cta-link {
    color: #3b3bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #6a4df4;
}

/* SECTION 5 */
/* Section Styles */
.featured-section {
    padding: 2rem 2rem;
    text-align: center;
}

/* Header */
.section-header h2 {
    color: #7b5af5;
    font-size: 2rem;
    font-weight: 700;
}

.section-header p {
    margin-top: 0.3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

/* Content Layout */
.featured-content {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

/* Left Column */
.left-column {
    max-width: 480px;
    text-align: left;
}

.forbes-badge {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid;
    border-image: linear-gradient(90deg, #7b5af5, #5dc27d) 1;
    background: linear-gradient(90deg, #7b5af5, #5dc27d);
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 8px;
}

.left-column h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
}

.left-column p {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.youtube-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: #7b5af5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.youtube-btn:hover {
    background-color: #5a3ee0;
    /* Slightly darker shade */
    transform: translateY(-2px);
    /* Lifts the button slightly */
    cursor: pointer;
}

/* Right Column */
.right-column {
    max-width: 600px;
    flex: 1;
}

.image-box {
    aspect-ratio: 16/9;
    background: #fff;
    border: 3px solid transparent;
    border-radius: 20px;
    /* Outer curve */
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #7b5af5, #5dc27d) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* IMPORTANT: clips the image */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Optional: ensure no extra rounding */
}

/* Responsive */
@media (max-width: 768px) {
    .nav-link {
        display: block;
    }

    .featured-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .left-column,
    .right-column {
        max-width: 100%;
    }

    .video-box {
        width: 100%;
    }
}

/* SECTION 6 - AI UNLOCKED  */
.book-section {
    padding: 2rem 2rem;
    text-align: center;
}

/* Title */
.section-title h2 {
    color: #7b5af5;
    font-size: 2rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 0.5rem;
}

/* Content */
.book-content {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

/* Book Image */
.book-image img {
    width: 350px;
    max-width: 100%;
    /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);*/
}

/* Book Info */
.book-info {
    max-width: 600px;
    text-align: left;
}

.book-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.book-info .description {
    font-size: 1rem;
    color: #111;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Author */
.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signature {
    width: 200px;
    height: auto;
}


/* Buttons */
.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.primary {
    background-color: #7b5af5;
    color: #fff;
}

.secondary {
    border: 2px solid #7b5af5;
    color: #7b5af5;
}

/* Responsive */
@media (max-width: 768px) {
    .book-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .book-info {
        text-align: center;
    }

    .author {
        justify-content: center;
    }
}



/* Author Section */
.author {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author img {
    width: 100% !important;
    height: 50px;
    max-width: 150px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Section-8 */
.latest-thoughts {
    padding: 2rem 2rem;
    text-align: center;
    background: #fff;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #7b5af5;
}

.section-header p {
    color: #555;
    max-width: 650px;
    margin: 0.5rem auto 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: #7b5af5;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0.75rem 0;
}

.blog-content a {
    color: #1a1aaf;
    font-weight: 500;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero button {
        width: 100%;
    }
}


/* Section 9 - News & Achievements */
.news-section {
    padding: 30px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.news-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.headline {
    text-align: center;
    color: #5a41dc;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subheadline {
    text-align: center;
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}


.badge-title {
    font-size: 18px;
    color: #5a41dc;
    font-weight: bold;
    margin-bottom: 16px;
}

.badge {
    background-color: #e6e5ff;
    color: #333;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    display: inline-block;
}

.highlight-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.highlight-img {
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    flex: 1;
    /* min-width: 280px; */
}

.highlight-text h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.highlight-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.purple {
    background-color: #5a41dc;
    color: white;
    border: none;
}

.btn.purple:hover {
    background-color: #4732b8;
}

.btn.outline {
    border: 1px solid #5a41dc;
    color: #5a41dc;
    background-color: transparent;
}

.btn.outline:hover {
    background-color: #f2f2ff;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero button {
        width: 100%;
    }
}



/* Section 10 - E-Book Launch Styles */
.ebook-section {
    padding: 30px 20px;
    background-color: #ffffff;
    border: 2px solid #d4d4f3;
    border-radius: 8px;
    margin: 60px auto;
    max-width: 1000px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.ebook-section .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #5a41dc;
    text-align: center;
    margin-bottom: 8px;
}

.ebook-section .subtitle {
    font-size: 18px;
    color: #5a41dc;
    text-align: center;
    font-weight: 500;
    margin-bottom: 4px;
}

.ebook-section .subtitle span {
    font-weight: bold;
    text-decoration: underline;
}

.ebook-section .description {
    text-align: center;
    font-size: 15px;
    color: #222;
    margin-bottom: 40px;
}

.ebook-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.book-cover img {
    max-width: 300px;
    border-radius: 6px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);*/
}

.book-details {
    max-width: 500px;
}

.book-details h3 {
    color: #5a41dc;
    font-size: 18px;
    margin-bottom: 10px;
}

.book-details p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    margin-bottom: 20px;
}

.format {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.get-copy {
    font-size: 16px;
    color: #5a41dc;
    font-weight: 600;
    margin-bottom: 16px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.purple {
    background-color: #5a41dc;
    color: white;
    border: none;
}

.btn.purple:hover {
    background-color: #4732b8;
}

.btn.outline {
    border: 1px solid #5a41dc;
    color: #5a41dc;
    background-color: transparent;
}

.btn.outline:hover {
    background-color: #f1f0ff;
}

.btn.reviews {
    background-color: #675aff;
    color: white;
}

.btn.reviews:hover {
    background-color: #5145c7;
}

/* Section 11 Styles */
.contact-section {
    font-family: 'Segoe UI', sans-serif;
    padding: 30px 20px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    color: #4e3de4;
    font-size: 28px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 10px auto 40px;
    color: #444;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(160deg, #4630ee, #3b2db4);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin-right: 12px;
    font-size: 18px;
    text-decoration: none;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

input[type="text"],
input[type="email"],
textarea {
    flex: 1;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.submit-btn {
    align-self: flex-start;
    background: #7d5fff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #6a4de8;
}

/* Footer */
.footer-bottom {
    background-color: #7b5af5;
    color: #FFFFFF;
    font-size: 13px;
    text-align: center;
    padding: 10px 0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        flex-direction: column-reverse;
        padding: 85px 40px;
    }

    .hero-left {
        padding-top: 50px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-buttons a {
        font-size: 12px;
        padding: 8px 12px;
        margin-right: 10px;
    }

    .blog-card img {
        max-width: 300px;
    }

    .who-am-i-section {
        padding: 30px 20px;
    }

    .who-am-i-container {
        flex-direction: column;
        gap: 4px;
    }

    .who-right {
        padding: 25px;
    }

    /* .company-card {
        max-width: 400px;
        margin: auto;
    } */

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .book-cover {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        font-size: 10px;
        padding: 8px 12px;
        margin-right: 10px;
    }

    .book-cover {
        flex-direction: column !important;
    }

}

/* Crousel */

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    overflow: hidden;
}

.featured-content {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.left-column,
.right-column {
    padding: 10px;
    flex: 1;
}

.right-column img {
    width: 100%;
    /* max-width: 400px; */
    height: auto;
}

.carousel-dots {
    text-align: center;
    padding-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}