/* Reset some basic elements */


img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    /* Use a fallback font in case your primary font doesn't load */
}

section {
  margin-bottom: 50px; /* Add 50 pixels of margin below each section */
}

.container {
    width: 100%;
    max-width: 1200px;
    /* Adjust as per your design */
    margin: 0 auto;
    padding: 0 20px;
}


body,
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    font-family: 'Arial', sans-serif; /* Matching font family */
    background-color: black; /* Background color to match the body */
    color: #eaeaea; /* Text color to match the body */
}

.navbar a {
    text-decoration: none; /* Remove underline from links */
    color: #eaeaea; /* Text color for links */
}

.navbar a:hover {
    color: #ff5733; /* Hover color to match other interactive elements */
}


header {
    text-align: center;
    padding: 40px 0;
}

#logo {
    max-width: 100px;
    /* Adjust based on your logo's size */
    margin-bottom: 20px;
}


body {
    animation: gradientShift 10s infinite linear;
}


/* font awesome icons */
i.fas {
    font-size: 1.2em;
    /* Icon size */
    color: #4b307d;
    /* Icon color */
    margin-right: 10px;
    /* Space between the icon and text */
}

.left-align-image h2,
.left-align-image p {
    text-align: left;
}

.center-align-image h2,
.center-align-image p {
    text-align: center;
}

/* Different font sizes or other styling for specific sections */
#ai-edge h2 {
    font-size: 2.8em;
}

#transformation h2 {
    font-size: 2.2em;
}


#introduction.full-width-image {
    /* background: url('src/img/intro-bg.png') no-repeat center center;
    background-size: fill; */
    color: #fff;
    /* White text color */
}

#introduction .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

#multiplicative-impact.two-column-layout {
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

#multiplicative-impact img {
    max-width: 40%;
    margin-right: 20px;
}


#ai-edge.reverse-two-column-layout {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    flex-direction: row-reverse;
}

#ai-edge img {
    max-width: 40%;
    margin-left: 20px;
}

#transformation.overlay-image {
    position: relative;
    padding: 40px 20px;
}

#transformation img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
}

#transformation div {
    margin-left: 50%;
    padding-left: 20px;
}

#promise.centered-layout {
    text-align: center;
    padding: 40px 20px;
}

#promise img {
    margin-bottom: 20px;
}

#brand-personality.zig-zag-layout {
    display: flex;
    padding: 40px 20px;
}

#brand-personality.zig-zag-layout:nth-child(odd) {
    flex-direction: row-reverse;
}

#ai-gap div {
    z-index: 1;
    position: relative;
}

#future.call-to-action {
    background-color: #ff5733;
    /* Contrasting color */
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    /* White text */
}

#future button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    background: #fff;
    color: #ff5733;
    transition: 0.3s;
}

#future button:hover {
    background: rgba(255, 255, 255, 0.8);
}





body {
    font-family: 'Arial', sans-serif;
    /* Consider importing a more modern font from Google Fonts for a better look */
    color: #eaeaea;
    /* background: linear-gradient(135deg, #5a54a4, #4b307d); Futuristic Gradient Background */
    background: black;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 60px 0;
}

header h1 {
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeIn 2s;
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2,
h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    /* Underline animation for h2 elements */
    content: '';
    background: #FFF;
    height: 3px;
    width: 50px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.5s;
}

h2:hover::after {
    width: 100%;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

p {
    margin-bottom: 30px;
    font-size: 1em;
    line-height: 1.8;
}

/* Subtle FadeIn Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Tablets and above */
@media screen and (min-width: 768px) {
    main {
        padding: 40px;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.8em;
    }

    p {
        font-size: 1.2em;
    }
}

/* Responsive Design for Large Screens */
@media screen and (min-width: 1024px) {
    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }

    p {
        font-size: 1.4em;
    }
}

/* pop up */
/* styles.css */
#popup {
    display: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #1e1e1e;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#join-us-btn {
    background: #1e1e1e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

#join-us-btn:hover {
    background: #333;
}

#demo-btn {
    display: block;
    width: 100%;
    background: #ff5733;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

#demo-btn:hover {
    background: #333;
}

/* styles.css */
/* ... rest of the CSS ... */
#join-form input,
#join-form textarea,
#join-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    outline: none;
}

#join-form textarea {
    height: 100px;
    resize: vertical;
}

#join-form button {
    background: #fff;
    color: #1e1e1e;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#join-form button:hover {
    background: #f0f0f0;
}

.form-container {
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
}

.form-field {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    background-color: #f2f2f2;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.form-field:focus {
    outline: none;
    background-color: #e6e6e6;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 20px 0;
    border: none;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: #45a049;
}

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


/* Further adjustments for very small devices */
@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 767px) {

    #multiplicative-impact.two-column-layout,
    #ai-edge.reverse-two-column-layout,
    #brand-personality.zig-zag-layout {
        flex-direction: column-reverse;
    }

    #multiplicative-impact img,
    #ai-edge img,
    #brand-personality.zig-zag-layout img {
        margin: 20px 0;
    }

    #transformation div {
        margin-left: 0;
        text-align: center;
        /* Center align content if it looks better */
    }

    #transformation h1 {
        font-size: 0.8em;
    }

    h1 {
        font-size: 2em;
        text-align: center;
        /* Center align headings for better aesthetics */
    }

    h2 {
        font-size: 1.8em;
        text-align: center;
        /* Center align headings for better aesthetics */
    }

    h3 {
        font-size: 1.2em;
        text-align: center;
        /* Center align headings for better aesthetics */
    }

    /* Assuming you have a navbar, make sure its elements are comfortably spaced and clickable */
    .navbar a,
    .navbar button {
        padding: 10px 15px;
    }
}


@media only screen and (max-width: 480px) {
    header h1 {
        font-size: 2em;
        text-align: center;
        /* Center align the main heading for better visibility */
    }

    h2 {
        font-size: 1.5em;
    }

    #transformation img {
        width: 100%;
        position: relative;
        bottom: auto;
        left: auto;
    }
}



/*CSS by Foyez*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

.header-title {
    font-size: 48px;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.fz-separator {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1160px;
    display: block;
    margin: 0 auto;
}

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

.features-intro {
    padding: 120px 0;
}

.features-section h2 {
    font-size: 34px;
}

.features-section-txt {
    padding-top: 50px;
}


.features-section-txt fst-two {
    padding-top: 30px;
}
.call-to-action{
    margin-bottom: 50px;
}
/* responsive media queries */

@media (min-width:769px) and (max-width:1024px) {
    .header-title {
        font-size: 38px;
    }

    .features-intro {
        padding: 80px 0;
    }

    .features-section h2,
    .features-section h3 {
        font-size: 24px;
    }

    .features-section-txt {
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .features-section {
        padding: 60px 0 40px 0;
    }

    #future.call-to-action h2 {
        font-size: 34px;
    }

    .popup-content {
        width: 90%;
    }

    .form-container {
        width: 90%;
    }

}

@media only screen and (max-width: 768px) {
    .popup {
        display: flex;
    }

    .popup-content {
        width: 90%;
    }

    .form-container {
        width: 90%;
    }

    .header-title {
        font-size: 24px;
    }

    .features-section,
    .about-section {
        padding: 60px 0;
    }

    .fst-two {
        padding-top: 0px;
        margin-bottom: 30px;
    }

    .fst-two h2,
    .features-section h2 {
        font-size: 27px;
    }

    .fst-two p,
    .features-section-txt p {
        text-align: center;
    }

    .features-section-txt p,
    .features-intro p {
        margin-bottom: 0px;
    }

    .features-section p {
        margin-bottom: 0px;
    }

    .fst-seven p {
        padding-bottom: 30px;
    }

    .popup-content h1 {
        font-size: 22px;
    }
}