/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

/* Fallback for browsers that don't support scroll-behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
}

a:focus {
    box-shadow: none;
}

a:focus,
a:hover,
a:active {
    text-decoration: none;
    color: #2623d0;
}


.container .columns {
    margin-left: -1rem;
    margin-right: -1rem;
}

.container .column {
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-body {
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}


.navbar .navbar-brand.logo {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.logo-img {
    padding-right: 10px;
    display: inline-block;
    height: 24px;
}

.hero-section {
    background: #0a007e center;
    background-size: auto;
    padding-bottom: 3rem;
/* Rectangle 10: */
background-image: -webkit-linear-gradient(44deg, #0C0091 0%, #00A87E 100%);
background-image: -o-linear-gradient(44deg, #0C0091 0%, #00A87E 100%);
background-image: linear-gradient(134deg, #0C0091 0%, #00A87E 100%);
}

.hero-section .slogan-bold {
    display: block;
}

.hero-section .slogan-normal {
    display: block;
}

.hero-section p {
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 200;
    opacity: 0.8;
    width: 90%;
    margin-bottom: 2rem;
}

.slogan {
    background: transparent;
    padding-top: 3rem;
    color: #fff;
    text-align: left;
    max-width: 1280px;
}

.slogan h1 {
    font-size: 3.2rem;
    font-family: 'Poppins', serif;
    font-weight: 700;
    text-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    max-width: 950px;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}


.slogan-img {
    max-width: 80%;
    margin-top: 25px;
}

.main-header {
    background: transparent;
}

.main-header a {
    color: #fff;
}

.slogan .slogan-bold {
    color: #00ffd4;
}


.slogan .btn-start {
    padding: .9rem 1.5rem;
    height: auto;
    background: transparent;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    border-color: rgba(255, 255, 255, .4);
    letter-spacing: 0.05rem;
}

.feature-title {
    font-weight: 200;
    font-size: 1rem;
    padding: .5rem 0 .5rem 0;
    opacity: .5;
    text-align: center;
    display: inline-block;
    border-bottom: 1px solid #bcb9b9;
    margin: 0 auto 2rem;
}

.main-header .navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0 1rem 0;
}

.main-header .navbar-section .btn.btn-link {
    color: #fff;
    padding: .25rem 1.2rem;
    opacity: .9;
}

.main-header .btn-hire-me {
    background: #00bc9e;
    border-color: transparent;
    color: #ffffff;
    border-radius: 50px;
    padding: .25rem 1rem;
}

/* LinkedIn icon in navbar */
.main-header .navbar-section img {
    height: 30px;
    width: 30px;
    /* filter: brightness(0) invert(1); Makes the icon white */
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact-icons{
    height: 30px;
    width: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-header .navbar-section img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Tech Section */

.tech-section {
    background: #f4f4f4;
    padding: 2rem 0;
    text-align: center;
}

.tech-title {
    text-align: center;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    font-weight: 200;
    opacity: .5;
}


/* Technology logos container */

.tech-section a {
    display: inline-block;
    margin-right: 3.5rem;
}

/* Smooth scroll offset for sections */
.tech-section,
.about-section,
.footer-section {
    scroll-margin-top: 80px; /* Additional offset for smooth navigation */
}

.tech-section a:last-child {
    margin: 0;
}

.tech-section img {
    height: 70px !important;
    width: auto;
    transition: transform 0.3s ease;
}

.tech-section img:hover {
    transform: scale(1.1);
}

.aws-logo {
    height: 65px !important;
}

/* Pricing Section (if needed) */

.pricing-section {
    padding: 0 0 4rem 0;
    background: #0a007e;
}

.pricing-section .panel {
    text-align: center;
    background: #fff;
    border: none;
}

.pricing-section .panel ul {
    list-style: none;
    margin: 0 1rem;
}

.pricing-section .panel .panel-title {
    font-size: .8rem;
    font-weight: 400;
    padding: .5rem 0 0 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.pricing-section .panel p {
    margin: 0;
}

.pricing-section .panel .price {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-section .btn-price {
    padding: .6rem 1rem;
    background: #1f1f23;
    color: #fff;
    height: auto;
    min-width: 220px;
    font-size: .9rem;
}

.pricing-section .panel .panel-footer {
    padding-bottom: 2rem;
}

/* Team Section (if needed) */

.team-section {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 3rem 0;
    background: #f7f7f7;
}


.team-section .team-title {
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem 0;
}

.team-section .name {
    font-size: 1rem;
    font-weight: 700;
    padding: .6rem 0 .2rem 0;
    display: block;
}


.team-section .title {
    font-size: .8rem;
    opacity: .5;
}


.team-section img {
    max-width: 250px;
}

.team-section .s-circle {
    border-radius: 4px;
}


/* About Section */

.about-section {
    padding: 3rem 0 4rem 0;
    text-align: center;
}



.about-section .about-content {
    padding: 0 1rem;
}

.about-section img {
    max-height: 60px;
}

.about-section h3 {
    font-size: .9rem;
    font-weight: 700;
    padding: 1rem 0 .1rem 0;
}

.about-section p {
    font-size: .8rem;
    font-weight: 400;
    opacity: .8;
}

.about-section a {
    color: #382CBE;
}



/* Work Section (if needed) */

.work-section {
    padding: 4rem 0 1rem 0;
    background: #0a007e;
    color: #fff;
    background-size: cover;
}

.work-feature-bold {
    color: #00ffd4;
}

.work-img img {
    width: 300px;
}

.work-section .work-feature {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
    text-align: center;
}



/* Open Source Section (if needed) */

.open-source-section {
    padding: 4rem 0;
    text-align: center;
}

.open-source-feature {
    font-weight: 700;
    font-size: 3.5rem;
}

.open-source-section .btn-open-source {
    padding: .8rem 1.5rem;
    background: #fff;
    border-color: #ddd;
    color: #444;
    height: auto;
}


.footer-section {
    background: #0a007e;
    color: #fff;
    padding: 3rem 0;
}

.footer-section h4 {
    font-size: 1rem;
    color: #fff;
}

.footer-section .nav .nav-item a {
    padding: .3rem 0rem;
    color: #fff;
    opacity: 0.8;
    font-weight: 200;
}



@media (max-width: 600px) {

    .slogan {
        padding-top: 0rem;
    }

    .slogan h1 {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: .5rem;
    }

    .hero-section {
        padding-bottom: 2rem;
    }

    .hero-section p {
        font-size: .7rem;
        width: 100%;
        margin-bottom: 1rem;
    }

    .about-section {
        padding: 1rem 0 2rem 0;
    }

    .about-section .about-content {
        padding-right: 0;
        padding-bottom: 1.5rem;
        text-align: center;
        border-bottom: 1px solid #ddd;
        margin-bottom: 1.5rem;
    }

    .tech-section a {
        margin: 10px 15px;
    }

    .pricing-section .panel {
        text-align: center;
        background: #fff;
        margin-bottom: 1rem;
    }

    .about-section h3 {
        font-size: 1rem;
        font-weight: 700;
        padding: 1rem 0 .1rem 0;
    }

    .work-section {
        padding: 2rem 0;
        text-align: center;
    }

    .work-section .work-feature {
        font-size: 2rem;
    }

    .open-source-section {
        padding: 2rem 0;
    }

    .open-source-feature {
        font-size: 2rem;
    }

    .tech-section img {
    height: 45px !important;
}

    .footer-section {
        padding: 2rem 0;
    }

    .footer-content {
        padding-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 0;
    }

    .feature-title {
        font-weight: 200;
        font-size: 1rem;
        padding: 1rem 0 1rem 0;
        opacity: .5;
    }

    .team-section {
        padding: 1rem 0;
    }

    .pricing-section {
        padding: 0 0 2rem 0;
    }

    .team-section .title {
        font-size: .8rem;
        opacity: .5;
        padding-bottom: 2rem;
        display: block;
    }

    .pricing-section .btn-price {
        padding: .6rem .5rem;
        background: #382CBE;
        color: #fff;
        height: auto;
        width: 90%;
        font-size: .8rem;
    }

}