@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}

html{
    scroll-behavior: smooth;
}


.top-bar {
    /* background: linear-gradient(45deg, #ff4e50, #fc913a); */
    background: #aa8905;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease-in-out;
}
.top-bar span {
    font-weight: bold;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.1; }
}



.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
}
.logo img{
    height: 70px;
}
.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
}
.nav-links li {
    margin: 0 10px;
}
.nav-links a{
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}
.nav-links a:hover {
    /* background: #11be6e; */
    background: #c49c00;
    color: #000;
    letter-spacing: 2px;
    box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    transform: scale(1.1);
}
.menu-toggle{
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: none;
}
.menu-toggle.active {
    transform: rotate(90deg);
}




/* Hero section starts */

.hero{
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../Images/about\ us\ banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}
.hero-content {
    position: relative;
    max-width: 1000px;
    z-index: 2;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: #000;
    background: #c49c00;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;

}
.btn:hover {
    letter-spacing: 2px;
    background: #c49c00;
}

/* Hero section ends */





/* About Us section starts */
.about{
    background: #222222;
}
.about-section {
    width: 100%;
    max-width: 1600px; 
    margin: 0 auto; 
    padding: 80px 5%;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.about-text {
    flex: 1;
    max-width: 600px;
}
.about-text h2 {
    font-size: 2.5rem;
    color: #c49c00;
    margin-bottom: 15px;
}
.about-text p {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.6;
}
.about-image {
    flex: 1;
    text-align: right;
}
.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px; /* Retain rounded corners */
    background: none; /* Ensure no background is applied */
}
.vision-mission {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 50px;
}
.card {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(201, 199, 199, 0.589);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.vision {
    background: linear-gradient(to bottom right, #ebc9c9, #d37676); /* Soft red gradient */
}
.mission {
    background: linear-gradient(to bottom right, #c2e5e9, #4ac6da); /* Soft blue gradient */
}
.vision i {
    color: #e21d20;
}
.mission i {
    color: #12a1ac;
}
.card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #141414;
}
.card p {
    text-align: left;
    font-size: 1.1rem;
    color: #1f1e1e;
    line-height: 1.5;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* About Us section starts */





/* .directors-desk {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 5%;
    background: #f8f9fa;
}
.directors-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.directors-text {
    flex: 1;
    max-width: 800px;
}
.directors-text h3 {
    font-size: 2rem;
    color: #e21d20;
    margin-bottom: 15px;
}
.directors-text p {
    font-size: 1.1rem;
    color: #2b2a2a;
    line-height: 1.6;
    margin-bottom: 20px;
}
.directors-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #131313;
    border-left: 4px solid #e21d20;
    padding-left: 15px;
    margin-bottom: 10px;
}

.directors-text h4 {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
}
.directors-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.directors-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%; 
    object-fit: cover;
    border: 5px solid #e21d20; 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
} */




/* why choose section  starts */

.why-choose-us{
    width: 100%;
    margin: 0 auto;
    padding: 80px 5%;
    background: #121213;
}
.why-choose-content{
   display: flex;
   max-width: 1800px;
   align-items: center;
   justify-content: space-between;
   gap: 50px;
}
.why-choose-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-choose-image img {
    width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 12px 15px rgba(206, 204, 204, 0.281);
}
.why-choose-text {
    flex: 1;
    max-width: 500px;
}
.why-choose-text h2 {
    font-size: 2rem;
    color: #c49c00;
    margin-bottom: 20px;
}
.why-choose-text ul {
    list-style: none;
    padding: 0;
}
.why-choose-text li {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.checkmark {
    font-size: 1.5rem;
    color: #c49c00;
    margin-right: 10px;
}

/* why choose section  ends */







/* testimonial section starts */

.testimonial-area{
    width: 100%;
    background: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.testimonial-area .container{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.testimonial-area .container .sec-title{
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
}
.testimonial-area .container .sec-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: #e6b906;
}
.testimonial-area .container .sec-title h2{
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #e6b906;
}
.testimonial-area .container .sec-title p{
   font-size: 1.5rem;
   line-height: 30px;
   color: #fff;
   text-transform: capitalize;
}
.testimonial-area .owl-carousel{
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -40px;
    padding-right: 40px;
}
.owl-carousel .owl-stage-outer{
    padding: 30px 50px;
    margin-left: -35px;
    width: calc(100% + 100px);
}
.single-testimonial{
    border: 5px solid #fff;
    text-align: center;
    border-radius: 45px;
    position: relative;
    z-index: 2;
}
.single-testimonial p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}
.single-testimonial .client-info{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-bottom: 50px;
}
.single-testimonial .client-info .client-details h6{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.single-testimonial .client-info .client-details span{
    display: inline-block;
    color: #fff;
    font-size: 16px;
}
.single-testimonial .client-info .client-pic{
    padding-right: 15px;
}
.single-testimonial .client-info .client-pic img{
    width: 100px;
    border-radius: 50px;
}
.owl-dots {
    text-align: center;
    margin-top: 50px;
}
.owl-dots button{
   background: #fff !important;
   width: 12px;
   height: 12px;
   border-radius: 26px;
   margin: 0 5px;
   transition: 0.3s;
}
.owl-dots button.active{
    width: 25px;
}
.single-testimonial::before{
    content: '\f10d';
    position: absolute;
    font-family: FontAwesome;
    left: -35px;
    top: -35px;
    background: #1b1b1b;
    color: #e6b906;
    font-size: 70px;
    width: 126px;
    height: 100px;
}
.single-testimonial::after{
    content: '\f10e';
    position: absolute;
    font-family: FontAwesome;
    right: -35px;
    bottom: -35px;
    background: #1b1b1b;
    color: #e6b906;
    font-size: 70px;
    width: 126px;
    height: 100px;
}

/* testimonial section ends */




/* Quote Section starts */

.quote-section {
    background-color: #202020; 
    padding: 80px 10%;
    color: #fff;
}
.quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.quote-section h4 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    background: linear-gradient(45deg, #c49c00 0%, #e6b906 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quote-section h4::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background-color: #e6b906;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ddd;
}
.quote-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 40px;
    flex-wrap: nowrap;
}
.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #be9a09;
    z-index: 1;
}
.step {
    background: linear-gradient(45deg, #db3627, rgb(228, 192, 51));
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(184, 182, 182, 0.404);
    text-align: center;
    width: 22%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.step:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.step-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}
.step p {
    font-size: 1.2rem;
    font-weight: 500;
}
.step a {
    color: #be0808;
    text-decoration: none;
    font-weight: bold;
}
.step a:hover {
    text-decoration: underline;
}

/* Quote Section ends */






/* Footer Section starts */

footer {
    background: linear-gradient(135deg, #0e1d25, #236281);
    color: #ffffff;
    padding: 60px 8%;
    /* border-top-left-radius: 120px;
    border-bottom-right-radius: 120px; */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    color: #e0b60a;
    display: inline-block; 
    text-align: center; 
    width: 100%; 
}
.footer-column p i{
    margin-right: 8px;
    color: #e0b60a;
}
.footer-column h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.footer-column p {
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}
.footer-column img {
    width: 160px;
    margin-bottom: 15px;
}
.quick-links {
    text-align: center; 
}
.quick-links h3 {
    position: relative;
    display: inline-block;
}
.quick-links h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #a58503;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}



.latest-blogs {
    margin-left: -15px; 
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}
.social-icons a {
    color: #d1a909;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}
.social-icons a:hover {
    color: #c49e08;
    transform: scale(1.2);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    font-size: 1.2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.footer-column ul li a:hover {
    color: #c49c00;
    text-decoration: underline;
}
.blog-post {
    margin-bottom: 12px;
}
.blog-post a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}
.blog-post a:hover {
    color: #c49c00;
}
.blog-post span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.658);
    margin-top: 3px;
}
.map-container {
    margin-top: 20px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px; /* Added space to separate from columns */
    position: relative;
}
.footer-bottom::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px; /* Space between the line and copyright */
}
.footer-bottom p {
    font-size: 1rem;
    color: rgb(255, 255, 255);
}


/* Footer Section ends */
















@media screen and (max-width: 991px){

    .top-bar {
        font-size: 14px;
        padding: 10px 5%;
        gap: 10px;
    }
    .logo img {
        height: 60px;
    }
    .nav-links a {
        font-size: 18px;
    }


    .about-text {
        max-width: 100%;
    }
    .about-image {
        text-align: center;
    }
    .about-image img {
        max-width: 80%;
    }
    .vision-mission {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .card {
        width: 80%;
    }




    .why-choose-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .why-choose-image img {
        width: 500px;
    }


    .team-members {
        justify-content: center;
        gap: 20px;
    }
    .team-member {
        width: 45%;
    }


    .testimonial-area {
        height: auto;
        padding: 50px 0;
    }
    .testimonial-area .container .sec-title h2 {
        font-size: 2rem;
    }
    .testimonial-area .container .sec-title p {
        font-size: 1.3rem;
    }
    .owl-carousel .owl-stage-outer {
        padding: 20px 30px;
    }
    .single-testimonial p {
        font-size: 15px;
        padding: 40px;
    }
    .single-testimonial .client-info .client-details h6 {
        font-size: 16px;
    }
    .single-testimonial .client-info .client-details span {
        font-size: 14px;
    }
    .single-testimonial .client-info .client-pic img {
        width: 80px;
    }

}



@media screen and (max-width: 768px) {

    .top-bar {
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 8px 5%;
    }
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure it stays above */
    }
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%; 
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
        transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        border-radius: 10px;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .nav-links.active {
        left: 0;
        opacity: 1;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle.rotated {
        transform: rotate(90deg);
        transition: transform 0.3s ease-in-out;
    }
    .nav-links a {
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 5px;
        transition: background 0.3s ease-in-out;
    }
    .nav-links a:hover {
        background: #a58503;
        color: #fff;
        box-shadow: 0px 4px 10px rgba(228, 255, 78, 0.5);
    }


    .hero {
        height: 70vh;
        padding: 0 5%;
    }
    .hero-content {
        max-width: 500px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-section{
        padding: 60px 5%;
    }
    .about-text h2{
        font-size: 2rem;
    }
    .about-text p {
        text-align: left;
        font-size: 1.2rem;
    }
    .about-image img {
        max-width: 90%;
    }
    .card {
        width: 90%;
        padding: 25px;
    }
    .card h2 {
        font-size: 1.6rem;
    }
    .card p {
        font-size: 1rem;
    }



    .why-choose-text h3 {
        font-size: 1.8rem;
    }
    .why-choose-text li {
        font-size: 1.1rem;
    }
    .why-choose-image img {
        width: 450px;
    }



    .our-team-section {
        padding: 50px 5%;
    }
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 80%;
    }



    .testimonial-area .container .sec-title h2 {
        font-size: 1.8rem;
    }
    .testimonial-area .container .sec-title p {
        font-size: 1.2rem;
    }
    .owl-carousel .owl-stage-outer {
        padding: 15px 20px;
    }
    .single-testimonial p {
        font-size: 14px;
        padding: 30px;
    }
    .single-testimonial .client-info .client-details h6 {
        font-size: 15px;
    }
    .single-testimonial .client-info .client-details span {
        font-size: 13px;
    }
    .single-testimonial .client-info .client-pic img {
        width: 70px;
    }
    .single-testimonial::before, .single-testimonial::after {
        font-size: 50px;
        width: 100px;
        height: 80px;
    }



    .quote-section {
        padding: 60px 5%;
    }
    .quote-section h4 {
        font-size: 2rem;
    }
    .quote-section .description {
        font-size: 1rem;
        max-width: 90%;
    }
    .quote-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .steps-line {
        display: none;
    }
    .step {
        width: 80%;
        padding: 25px;
    }
    .step-icon {
        font-size: 2rem;
    }
    .step p {
        font-size: 1rem;
    }




    .footer-container {
        grid-template-columns: 1fr; /* Single column layout */
        text-align: center;
    }
    .footer-column {
        align-items: center;
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .map-container iframe {
        height: 250px;
    }
    .footer-bottom p{
        font-size: 1rem;
    }
}




@media screen and (max-width: 576px) {

    .top-bar {
        font-size: 12px;
        padding: 6px 5%;
        text-align: center;
    }


    .hero {
        height: 60vh;
        padding: 0 8%;
    }
    .hero-content {
        max-width: 400px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }


    .about-section {
        padding: 40px 5%;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .about-text p {
        font-size: 1.1rem;
    }
    .about-image img {
        max-width: 100%;
    }
    .card {
        width: 100%;
        padding: 20px;
    }
    .card i {
        font-size: 2rem;
    }
    .card h2 {
        font-size: 1.5rem;
    }
    .card p {
        font-size: 0.95rem;
    }



    .why-choose-text h3 {
        font-size: 1.6rem;
    }
    .why-choose-text li {
        font-size: 1rem;
    }
    .why-choose-image img {
        width: 100%;
        max-width: 350px;
    }


    .our-team-section {
        padding: 40px 5%;
    }
    .our-team-section h2 {
        font-size: 2.5rem;
    }
    .team-member {
        width: 100%;
        padding: 15px;
    }
    .team-member img {
        height: 200px;
    }



    .testimonial-area .container .sec-title h2 {
        font-size: 1.6rem;
    }
    .testimonial-area .container .sec-title p {
        font-size: 1rem;
    }
    .owl-carousel .owl-stage-outer {
        padding: 25px 15px;
    }
    /* .single-testimonial{
        margin: 0 auto !important;
        width: 100% !important;
    } */
    .single-testimonial p {
        font-size: 13px;
        padding: 20px;
    }
    .single-testimonial .client-info .client-details h6 {
        font-size: 14px;
    }
    .single-testimonial .client-info .client-details span {
        font-size: 12px;
    }
    .single-testimonial .client-info .client-pic img {
        width: 60px;
    }
    .single-testimonial::before, .single-testimonial::after {
        font-size: 40px;
        width: 80px;
        height: 60px;
    }
    .owl-dots button {
        width: 10px;
        height: 10px;
    }
    .owl-dots button.active {
        width: 20px;
    }



    .quote-section {
        padding: 40px 3%;
    }
    .quote-section h4 {
        font-size: 1.5rem;
    }
    .quote-section .description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .quote-steps {
        flex-direction: column;
        gap: 25px;
    }
    .steps-line {
        display: none;
    }
    .step {
        width: 100%;
        padding: 20px;
    }
    .step-icon {
        font-size: 1.8rem;
    }
    .step p {
        font-size: 0.95rem;
    }




    .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    .footer-column h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        margin-top: 30px;
    }
    .footer-bottom p{
        font-size: 0.9rem;
    }
}