/* ==========================
   JSS TRADERS PREMIUM CSS
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --dark-green: #1B5E20;
    --forest-green: #2E7D32;
    --light-green: #A5D6A7;
    --yellow: #FFEB3B;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #b4efb4;
    color: #222;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 70px;
    height: 4px;
    background: var(--yellow);
    border-radius: 50px;
}

/* ==========================
   NAVBAR
========================== */

 
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 9999;

     background: rgba(118, 248, 144, 0.75);
     backdrop-filter: blur(12px);

     border-bottom: 1px solid rgba(255, 255, 255, .08);

     transition: .4s ease;
 }

 .nav-container {
     width: 90%;
     max-width: 1300px;
     margin: auto;

     display: flex;
     align-items: center;
     justify-content: space-between;

     padding: 12px 0;
 }

 /* LOGO */

 .logo img {
     height: 70px;
     width: auto;
     transition: .4s;
 }

 .logo img:hover {
     transform: scale(1.05);
 }

 /* NAV LINKS */

 .nav-links {
     display: flex;
     align-items: center;
     gap: 35px;

     list-style: none;
 }

 .nav-links a {
     color: #fff;
     text-decoration: none;
     font-size: 15px;
     font-weight: 500;
     position: relative;
     transition: .3s;
 }

 /* HOVER LINE */

 .nav-links a::after {

     content: "";

     position: absolute;

     left: 50%;
     bottom: -8px;

     width: 0;
     height: 3px;

     background: #FFEB3B;

     transition: .4s ease;

     transform: translateX(-50%);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .nav-links a:hover {
     color: #FFEB3B;
 }

 /* ENQUIRY BUTTON */

 .enquiry-btn {

     background: linear-gradient(135deg,
             #FFEB3B,
             #FFD600);

     color: #000;

     padding: 13px 28px;

     border-radius: 50px;

     text-decoration: none;

     font-weight: 700;

     transition: .4s ease;

     box-shadow:
         0 8px 20px rgba(255, 235, 59, .25);
 }

 .enquiry-btn:hover {

     transform: translateY(-4px);

     box-shadow:
         0 15px 35px rgba(255, 235, 59, .45);
 }

 /* NAVBAR SCROLL EFFECT LOOK */

 .navbar:hover {
     background: rgba(142, 225, 147, 0.88);
 }

 /* MOBILE */

 @media(max-width:991px) {

     .nav-container {
         flex-direction: column;
         gap: 15px;
     }

     .nav-links {
         flex-wrap: wrap;
         justify-content: center;
         gap: 18px;
     }

     .logo img {
         height: 60px;
     }

 }

 @media(max-width:768px) {

     .nav-links {
         gap: 12px;
     }

     .nav-links a {
         font-size: 14px;
     }

     .enquiry-btn {
         padding: 12px 20px;
     }

 }

/* ==========================
   HERO
========================== */

.hero {
    height: 100vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(27, 94, 32, 0.75)),
        url("bg_jss_traders.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.btn-primary {
    background: #FFEB3B;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 235, 59, .4);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1B5E20;
}

/* MOBILE */

@media(max-width:768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

}
/* ==========================
   GLASS CARD
========================== */

.glass-card {
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .4s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section {
    padding: 120px 0;
    background: #b6f2b3;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.section-heading span {
    color: #2E7D32;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-heading h2 {
    margin-top: 15px;
    font-size: 2.8rem;
    color: #1B5E20;
    line-height: 1.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    color: #1B5E20;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.feature-box {

    background: #fff;

    padding: 20px;

    border-radius: 15px;

    border: 1px solid rgba(0, 0, 0, .08);

    display: flex;
    align-items: center;
    gap: 15px;

    transition: .4s;
}

.feature-box:hover {

    transform: translateY(-8px);

    background: #1B5E20;

    color: #fff;
}

.feature-box i {
    font-size: 24px;
    color: #FFEB3B;
}

/* RIGHT CARD */

.about-card {

    background: linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    border-radius: 30px;

    padding: 40px;

    color: white;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.experience-box {

    text-align: center;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.experience-box h1 {

    font-size: 4rem;

    color: #FFEB3B;
}

.experience-box p {
    font-size: 18px;
}

.about-mini-card {

    margin-top: 25px;

    background: rgba(255, 255, 255, .1);

    padding: 20px;

    border-radius: 15px;

    display: flex;
    align-items: center;
    gap: 20px;

    backdrop-filter: blur(10px);
}

.about-mini-card i {

    width: 60px;
    height: 60px;

    background: #FFEB3B;

    color: #000;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.about-mini-card h4 {
    margin-bottom: 6px;
}

.about-mini-card p {
    color: #ddd;
    font-size: 14px;
}

/* MOBILE */

@media(max-width:991px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

}

@media(max-width:768px) {

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

}
/* ==========================
   SERVICES
========================== */

/* ==========================
   SERVICES TIMELINE
========================== */

.services-section {

    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #f7fff7,
            #fffef2);

    position: relative;
}

.services-timeline {

    position: relative;

    max-width: 1100px;

    margin: auto;
}

/* CENTER LINE */

.services-timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    width: 4px;

    height: 100%;

    background:
        linear-gradient(#1B5E20,
            #FFEB3B);

    border-radius: 20px;
}

/* SERVICE ITEM */

.service-item {

    position: relative;

    width: 50%;

    padding: 30px 50px;

    margin-bottom: 40px;
}

.service-item.left {
    left: 0;
}

.service-item.right {
    left: 50%;
}

/* ICON */

.service-icon {

    position: absolute;

    top: 30px;

    width: 70px;
    height: 70px;

    background:
        linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 28px;

    border: 5px solid #fff;

    box-shadow:
        0 0 25px rgba(46, 125, 50, .4);

    animation: pulse 3s infinite;
}

.left .service-icon {
    right: -35px;
}

.right .service-icon {
    left: -35px;
}

/* CONTENT */

.service-content {

    background: #fff;

    padding: 30px;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .5s;
}

.service-content:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);
}

.service-content h3 {

    color: #1B5E20;

    margin-bottom: 15px;

    font-size: 24px;
}

.service-content p {

    color: #666;

    line-height: 1.8;
}

/* PULSE ANIMATION */

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, .5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(46, 125, 50, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

/* MOBILE */

@media(max-width:991px) {

    .services-timeline::before {
        left: 30px;
    }

    .service-item {

        width: 100%;

        left: 0 !important;

        padding-left: 90px;
        padding-right: 20px;
    }

    .service-icon {

        left: 0 !important;
    }
}

/* ==========================
   FOUNDER
========================== */


.founder-section {

    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #ffffff,
            #b4feb4);
}

.founder-wrapper {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 70px;

    align-items: center;
}

/* IMAGE CARD */

.founder-image-card {

    position: relative;

    background: #ffffff;

    padding: 15px;

    border-radius: 25px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .12);

    overflow: hidden;

    transition: .5s;
}

.founder-image-card:hover {

    transform: translateY(-10px);
}

.founder-image-card img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 20px;
}

/* BADGE */

.founder-badge {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    background:
        linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    color: white;

    padding: 12px 30px;

    border-radius: 50px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(46, 125, 50, .35);
}

/* CONTENT */

.small-title {

    color: #2E7D32;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: 14px;
}

.founder-content h2 {

    font-size: 3rem;

    color: #1B5E20;

    margin: 15px 0 25px;
}

.founder-content p {

    color: #555;

    line-height: 1.9;

    margin-bottom: 20px;
}

/* HIGHLIGHTS */

.founder-highlights {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 35px;
}

.highlight-box {

    flex: 1;

    min-width: 170px;

    background: #fff;

    padding: 25px;

    text-align: center;

    border-radius: 20px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

    border-top: 4px solid #FFEB3B;

    transition: .4s;
}

.highlight-box:hover {

    transform: translateY(-8px);

    background: #1B5E20;

    color: white;
}

.highlight-box h3 {

    font-size: 2rem;

    color: #1B5E20;

    margin-bottom: 8px;
}

.highlight-box:hover h3 {
    color: #FFEB3B;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .founder-wrapper {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .founder-image-card {

        max-width: 450px;

        margin: auto;
    }

    .founder-highlights {

        justify-content: center;
    }
}

@media(max-width:768px) {

    .founder-content h2 {
        font-size: 2.2rem;
    }

    .founder-image-card img {

        height: 400px;
    }
}
/* ==========================
   VISION MISSION
========================== */

/* ==========================
   VISION & MISSION
========================== */

.vision-mission-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #f8fff8,
        #fffef5
    );
}

.vm-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:60px;
}

/* CARD */

.vm-card{

    position:relative;

    background:#fff;

    padding:50px;

    border-radius:30px;

    overflow:hidden;

    transition:.5s;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.vm-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);
}

/* TOP BORDER */

.vision-card{
    border-top:6px solid #2E7D32;
}

.mission-card{
    border-top:6px solid #FFEB3B;
}

/* ICON */

.vm-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    font-size:35px;

    transition:.5s;
}

.vision-card .vm-icon{

    background:
    linear-gradient(
        135deg,
        #1B5E20,
        #2E7D32
    );

    color:white;
}

.mission-card .vm-icon{

    background:
    linear-gradient(
        135deg,
        #FFEB3B,
        #FFD600
    );

    color:black;
}

.vm-card:hover .vm-icon{

    transform:rotate(360deg) scale(1.1);
}

/* TEXT */

.vm-card h3{

    font-size:2rem;

    margin-bottom:20px;

    color:#1B5E20;
}

.vm-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* BOTTOM LINE */

.vm-line{

    margin-top:25px;

    width:70px;
    height:5px;

    border-radius:50px;
}

.vision-card .vm-line{
    background:#2E7D32;
}

.mission-card .vm-line{
    background:#FFEB3B;
}

/* BACKGROUND GLOW */

.vm-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    top:-120px;
    right:-120px;

    opacity:.05;
}

.vision-card::before{
    background:#2E7D32;
}

.mission-card::before{
    background:#FFEB3B;
}

/* RESPONSIVE */

@media(max-width:991px){

    .vm-grid{
        grid-template-columns:1fr;
    }

    .vm-card{
        padding:40px;
    }
}

@media(max-width:768px){

    .vm-card h3{
        font-size:1.7rem;
    }

    .vm-card{
        padding:30px;
    }

    .vm-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }
}

/* ==========================
   PARTNERS
========================== */
/* ==========================
   PARTNERS SECTION
========================== */

.partners-section {

    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #ffffff,
            #a9e8a9);

    position: relative;

    overflow: hidden;
}

/* BACKGROUND GLOW */

.partners-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: #A5D6A7;

    border-radius: 50%;

    top: -180px;
    right: -150px;

    opacity: .15;

    filter: blur(120px);
}

.partners-section::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background: #FFEB3B;

    border-radius: 50%;

    bottom: -180px;
    left: -120px;

    opacity: .12;

    filter: blur(120px);
}

/* GRID */

.partners-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 30px;

    margin-top: 60px;
}

/* CARD */

.partner-card {

    background:
        rgba(255, 255, 255, .75);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .4);

    border-radius: 15px;

    padding: 10px;

    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .5s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;
}

/* HOVER EFFECT */

.partner-card:hover {

    transform:
        translateY(-12px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .15);
}

/* SHINE EFFECT */

.partner-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .6),
            transparent);

    transition: .8s;
}

.partner-card:hover::before {

    left: 100%;
}

.partner-card img {

    max-width: 250px;

    max-height: 150px;

    object-fit: contain;

    transition: .4s;
}

.partner-card:hover img {

    transform: scale(1.08);
}

/* STATS */

.partner-stats {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 70px;
}

.trust-box {

    background:
        linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    color: white;

    padding: 25px 40px;

    border-radius: 20px;

    min-width: 220px;

    text-align: center;

    box-shadow:
        0 15px 40px rgba(46, 125, 50, .25);

    transition: .4s;
}

.trust-box:hover {

    transform: translateY(-10px);
}

.trust-box h3 {

    font-size: 2.5rem;

    color: #FFEB3B;

    margin-bottom: 8px;
}

.trust-box p {

    font-size: 15px;

    letter-spacing: .5px;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .partners-grid {

        grid-template-columns: 1fr;
    }

    .trust-box {

        width: 100%;
    }
}

    
   
/* ==========================
   CONTACT
========================== */

/* ==========================
   CONTACT SECTION
========================== */

.contact-section {

    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #f7fff7,
            #fffef5);

    position: relative;
}

/* WRAPPER */

.contact-wrapper {

    display: grid;

    grid-template-columns:
        420px 1fr;

    gap: 40px;

    margin-top: 60px;
}

/* LEFT CARD */

.contact-info-card {

    background:
        linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    color: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

.contact-info-card h3 {

    font-size: 2rem;

    margin-bottom: 15px;
}

.contact-desc {

    color: #ddd;

    margin-bottom: 35px;

    line-height: 1.8;
}

/* CONTACT ITEM */

.contact-item {

    display: flex;

    gap: 18px;

    margin-bottom: 30px;

    align-items: flex-start;
}

/* ICON */

.contact-icon {

    min-width: 60px;

    width: 60px;
    height: 60px;

    background: #FFEB3B;

    color: #000;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    transition: .4s;
}

.contact-item:hover .contact-icon {

    transform: rotate(360deg);
}

.contact-item h4 {

    margin-bottom: 5px;

    font-size: 18px;
}

/* RIGHT FORM */

.contact-form-card {

    background: white;

    padding: 45px;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
}

.contact-form-card h3 {

    font-size: 2rem;

    color: #1B5E20;

    margin-bottom: 30px;
}

/* INPUTS */

.input-group {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 20px;
}

.contact-form-card input,
.contact-form-card textarea {

    width: 100%;

    padding: 16px 20px;

    border: 1px solid #ddd;

    border-radius: 15px;

    outline: none;

    font-size: 15px;

    transition: .3s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {

    border-color: #2E7D32;

    box-shadow:
        0 0 15px rgba(46, 125, 50, .15);
}

/* BUTTON */

.contact-form-card button {

    background:
        linear-gradient(135deg,
            #1B5E20,
            #2E7D32);

    color: white;

    border: none;

    padding: 16px 35px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .4s;

    margin-top: 15px;
}

.contact-form-card button i {

    margin-right: 10px;
}

.contact-form-card button:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(46, 125, 50, .3);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-wrapper {

        grid-template-columns: 1fr;
    }

    .contact-info-card {

        max-width: 600px;

        margin: auto;
    }
}

@media(max-width:768px) {

    .input-group {

        grid-template-columns: 1fr;
    }

    .contact-form-card {

        padding: 30px;
    }

    .contact-info-card {

        padding: 30px;
    }
}

/* ==========================
   FOOTER
========================== */

.footer {

    background:
        linear-gradient(135deg,
            #79de81,
            #1B5E20,
            #2E7D32);

    color: white;

    padding-top: 80px;

    position: relative;

    overflow: hidden;
}

/* TOP GLOW */

.footer::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: #FFEB3B;

    border-radius: 50%;

    top: -150px;
    right: -120px;

    opacity: .08;

    filter: blur(120px);
}

/* GRID */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 60px;
}

/* LOGO */

.footer-logo {

    width: 180px;

    margin-bottom: 20px;
}

.footer-col p {

    color: #d9d9d9;

    line-height: 1.8;
}

/* HEADINGS */

.footer-col h3 {

    color: #FFEB3B;

    margin-bottom: 25px;

    font-size: 22px;
}

/* LINKS */

.footer-col ul {

    list-style: none;
}

.footer-col ul li {

    margin-bottom: 14px;
}

.footer-col ul li a {

    color: #ddd;

    text-decoration: none;

    transition: .3s;
}

.footer-col ul li a:hover {

    color: #FFEB3B;

    padding-left: 8px;
}

/* SOCIAL */

.social-icons {

    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-icons a {

    width: 45px;
    height: 45px;

    background:
        rgba(255, 255, 255, .1);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    transition: .4s;
}

.social-icons a:hover {

    background: #FFEB3B;

    color: black;

    transform: translateY(-5px);
}

/* CONTACT INFO */

.footer-contact p {

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-contact i {

    color: #FFEB3B;

    width: 20px;
}

/* BOTTOM BAR */

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, .1);

    padding: 25px 0;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 15px;
}

.footer-bottom p {

    color: #ccc;

    font-size: 14px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .footer-grid {

        grid-template-columns: 1fr;
    }

    .footer-bottom {

        text-align: center;

        justify-content: center;
    }

    .footer-logo {

        width: 150px;
    }
}