@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(184, 24, 24);
    --secondary-color: #000000;
    --text-color: #828080;
}

body {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

/* Global Tags */

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}

h6 {
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

/* Navbar Styling */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: backgrgound-color 0.3s ease;
}

nav.active {
    position: fixed;
    animation: slideIn 0.5s ease forwards;
}

/* Animation for sliding the navbar in when scrolling */
@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

nav .Nav-logo img {
    width: 175px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
}

/* Navigation for large devices */
.navigation {
    display: flex;
    align-items: center;
}

.navigation ul {
    display: flex;
    list-style: none;
}

.navigation ul li {
    margin-left: 25px;
    position: relative;
}

.navigation ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.navigation ul li a:hover,
.navigation ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Styling */
.navigation ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 160px;
}

.navigation ul li .dropdown-content a {
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.navigation ul li:hover .dropdown-content {
    display: block;
}

.navigation ul li .dropdown-content a:hover{
    color: var(--primary-color);
}

/* Default Button Styling */
.default-btn {
    display: inline-block;
    background-color: #333333;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.default-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.default-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove button focus outline */
.default-btn:focus {
    outline: none;
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.15s ease;
    padding-top: 60px;
    z-index: 1001;
}

.sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #575757;
}

/* Close Button Styling */
.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    padding: 0;
}

.sidebar .closebtn:hover {
    color: var(--primary-color);
}


/* Sidebar Dropdown */
.sidebar .dropdown-content {
    display: none;
    background-color: #444;
    padding-left: 15px;
}

.sidebar .dropdown-content a {
    padding-left: 30px;
}

.plus-icon {
    float: right;
    margin-left: 10px;
}

/* Sidebar Toggle Menu Button */
.menu-button {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.menu-button i {
    font-size: 28px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .default-btn {
        display: none;
    }

    .sidebar {
        width: 0;
    }
}

@media (min-width: 769px) {
    .sidebar {
        display: none;
    }
}

/* Home Section */
.home-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-carousel .carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}

.home-carousel .headline {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.home-carousel .headline .line1 {
    font-size: 4.5em;
    font-weight: bold;
}

.home-carousel .headline .line2 {
    font-size: 1.6em;
    font-weight: 700;
    margin-top: 10px;
}

.home-carousel .headline .line3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-carousel .headline .line1 {
        font-size: 2.5em;
    }

    .home-carousel .headline .line2 {
        font-size: 1.2em;
    }

    .home-carousel .headline .line3 {
        font-size: 1em;
    }
}

/* What is Trade Tower Section */
.what-is-tt {
    text-align: center;
    padding: 70px 30px;
}

.what-is-tt h5 {
    font-size: x-large;
    color: #000000;
}

.what-is-tt h6 {
    margin-top: 1em;
    font-size: large;
    color: #000000;
    text-align: left;
}

.what-is-tt p {
    color: var(--text-color);
    font-size: 1.1em;
    font-weight: 500;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .what-is-tt h5 {
        font-size: large;
    }

    .what-is-tt h6 {
        font-size: medium;
    }
}

/* Impact by Trade Towers Section */
.impact-section .impact-container {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.impact-section .impact-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.impact-section .impact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.impact-section .impact-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
}

.impact-section .impact-card h2 {
    font-size: 2.5em;
    font-family: 'Roboto', Times, serif;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-section .impact-container .impact-card p {
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .impact-section .impact-card {
        width: 150px;
    }

    .impact-section .impact-container h1 {
        font-size: 28px;
    }
}

/* How Trade Tower Adds Value Section */
.value-section .value-container {
    margin-top: 2em;
    text-align: center;
}

.value-section .value-container h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.value-section .value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 15px;
    justify-items: center;
}

.value-section .value-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 260px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    /* flex-direction: column; */
}

.value-section .value-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.value-section .value-item p {
    margin: 15px;
    font-size: 14px;
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .value-section .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .value-section .value-grid {
        grid-template-columns: 1fr;
    }

    .value-section .value-item {
        width: 100%;
    }

    .value-section .value-container h1 {
        font-size: 2em;
    }
}

/* Focus Areas Section */
.focus-section .focus-container {
    margin-bottom: 2em;
    text-align: center;
    padding: 60px 20px;
}

.focus-section .focus-container h1 {
    color: #333;
    margin-bottom: 10px;
}

.focus-section .focus-container p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
}

.focus-section .focus-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.focus-section .focus-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-section .focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.focus-section .focus-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    color: tomato;
}

.focus-section .focus-card p {
    color: #333;
    font-size: 1em;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .focus-section .focus-card {
        width: 130px;
    }

    .focus-section .focus-container h1 {
        font-size: 24px;
    }

    .focus-section .focus-container p {
        font-size: 1em;
    }
}


/* Startup Testimonals */

.startup testimonals {
    background-color: #000;
    padding: 40px 0;
    color: #fff;
}

.startup testimonals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.startup testimonals-top {
    text-align: center;
    margin-bottom: 40px;
}

.startup testimonals h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* About */
.hero {
    position: relative;
    height: 65vh;
    background: url('image/about\ image.jpg') no-repeat center center/cover;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #ddd4d4;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: zrgba(208, 160, 160, 0.5);
}

.content {
    padding: 40px 10px;
    text-align: center;
}

.content h2 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 20px;
    color: #e74c3c;
    text-align: justify;
}

/* about(how does it work) */
.how-it-works {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
}

.how-it-works h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;

}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 40px;
}

.step:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #ccc;
}

.step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.step:last-child:after {
    content: none;
}

.number {
    font-size: 4em;
    font-weight: bold;
    color: #ccc;
    margin-right: 20px;
    flex-shrink: 0;
}

.content h2 {
    color: #e74c3c;
    margin: 0 0 10px 0;
}

.content ul {
    /* list-style-type: none; */
    /* width: 500px; */
    margin: 0 15em;
}

.content ul li {
    margin-bottom: 10px;
}

/* General responsive styling for how-it-works section */
@media (max-width: 1024px) {
    .how-it-works {
        width: 90%;
        padding: 30px 0;
    }

    .how-it-works h1 {
        font-size: 1.8em;
    }

    .step {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .number {
        font-size: 3em;
        margin-right: 15px;
    }

    .content ul {
        margin: 0 8em;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        width: 95%;
        padding: 20px 0;
    }

    .how-it-works h1 {
        font-size: 1.6em;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .number {
        font-size: 2.5em;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .content h2 {
        font-size: 1.5em;
    }

    .content ul {
        margin: 0 2em;
        padding-left: 20px;
    }

    .content ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        width: 100%;
        padding: 15px 0;
    }

    .how-it-works h1 {
        font-size: 1.4em;
    }

    .step {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .number {
        font-size: 2em;
    }

    .content h2 {
        font-size: 1.2em;
    }

    .content ul {
        margin: 0 1em;
        padding-left: 15px;
    }

    .content ul li {
        font-size: 0.9em;
    }
}

@media (max-width: 320px) {
    .how-it-works h1 {
        font-size: 1.2em;
    }

    .number {
        font-size: 1.8em;
    }

    .content ul {
        margin: 0 0.5em;
    }

    .content ul li {
        font-size: 0.8em;
    }
}


/* startup img*/
.img {
    position: relative;
    height: 65vh;
    background: url('image/about\ image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(215, 19, 19);
}

.hero-img h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #e8d7d7;
}

/* startups */

.container {
    max-width: 800px;
    margin: 0 auto;
}

.profile {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.logo {
    margin-right: 20px;
    flex-shrink: 0;
    width: 100px;
}

.logo img {
    width: 100%;
    height: auto;
}

.content {
    flex: 1;
}

h2 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
}

p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 16px;
    color: #666;
    text-align: justify;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* programs */

/* Container styling */
.program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

/* Profile card styling */
.program-container .profile {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 2em;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-basis: calc(50% - 20px);
}

.program-container .profile:hover {
    transform: translateY(-5px);
}

/* Logo styling */
.program-container .logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10%;
    margin: 0 20px;
}

/* Content styling */
.program-container .content {
    flex-grow: 1;
    margin: 0 100px;
}

.program-container .content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.program-container .content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Social icons styling */
.program-container .social-icons {
    margin-top: 10px;
}

.program-container .social-icons a {
    margin-right: 10px;
}

.program-container .social-icons img {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .program-container .profile {
        flex-basis: 100%;
    }

    .program-container .logo img {
        width: 60px;
        height: 60px;
    }

    .program-container .content h2 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}

/* people */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.header img {
    max-width: 50%;
    height: auto;
}

.header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-left: 20px;
}

.board-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.member {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 600px;
    text-align: center;
}

.member img {
    border-radius: 45%;
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
}

.member h2 {
    font-size: 24px;
    margin: 10px 0;
}

.position {
    color: var(--primary-color);
    font-weight: bold;
}

.member p {
    margin: 5px 0;
}


/* backto top btn */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 2px 2px 11px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* appy */
.header {
    background-color: #FF5A33;
    color: white;
    text-align: center;
    padding: 60px 0;
    background-image: url('image/1st\ iamge.jpg');
    /* Add your wave pattern image */
    background-size: cover;
    height: 400px;
    ;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.content {
    text-align: center;
    padding: 40px 20px;
}

.content p {
    color: #1D4E89;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.program {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    margin: 0 auto 20px auto;
    max-width: 1250px;
    height: 450px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.program-icon {
    flex: 0 0 100px;
    margin-right: 20px;
    text-align: center;
}

.program-icon img {
    width: 80px;
    height: 80px;
}

.program-info {
    text-align: left;
}

.program-info h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: justify;
}

.program-info p {
    color: #333;
    line-height: 1.6;
}

/* media */

.article-container {
    margin: 5em;
    width: 300px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-container:hover {
    transform: translateY(-5px);
}

.image-container {
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.article-title {
    margin: 16px;
    font-size: 18px;
    color: #333;
}

.free-trial-area {
    position: relative;
    height: 30vh;
    width: 100%;
    z-index: 1;
}

.shape10 {
    position: absolute;
    right: 30%;
    bottom: 25%;
    z-index: -1;
}

.shape10 img {
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.shape11 {
    position: absolute;
    left: 25%;
    bottom: 27%;
    z-index: -1;
}

.shape11 img {
    -webkit-animation: moveBounce 5s linear infinite;
    animation: moveBounce 5s linear infinite;
}

.shape12 {
    position: absolute;
    left: 10%;
    bottom: 50%;
    z-index: -1;
}

.shape12 img {
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.shape13 {
    position: absolute;
    right: 18%;
    bottom: 60%;
    z-index: -1;
}

.shape13 img {
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateMe {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* footer */

.footer-area {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #181616;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.footer-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: imageChange 1s linear 1s infinite;
    background-image: url(../../assets/img/footer-shape1.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-area::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: imageChangeTwo 1s linear 1s infinite;
    background-image: url(../../assets/img/footer-shape2.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.divider {
    width: 100%;
    position: absolute;
    height: 70px;
    pointer-events: none;
    mask-image: url("data:image/svg+xml;utf8,%3csvg viewBox='0 0 100 100' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3e%3cpath d='M0,0 C16.6666667,66 33.3333333,98 50,98 C66.6666667,98 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z' fill='%23fff'/%3e%3c/svg%3e");
    mask-size: 100% 101%;
    background: #181616;
    top: -70px;
    left: 0;
    z-index: -1;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.single-footer-widget {
    margin-bottom: 25px;
}

.single-footer-widget h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 22px;
}

.single-footer-widget .logo {
    margin-bottom: 10px;
}

.single-footer-widget .logo a {
    display: inline-block;
    text-decoration: none;
}

.single-footer-widget a,
p {
    color: #acc5db;
    text-decoration: none;
}

.single-footer-widget .services-list,
.single-footer-widget .support-list,
.single-footer-widget .footer-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.single-footer-widget .services-list li,
.single-footer-widget .support-list li,
.single-footer-widget .footer-contact-info li {
    color: #acc5db;
    margin-bottom: 10px;
}

.single-footer-widget .services-list li:last-child,
.single-footer-widget .support-list li:last-child,
.single-footer-widget .footer-contact-info li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .services-list li a,
.single-footer-widget .support-list li a,
.single-footer-widget .footer-contact-info li a {
    display: inline-block;
    color: #acc5db;
}

.single-footer-widget .services-list li a:hover,
.single-footer-widget .support-list li a:hover,
.single-footer-widget .footer-contact-info li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    color: #acc5db;
    font-size: 16px;
}

.footer-contact-info li {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact-info i {
    color: var(--primary-color);
    /* Adjust the icon color to match your theme */
    margin-right: 8px;
}

.footer-contact-info a {
    color: #acc5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
    /* Highlight color on hover */
}

.footer-contact-info .px-1 {
    margin: 0 2px;
    /* Adjusts spacing between social icons */
    color: #acc5db;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact-info .px-1:hover {
    color: var(--primary-color);
    transform: scale(1.2);
    /* Slight zoom effect on hover */
}

.footer-contact-info i.fa-brands {
    font-size: 1em;
    /* Adjust the size of the social media icons */
}

.footer-contact-info i.fa-solid {
    font-size: 1em;
    /* Adjust the size of the solid icons (address, phone, etc.) */
}


.copyright-area {
    border-top: 1px solid #1c2250;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
}

.copyright-area p {
    line-height: initial;
    color: #acc5db;
}

.copyright-area p a {
    display: inline-block;
    color: var(--primary-color);
}

.copyright-area p a:hover {
    color: var(--primary-color);
}

@keyframes imageChange {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes imageChangeTwo {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive Footer Styling */
@media (max-width: 1024px) {
    .footer-area {
        padding-top: 30px;
    }

    .row {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .single-footer-widget {
        margin-bottom: 20px;
        text-align: center;
    }

    .single-footer-widget h3 {
        font-size: 20px;
    }

    .single-footer-widget p {
        font-size: 14px;
    }

    .single-footer-widget ul li {
        margin-bottom: 8px;
    }

    .footer-contact-info li {
        font-size: 16px;
    }

    .footer-contact-info i {
        font-size: 1.2em;
    }

    .footer-contact-info a {
        font-size: 16px;
    }

    .footer-contact-info .px-1 {
        font-size: 24px;
        margin: 0 5px;
    }

    .copyright-area p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-box {
        padding: 20px;
    }

    .single-footer-widget {
        margin-bottom: 15px;
        width: 100%;
    }

    .single-footer-widget h3 {
        font-size: 18px;
    }

    .single-footer-widget p,
    .footer-contact-info li,
    .copyright-area p {
        font-size: 14px;
    }

    .footer-contact-info .px-1 {
        font-size: 22px;
    }

    .divider {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .single-footer-widget h3 {
        font-size: 16px;
    }

    .single-footer-widget p,
    .footer-contact-info li {
        font-size: 13px;
    }

    .footer-contact-info .px-1 {
        font-size: 20px;
    }

    .divider {
        height: 60px;
    }

    .copyright-area p {
        font-size: 12px;
    }
}

/* Adjust footer padding and alignment for smaller screens */
@media (max-width: 320px) {
    .footer-area {
        padding-top: 20px;
    }

    .single-footer-widget h3 {
        font-size: 14px;
    }

    .single-footer-widget p,
    .footer-contact-info li {
        font-size: 12px;
    }

    .footer-contact-info .px-1 {
        font-size: 18px;
    }

    .divider {
        height: 60px;
    }

    .copyright-area p {
        font-size: 10px;
    }
}