@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.light {
    --mainColor: #64bcf4;
    --hoverColor: #5bacdf;
    --backgroundColor: #f1f8fc;
    --darkOne: #312f3a;
    --darkTwo: #45424b;
    --lightOne: #919191;
    --lightTwo: #aaa;
}

.dark {
    --mainColor: #64bcf4;
    --hoverColor: #5bacdf;
    --backgroundColor: #192e3a;
    --darkOne: #f3f3f3;
    --darkTwo: #fff;
    --lightOne: #ccc;
    --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

.big-wrapper {
    /* position: relative; */
    padding: 1.7rem 0 2rem;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--backgroundColor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    position: relative;
    max-width: 81rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 10;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_container {
    display: flex;
    max-width: 81rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 10;
}

.left_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.right_box {
    width: 80%;
    display: flex;
    position: relative;
    right: 50px;
}

.image-box {
    height: 500px !important;
    position: relative;
    right: 12px;
}

.image-box img {
    width: 700px;
    position: relative;
    right: 150px;
    bottom: 100px;
}

header {
    position: relative;
    z-index: 70;
}

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

.overlay {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 0.6rem;
    margin-top: -0.6rem;
}

.logo h3 {
    color: var(--darkTwo);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 700;
}

.links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.links a {
    color: var(--lightTwo);
    margin-left: 4.5rem;
    display: inline-block;
    transition: 0.3s;
}

.links a:hover {
    color: var(--hoverColor);
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.9rem;
    color: #fff !important;
    background-color: var(--mainColor);
    border-radius: 16px;
    text-transform: capitalize;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--hoverColor);
    transform: scale(1) !important;
}

.hamburger-menu {
    position: relative;
    z-index: 99;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}

.hamburger-menu .bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--darkTwo);
    border-radius: 3px;
    transition: 0.5s;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--darkTwo);
    border-radius: 3px;
    transition: 0.5s;
}

.bar::before {
    transform: translateY(-8px);
}

.bar::after {
    transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
    background-color: transparent;
}

.big-wrapper.active .bar::before {
    transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
    transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.big-title {
    font-size: 1.4rem;
    color: var(--darkOne);
    text-transform: capitalize;
    line-height: 1.4;
}

.text {
    color: var(--lightOne);
    font-size: 1.1rem;
    margin: 1.9rem 0 2.5rem;
    max-width: 600px;
    line-height: 2.3;
}

.showcase-area .btn {
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
    width: 123%;
    transform: translate(15%, 25px);
}

.toggle-btn {
    display: inline-block;
    border: none;
    background: var(--darkTwo);
    color: var(--backgroundColor);
    outline: none;
    cursor: pointer;
    height: 39px;
    width: 39px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: 0.3s;
}

.toggle-btn i {
    line-height: 39px;
}

.toggle-btn:hover {
    background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
    display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
    display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
    display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
    display: none;
}

.shape {
    position: absolute;
    z-index: 0;
    width: 500px;
    bottom: -180px;
    left: -15px;
    opacity: 0.1;
}

.copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    animation: appear 1s 1 both;
}

@keyframes appear {
    0% {
        clip-path: circle(30% at -25% -25%);
    }
    100% {
        clip-path: circle(150% at 0 0);
    }
}

@media screen and (max-width: 870px) {
    .hamburger-menu {
        display: flex;
        background-color: var(--backgroundColor);
        border-radius: 10px;
        padding: 5px;
    }
    .links {
        position: fixed;
        top: 0;
        right: 0;
        max-width: 300px;
        width: 100%;
        height: 100%;
        background-color: #312f3a;
        color: var(--backgroundColor);
        z-index: 95;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.5s;
    }
    .links ul {
        flex-direction: column;
        padding-bottom: 100px;
        ;
        font-size: 23px;
    }
    .links ul li:first-child {
        margin-top: 70px;
    }
    .links a {
        color: #fff;
        margin-left: 0;
        padding: 2rem 0;
    }
    .links .btn {
        background: none;
        font-size: 23px;
    }
    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        pointer-events: none;
        transition: 0.5s;
    }
    .big-wrapper.active .links {
        transform: translateX(0);
        box-shadow: 0 0 50px 2px rgba(243, 237, 237, 0.4);
    }
    .big-wrapper.active .overlay {
        pointer-events: all;
        opacity: 1;
    }
    .showcase-area {
        padding: 2.5rem 0;
        max-width: 700px;
        margin: 0 auto;
    }
    .showcase-area .container {
        grid-template-columns: 1fr;
        justify-content: center;
        grid-gap: 2rem;
    }
    .big-title {
        font-size: 1.1rem;
    }
    .text {
        font-size: 0.95rem;
        margin: 1.4rem 0 1.5rem;
    }
    .person {
        width: 100%;
        transform: none;
    }
    .logo h3 {
        font-size: 1.25rem;
    }
    .shape {
        bottom: -180px;
        left: -150px;
    }
}

@media screen and (max-width: 470px) {
    .container {
        padding: 0 1.5rem;
    }
    .big-title {
        font-size: 0.9rem;
    }
    .text {
        margin: 1.1rem 0 1.5rem;
    }
    .showcase-area .btn {
        font-size: 0.8rem;
    }
    .image-box img {
        width: 450px;
        position: relative;
        top: -90px;
        right: 25px;
        bottom: 150px;
    }
    .image-box {
        height: 300px !important;
    }
    .get-started {
        height: 400px !important;
    }
    .carousel-box {
        width: 90% !important;
    }
}

.show-cards .card {
    border-top: 10px solid #0453a8 !important;
    border-radius: 12px;
    margin: 2px;
    background: #f1f8fc49;
}

.dark .show-cards .card {
    border-top: 10px solid #0453a8 !important;
}

.show-cards p {
    color: var(--darkOne);
    text-align: justify;
    padding: 0 10px;
}

.show-cards .card:hover {
    transition: all 0.2s ease;
    transform: scale(105%);
}

.show-cards h3 {
    color: var(--mainColor);
}

.card-container {
    margin-top: 100px !important;
    border-color: var(--darkTwo);
}

footer {
    background-color: #151618e7;
    padding: 50px 0;
    text-align: center;
}

.social-icons i {
    font-size: 24px;
    margin: 0 10px;
    color: whitesmoke;
    transition: color 0.3s ease;
}

.social-icons .facebook:hover {
    color: #0453a8;
    transition: all 0.2s ease;
    transform: scale(120%);
}

.social-icons .twitter:hover {
    color: #000000;
    transition: all 0.2s ease;
    transform: scale(120%);
}

.social-icons .instagram:hover {
    color: #ff2f5c;
    transition: all 0.2s ease;
    transform: scale(120%);
}

.social-icons .linked-in:hover {
    color: #007bff;
    transition: all 0.2s ease;
    transform: scale(120%);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

footer img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 5px;
}

footer p {
    color: white;
}

.carousel-box {
    width: 75%;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.171);
}

.about-card p {
    color: var(--darkOne);
}

.about-card h3 {
    color: var(--darkOne);
}

.icon-hover i:hover {
    transition: all 0.2s ease;
    transform: scale(120%);
    color: #0453a8;
}


/* ======= GLOBAL RESET ======= */

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

body {
    background-color: #f4f8fb;
    color: #1a1a1a;
    overflow-x: hidden;
}


/* ======= NAVBAR ======= */

.navbar {
    background: #0d47a1;
    /* Deep Professional Blue */
    color: #fff;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    color: #90caf9;
}


/* ======= HERO SECTION ======= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
}

.hero .content {
    max-width: 50%;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 700;
}

.hero p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.hero .btn {
    background: #90caf9;
    color: #0d47a1;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #64b5f6;
}


/* ======= FEATURES ======= */

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 3rem 8%;
    background: #fff;
}

.feature-box {
    background: #e3f2fd;
    padding: 2rem;
    width: 300px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 1rem;
}


/* ======= FOOTER ======= */

.footer {
    background: #0d47a1;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.95rem;
}

.footer a {
    color: #90caf9;
    text-decoration: none;
}


/* ================================
   BLOG PAGE STYLES
   ================================ */

.blog-section {
    padding: 80px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 2.2rem;
    color: var(--darkOne);
    text-transform: uppercase;
    font-weight: 700;
}

.blog-header .highlight {
    color: var(--mainColor);
}

.blog-header p {
    color: var(--lightOne);
    font-size: 1rem;
    margin-top: 10px;
}


/* Blog Grid Layout */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}


/* Individual Blog Card */

.blog-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.25);
}


/* Blog Image */

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


/* Blog Text Content */

.blog-content {
    padding: 20px;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: var(--darkTwo);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content p {
    color: var(--lightOne);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--mainColor);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--hoverColor);
    text-decoration: underline;
}


/* Dark Mode Compatibility */

.dark .blog-card {
    background-color: rgba(255, 255, 255, 0.05);
}

.dark .blog-content h3 {
    color: var(--darkTwo);
}

.dark .read-more {
    color: var(--mainColor);
}


/* Responsive Design */

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 1.8rem;
    }
    .blog-content p {
        font-size: 0.95rem;
    }
}