/* General Styles */
body {
    background-color: #333;
}

section {
    padding-top: 60px;
    /* padding-bottom: 60px; */
}

nav {
    background-color: #292D4F;
    box-shadow: 0px 2px 10px #000;
}

nav li {
    text-decoration: none;
    display: inline;
}

nav i {
    padding: 3px;
    border: 2px solid #337ab7;
    border-radius: 5px;
    color: #337ab7;
}

nav a {
    color: #fff;
}

#splash-page {
    background-color: #3F4678
        /*#E59749*/
    ;
}

.jumbotron {
    text-align: center;
    background-color: #C2C7EA !important;

}

.jumbotron hr {
    width: 30%;
}

.jumbotron h2 {
    margin-top: -5px;
}

.jumbotron p {
    margin-top: 30px;
    color: #3F4678 !important;
    padding: 0px 1rem;
}

.silver-button {
    margin-top: 10px;
    color: #545EA3;
}

#about-page {
    background-color: #3F4678;
    padding-bottom: 50px;
    overflow: hidden;
    opacity: 0;
}

#about-page h2,
#about-page h4 {
    color: #fff !important;
}
#about-page p{
    font-size: large;
}
#about-page img {
    /* min-width: 50px;
    max-width: 400px; */
    /* code for horizontal image flipping from css-tricks.com */
    /* -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH"; */
}

#about-page h1,
#about-page h3 {
    color: #FFF !important;
}

#about-page .purple-button {
    border: 3px solid #fff !important;

    color: #fff !important;
}

#bio {
    /* background-color: #fff; */
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #fff !important;
}

.purple-button {
    margin-top: 10px;
    background-color: #3F4678;
    color: #9FA8EA;
}

.purple-button:hover {
    background-color: #545EA3;
    color: #9FA8EA;
}

#portfolio-page {
    background-color: #fff;
    color: #3F4678;
}

#portfolio-page img {
    margin-bottom: 10px;
    border: solid #fff 3px;
}

#portfolio-page .col-sm-6 {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#feature-page {
    padding-bottom: 50px;
    background-color: #C2C7EA !important;
    font-size: larger;
}

#contact-page {
    background-color: #DBE1EF;
    padding-bottom: 50px;
}

#contact-form {
    padding-bottom: 20px;
    margin-top: 50px;
}

#contact-text {
    padding-top: 10px;
    /* background-color: #fff; */
    color: #1F5450;
}

footer {
    color: #ddd;
    box-shadow: 0px -2px 10px #000;
}

#social-media {
    padding-bottom: 10px;
    background-color: #3F4678;
}

.socialdot {
    border: solid #fff 3px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding-top: 5px;
    display: inline-block;
    color: #E6EFE9
        /*#9FA8EA*/
    ;
}

.socialdot:hover {
    color: #D1EAC5;
    border-color: #9FA8EA;
}

#copyright {
    background-color: #292D4F;
}

/* Typography */
h1,
h2,
h3,
h4 {
    text-align: center;
}

h1,
h2 {
    font-family: 'Pacifico', 'Source Sans Pro', sans-serif;
}

h3 {
    padding-top: 15px;
}

h3,
h4,
h5,
p {
    font-family: 'Source Sans Pro', sans-serif;
}

footer h3 {
    font-family: 'Pacifico', 'Source Sans Pro', sans-serif;
}

.navbar-brand {
    font-family: 'Pacifico', 'Source Sans Pro', sans-serif;
}

.navbar-nav {
    font-family: 'Source Sans Pro', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    /* Adjust this value based on your design */
    left: 50%;
    /* Centers the indicator horizontally */
    transform: translateX(-50%);
    /* Ensures precise centering */
    text-align: center;
    z-index: 10;
    /* Ensures the indicator is visible above other content */
}

.scroll-arrow {
    display: inline-block;
    font-size: 24px;
    /* Size of the arrow, adjust as needed */
    color: #fff;
    /* Color of the arrow, choose based on your theme */
    text-decoration: none;
    /* Removes underline from the link */
    animation: bounce 2s infinite;
    /* Calls the keyframes named 'bounce' */
}

.scroll-arrow:hover {
    color: #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
        /* Controls how high the arrow bounces */
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Base styles for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jumbotron,
.scroll-indicator {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    margin-bottom: 0 !important;
    /* Start with elements being invisible */
}

.jumbotron {
    animation-delay: 0.5s;
    /* Delays the start of the jumbotron animation */
}

.scroll-indicator {
    animation-delay: 1s;
    /* Delays the start of the scroll indicator animation */
}

/* Ensure icons and links fade in smoothly as well */
.fa,
.btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fa {
    animation-delay: 1.2s;
}

.btn {
    animation-delay: 1.4s;
    /* Stagger the appearance of each button */
}

/* Base styles for the image */
#about-page img {
    /* width: 400px; */
    height: auto;
    display: block;
    /* Ensures it takes up the entire line */
    margin: 0 auto;
    /* Centers the image if it doesn't cover the full width */
}

.pricing-table-3 {
    box-shadow: 0 0 10px 0 rgba(77, 109, 230);
    text-align: center;
    padding: 38px 0 40px;
    transition: 0.3s ease-in;
    margin-bottom: 30px;
}

.pricing-table-3:hover {
    border-color: #3F4678;
}

.pricing-table-3 .price-header {
    position: relative;
}

.pricing-table-3 .price-header .pbadge {
    position: absolute;
    left: 50%;
    top: -60px;
    width: 80%;
    background-color: #3F4678;
    color: #fff;
    padding: 10px 0;
    transform: translateX(-50%);
}

.pricing-table-3 .price-header .pbadge:after {
    position: absolute;
    left: -40px;
    top: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid #0b56ac;
    border-top: 22px solid transparent;
    content: "";
}

.pricing-table-3 .price-header .pbadge:before {
    position: absolute;
    right: -40px;
    top: 0;
    border-left: 20px solid #0b56ac;
    border-right: 20px solid transparent;
    border-top: 22px solid transparent;
    content: "";
}

.pricing-table-3 .price-header .title {
    color: #282828;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.pricing-table-3 .price-header .icon {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 30px;
    color: #3F4678;
}

.pricing-table-3 .price-header .price {
    font-size: 50px;
    line-height: 60px;
    color: #3F4678;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-table-3 .price-header .price .dollar {
    font-size: 33px;
    line-height: 33px;
    position: relative;
    top: -12px;
}

.pricing-table-3 .price-header .price .month {
    font-size: 22px;
    line-height: 23px;
}

.pricing-table-3 .price-footer {
    margin-top: 40px;
}

.pricing-table-3 .price-footer .order-btn {
    display: inline-block;
    width: 165px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 25px;
    color: #fff;
    transition: 0.5s ease-in;
    font-weight: 600;
    background-color: #3F4678;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.pricing-table-3 .price-footer .order-btn:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: skewX(35deg) translateX(-60px);
    transition: 0.5s ease-in;
    content: "";
}

.pricing-table-3 .price-footer .order-btn:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: skewX(35deg) translateX(60px);
    transition: 0.5s ease-in;
    content: "";
}

.pricing-table-3 .price-footer .order-btn:hover:after {
    transform: skewX(35deg) translateX(190px);
}

.pricing-table-3 .price-footer .order-btn:hover:before {
    transform: skewX(35deg) translateX(-190px);
}

.pricing-table-3 .price-body ul {
    margin: 0;
    padding: 0;
}

.pricing-table-3 .price-body ul li {
    list-style: none;
    display: block;
    color: #8997a7;
    margin: 27px 0;
}

.pricing-table-3 .price-body ul li:first-child {
    margin-top: 0;
}

.pricing-table-3 .price-body ul li:last-child {
    margin-bottom: 0;
}

.pricing-table-4 {
    text-align: center;
    padding: 38px 0 40px;
    transition: 0.3s ease-in;
    position: relative;
    border: 1px solid #e5e5e5;
    z-index: 0;
    margin-bottom: 30px;
}

/* Media query for small devices */
@media (max-width: 767px) {
    #about-page img {
        width: 100%;
        /* Ensures the image stretches to cover the width of small screens */
        height: auto;
        /* Keeps the image's aspect ratio intact */
        padding: 10px 0;
        /* Adds vertical padding for spacing */
        border-radius: 8px;
        /* Optional: Adds rounded corners for aesthetics */
    }

    #contact-form {
        margin-top: 0px;
    }

}

@media (min-width: 1200px) {


    #contact-page img,
    #feature-page img {
        width: 60%;
        /* Sets a maximum width to prevent the image from being too wide on large screens */
        max-width: 500px;
        /* Additional control to ensure images do not become overly large */
        height: auto;
        /* Maintains aspect ratio */
        display: block;
        margin: 0 auto;
        /* Keeps the image centered */
    }

    #social-media p {
        margin-left: 10rem;
    }

    .jumbotron p {
        padding: 0px 20rem;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s forwards;
    opacity: 0;
}

/* pricing section animation  */
/* Keyframes for slide-up and fade-in animation */
@keyframes slideInUpFade {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure initial styles hide the content appropriately */
.animate-on-scroll-price {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* feature anmation css  */
/* Keyframes for slide-up and fade-in animation */
@keyframes slideUpFeature {
    from {
        transform: translateY(0px);
        opacity: 0;
    }

    to {
        transform: translateY(30px);
        opacity: 1;
    }
}

/* Ensure initial styles hide the content appropriately */
.feature-animate {
    opacity: 0;
    transform: translateY(-30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

.feature-visible {
    opacity: 1;
    transform: translateY(0);
}

