/* Default CSS  */
:root {
    --white-color: #ffffff;
    --black-color: #000000;

    --navbar-bg: #000b3d;
    --nav-color: #ffffff;
    --nav-active: #18cb96;
    --nav-hover: #18cb96;
    --button-color: #ffffff;
    --button-bg: #000b3d;
    --button-hover-bg: #18cb96;
    --button-hover-color: #ffffff;
    --border-1: #ffffff;
    --border-2: #18cb96;
    --border-3: #000b3d;

    --title-color: #000000;
    --title-mark-color: #18cb96;
    --paragraph-color: #272822;

    --form-border: #000b3d;
    --input-color: #000000;
    --label-color: #000000;
    --input-bg: #ffffff;
    --input-required: #ff4500;

    --roboto-font: "Roboto", sans-serif;

    --footer-bg: #000b3d;
    --footer-color-1: #ffffff;
    --footer-color-2: #ffc107;
    --footer-hover: #18cb96;
    --footer-border-1: #666;
    --footer-border-2: #4CAF50;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

p {
    font-size: 18px;
    color: var(--paragraph-color);
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.myContainer {
    width: 100%;
    max-width: 1340px;
    margin: auto;
    padding: 0 20px;
}


.section-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-mark-color);
    text-align: center;
    margin-bottom: 0;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    color: var(--title-color);
    text-align: center;
}

.section-info {
    width: 100%;
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.section-title span {
    color: var(--title-mark-color);
}

.button-container {
    padding-top: 20px;
}

.button-container a,
.button-container button {
    font-size: 15px;
    font-weight: 700;
    color: var(--button-color);
    background: var(--button-bg);
    border: 2px solid var(--button-bg);
    text-align: center;
    padding: 10px 20px;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    cursor: pointer;
}

.button-container a:hover,
.button-container button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-color);
    border-color: var(--button-hover-bg);
    /* transform: translateX(10px); */
}

.desktopShow {
    display: block;
}

.mobileShow {
    display: none;
}

/* Default Responsive  */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 35px;
    }

    .desktopShow {
        display: none;
    }

    .mobileShow {
        display: block;
    }
}

@media screen and (max-width: 400px) {
    .section-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 368px) {
    .section-title {
        font-size: 25px;
    }
}


/* Style CSS  */
header {
    background: var(--navbar-bg);
    padding: 10px 20px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}



/* <----- All Pages Header Navigation Start ------> */
/* .fixed-nav .links-container {
  height: auto !important;
} */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-header .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    font-size: 1.5rem;
    color: var(--nav-color);
    background: transparent;
    border-color: transparent;
    transition: all 0.3s linear;
    cursor: pointer;
}

.nav-toggle:hover {
    color: var(--nav-hover);
}

.logo img {
    height: 60px;
}

.links-container {
    height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
}

.show-links {
    height: 200px;
}

.links a {
    color: var(--nav-color);
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s linear;
    font-weight: bold;
    padding: 0.75rem 0;
}

.links a:hover {
    color: var(--nav-hover);
}

.links a.active {
    color: var(--nav-active);
}

.nav-center .button-container a {
    border-color: #18cb96;
}

.nav-center .header-profile.desktopShow {
    display: none;
}

.nav-center .header-profile .user-info {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
}

.nav-center .header-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #dddd;
    border: 2px solid var(--border-2);
}

.nav-center .header-profile .number {
    font-size: 16px;
    color: var(--nav-color);
    transition: all 0.3s ease-in-out;
}

.nav-center .header-profile .number:hover {
    color: var(--nav-hover);
}

.nav-center .desktopShow {
    display: none;
}

.nav-center .mobileShow {
    display: block;
}


/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 840px) {
    .nav-center {
        width: 100%;
        max-width: 1340px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-header {
        padding: 0;
    }

    .nav-header .align-logo {
        display: block;
    }

    .nav-header .fixed-logo {
        display: none;
    }

    .nav-center .header-profile.desktopShow {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 40px;
    }

    .nav-toggle {
        display: none;
    }

    .links-container {
        height: auto !important;
    }

    .links {
        display: flex;
    }

    .links a {
        background: transparent;
        color: var(--nav-color);
        font-size: 14px;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear;
        margin: 0 1rem;
        font-weight: bold;
        padding: 0;
    }

    .links a:hover {
        color: var(--nav-active);
    }

    .links a.active {
        color: var(--nav-hover);
    }

    .nav-center .desktopShow {
        display: block;
    }

    .nav-center .mobileShow {
        display: none;
    }
}

@media screen and (max-width: 1020px) {
    .nav-center .header-profile .number {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        width: 150px;
        height: auto;
    }
}

@media screen and (max-width: 350px) {
    .nav-center .button-container a {
        padding: 8px 10px;
    }
}

/* <----- All Pages Header Navigation End ------> */







/* <-----All Pages Banner Section Start ------> */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner .banner-container {
    position: relative;
    z-index: 5;
    text-align: center;
}

.banner .banner-container .title {
    font-size: 80px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
}

.banner .banner-container .title span {
    color: var(--title-mark-color);
}

.banner .banner-container p {
    width: 100%;
    max-width: 800px;
    margin: auto;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 0;
    margin-top: 12px;
    text-transform: capitalize;
}


/*Banner Section Responsive */
@media screen and (max-width: 1068px) {
    .banner .banner-container .title {
        font-size: 65px;
    }
}

@media screen and (max-width: 910px) {
    .banner .banner-container .title {
        font-size: 50px;
    }
}

@media screen and (max-width: 767.5px) {
    .banner .banner-container .title {
        font-size: 40px;
    }
}

@media screen and (max-width: 500px) {
    .banner .banner-container .title {
        font-size: 30px;
    }
}

@media screen and (max-width: 380px) {
    .banner .banner-container .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 468px) {
    .slider-container .controls-container {
        display: none !important;
    }
}


/* <----- All Pages Banner Section End ------> */




/* <---- Home Page Start -----> */
/* Banner Section */
.banner.home-banner::before {
    background: rgba(0, 0, 0, 0.6);
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    width: 100%;
}

.slider-container .slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: opacity .8s ease-in-out;
}

.slider-container .slide.active {
    opacity: 1;
}

.slider-container .controls-container {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-container .control {
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    margin: 6px;
    height: 40px;
    width: 5px;
    transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.slider-container .control.active,
.slider-container .control:hover {
    opacity: 1;
    transform: scale(1.2);
}

@media screen and (max-width: 767.5px) {
    .banner.home-banner {
        min-height: 70vh;
    }

    .slider-container {
        min-height: 70vh;
    }
}


/* About Section */
.about-section {
    padding: 60px 0;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 25px;
}

.about-container .badge {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
}

.about-container h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-container .features {
    list-style: none;
    margin-bottom: 20px;
}

.about-container .features li {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--paragraph-color);
}

.about-container .features li::before {
    content: '✓';
    color: #18cb96;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
}

.about-container .cta-text {
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-container .cta-text .free {
    color: #e91e63;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-container h1 {
        font-size: 38px;
    }
}

@media (max-width: 767.5px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-container .badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .about-container .features li {
        font-size: 18px;
    }

    .about-container .cta-text {
        font-size: 22px;
    }
}

/* Services Section */
.services-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-item {
    background: var(--white-color);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-item .service-header {
    position: relative;
    height: 200px;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

.service-item .service-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 12px 12px 0 0;
}

.service-item .service-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-item .service-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.service-item .badge {
    background: transparent;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-1);
    color: var(--white-color);
}

.service-item .badge.featured {
    position: relative;
}

.service-item .badge-icon {
    font-size: 14px;
    cursor: pointer;
    margin-top: 3px;
}

.service-item .badge .if-promoted {
    color: #18cb96;
}

.service-item .badge .not-promoted {
    color: #ddd;
}

.service-item .tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 35%;
    transform: translateX(-35%);
    background: #cc0000;
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
}

.service-item .tooltip-arrow {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #cc0000;
}

.service-item .badge.featured:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.service-item .service-logo {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--border-2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 50;
}

.service-item .service-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white-color);
}

.service-item .service-content {
    padding: 50px 20px 20px;
    position: relative;
    z-index: 1;
    background: var(--white-color);
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-item .service-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
}

.service-item .verified-icon {
    max-height: 18px;
    display: inline-block;
    position: relative;
    width: auto;
}

.service-item .service-description {
    color: var(--paragraph-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 42px;
    flex-grow: 1;
}

.service-item .service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.service-item .service-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--paragraph-color);
}

.service-item .category-icon {
    width: 32px;
    height: 32px;
    background: #ffc107;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.service-item .category-badge {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    margin-left: 4px;
}

.service-item .service-actions {
    display: flex;
    gap: 10px;
}

.service-item .action-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item .action-btn:hover {
    background: #f5f5f5;
    border-color: #1891c8;
    color: #1891c8;
}

.service-item .action-btn.favorite:hover {
    color: #e91e63;
    border-color: #e91e63;
}

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.5px) {
    .services-section {
        padding-top: 0;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}

/* Section Responsive */
@media screen and (max-width: 1220px) {}

/* <---- Home Page End -----> */


/* <---- Directory Lists And Showcase Style Start-----> */
.directory-container {
    background: #f4f8f7;
}

/* Directory Page */
.directory {
    padding: 60px 0;
    display: block;
}

.directory #brandList {
    margin-top: 30px;
}

.directory .brand-item {
    background: var(--white-color);
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}


.directory .brand-logo {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.directory .brand-content {
    flex: 1;
}

.directory .brand-name {
    font-size: 20px;
    color: #007a3f;
    font-weight: bold;
}

.directory .company-name {
    font-size: 25px;
    color: var(--title-color);
    padding-top: 5px;
    margin-bottom: 5px;
    font-weight: bold;
}

.directory .stars {
    font-size: 18px;
    font-weight: bold;
    color: #000b3d;
}

.directory .stars i {
    color: #ffd700;
}

.directory .button-container {
    text-align: right;
}

/* Directory Responsive */
@media screen and (max-width: 600px) {
    .directory #brandList {
        background: none;
    }

    .directory .brand-item {
        flex-direction: column;
        margin-bottom: 20px;
        background: var(--white-color);
    }

    .directory .button-container {
        text-align: center;
    }
}

/* Showcase Page */

.showcase {
    display: none;
    padding-bottom: 60px;
}

.showcase .showcase-header {
    position: relative;
    height: 300px;
    border-radius: 20px;
}

.showcase-header .showcase-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase .showcase-profile {
    position: absolute;
    bottom: -60px;
    left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--border-2);
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: var(--white-color);
}

.showcase .showcase-info {
    padding: 0 20px;
    padding-top: 80px;
    background: var(--white-color);
    padding-bottom: 40px;
}

.showcase .showcase-name {
    font-size: 30px;
    color: var(--title-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.showcase .company-name {
    font-size: 18px;
    color: var(--paragraph-color);
    font-weight: 600;
}

.showcase .followers {
    font-size: 16px;
    color: #1891c8;
    font-weight: 600;
}

.showcase .showcase-details {
    margin: 20px 0;
    background: var(--white-color);
    padding: 40px 20px;
}

.showcase .showcase-details .title {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase .showcase-details .description {
    margin-top: 10px;
}

.showcase .showcase-tagline {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.showcase .catalog-section {
    background: var(--white-color);
    padding: 40px 20px;
}

.showcase .catalog-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.showcase .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.showcase .catalog-item {
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border-2);
    border-radius: 10px;
}

.showcase .catalog-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.showcase .catalog-details {
    padding: 10px;
}

.showcase .catalog-name {
    font-size: 18px;
    color: var(--title-color);
    font-weight: bold;
    padding-bottom: 10px;
}

.directory-container .hidden {
    display: none;
}

/*Showcase Responsive */
@media screen and (max-width: 430px) {
    .showcase-section .myContainer {
        padding: 0;
    }
}


/* <----  Directory Lists And Showcase Style End -----> */


/* <----- Contact Page Start ----. */

/* Contact Form Section */
.contact-form {
    padding: 60px 0;
}

.contact-form .form-container {
    width: 100%;
    max-width: 870px;
    margin: auto;
    margin-top: 30px;
    padding: 0 20px;
}


/* Form */
.form-container .input-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-container p.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--label-color);
}


.form-container .label-text span,
.form-container label.label-text span {
    color: var(--input-required);
    font-size: 12px;
}

.form-container .input-fill {
    margin-top: 30px;
}

.form-container label.label-text {
    font-size: 18px;
    line-height: 25px;
    color: var(--label-color);
    font-weight: 600;
}

.form-container .label-text2 {
    font-size: 16px;
    line-height: 30px;
    color: var(--label-color);
    padding: 10px 0;
}

.form-container .input-fill input,
.form-container .input-fill textarea {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid var(--form-border);
    background: var(--input-bg);
    color: var(--input-color);
    padding: 10px;
    height: 58px;
    line-height: 38px;
    margin-top: 10px;
    font-size: 18px;
}

.form-container .input-fill textarea {
    height: 100px;
}

.form-container .input-fill input:focus,
.form-container .input-fill textarea:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--form-border);
}

.form-container .isntSubmit.req-message {
    margin-bottom: 20px;
}

.form-container .req-message {
    display: none;
    background: var(--input-required);
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    padding: 10px;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.form-container .req-message i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 50%;
}

.form-container .button-container {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-container .button-container button {
    width: 250px;
    padding: 1.2em 2.004em;
    letter-spacing: .1em;
    font-size: 18px;
    line-height: 23px;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.form-container .button-container button:hover {
    letter-spacing: 5.5px;
}

.contact-form .contactSubmit-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white-color);
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: none;
}

.contact-form .contactSubmit-message p {
    font-size: 18px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 600;
}

.contact-form .contactSubmit-message .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form .contactSubmit-message button {
    padding: 10px 0;
    width: 80px;
}

/*Contact Form Section Responsive */
@media screen and (max-width: 768px) {
    .banner.contact-banner {
        min-height: 40vh;
    }

    .contact-form .title {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-form .form-container .input-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 530px) {
    .contact-form .title {
        font-size: 25px;
        line-height: 35px;
    }
}

/* <----- Contact Page End ----. */



/* <---- All Page Footer Section Start -----> */

.footer {
    background: var(--footer-bg);
    color: var(--footer-color-1);
    padding: 60px 0 20px;
    position: relative;
}

.footer .footer-container {
    border-bottom: 1px solid #444;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 250px;
}

.footer-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-container .address-info {
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-container .address-info p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--footer-color-1);
}

.footer-container .contact-email {
    color: var(--footer-color-1);
    margin: 15px 0;
    display: block;
    transition: all 0.3s ease-in-out;
}

.footer-container .contact-email:hover {
    color: var(--footer-hover);
    text-decoration: underline;

}

.footer-container .contact-phone {
    color: var(--footer-color-2);
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}

.footer-container .footer-links {
    list-style: none;
}

.footer-container .footer-links li {
    margin-bottom: 12px;
}

.footer-container .footer-links a {
    color: var(--footer-color-1);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-container .footer-links a:hover {
    color: var(--footer-hover);
}

.footer-container .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-container .social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--footer-border-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-color-2);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-container .social-icon:hover {
    border-color: var(--footer-border-2);
    color: var(--footer-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ddd;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 8px;
}

.footer-bottom-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-hover);
}


/*Footer Section Responsive  */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767.5px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-container .contact-phone {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-container .social-icons {
        flex-wrap: wrap;
    }

    .footer-container .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}


/* <---- All Page Footer Section End -----> */