/* ==========================================
        TEAM PROFILE PAGE
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(
        135deg,
        rgba(255,153,51,.80),
        rgba(255,255,255,.35),
        rgba(6,3,141,.15),
        rgba(255,255,255,.35),
        rgba(19,136,8,.80)
    );
    color:#000080;
}

/* ==========================================
            NAVBAR
========================================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo img{
    width:120px;
    cursor:pointer;
}

.logo p{
    font-size:12px;
    font-weight:600;
    color:#000080;
    letter-spacing:2px;
    text-transform:uppercase;
}

.menu-toggle{
    display:none;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu li{
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:#000080;
    font-weight:600;
    transition:.3s;
}

.menu a:hover,
.menu a.active{
    color:#ff671f;
}

.register-btn{
    padding:13px 30px;
    background:#ff671f;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.register-btn:hover{
    background:#fff;
    color:#000080;
    border:2px solid #ff671f;
}

/* ==========================================
            HERO SECTION
========================================== */

.hero{
    height:650px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../image/about/kanpurfounder.png");

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.hero h1{
    color:#ff671f;
    font-size:72px;
    margin-bottom:20px;
}

.hero p{
    color:white;
    font-size:20px;
    line-height:1;
}

/* ==========================================
        COMMON SECTION
========================================== */

section{
    padding:70px 8%;
}

section h2{
    text-align:center;
    color:#000080;
    font-size:42px;
    margin-bottom:45px;
}
/* ==========================================
        PROFILE SECTION
========================================== */
.profile-section{
    padding-top:90px;
}
.profile-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
}
.profile-image{
    text-align:center;
}
.profile-image img{
    width:300px;
    height:300px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #ff671f;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
}
.profile-content h2{
    color:#000080;
    font-size:42px;
    margin-bottom:10px;
}
.profile-content h4{
    color:#ff671f;
    font-size:22px;
    margin-bottom:20px;
}

.profile-content p{
    color:black;
    font-size:17px;
    line-height:1;
    margin-bottom:25px;
}

/* Badge */

.badge{
    display:inline-block;
    background:transparent;
    border: 2px solid #ff671f;
    color:#ff671f;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

/* ==========================================
        SOCIAL LINKS
========================================== */
.social-links{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:none;
}
.social-links a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.3s;
}
.social-links img{
    width:24px;
    height:24px;
    display: block;
}
.social-links a:hover{
    transform:translateY(-5px);
}

/* ==========================================
        BACK BUTTON
========================================== */

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#ff671f;
    color:#fff;
    padding:14px 28px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}
.back-btn:hover{
    background:#fff;
    color:#000080;
    border:2px solid #ff671f;
}

/* ==========================================
        ABOUT SECTION
========================================== */

.about-profile{
    text-align:center;
}
.about-profile p{
    max-width:1000px;
    margin:0 auto 20px;
    color:black;
    font-size:18px;
    line-height:1;
}

/* ==========================================
        CONTACT INFO
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.3s;
}
.contact-card:hover{
    transform:translateY(-10px);
}
.contact-card i{
    font-size:40px;
    color:#ff671f;
    margin-bottom:18px;
}
.contact-card h3{
    color:#000080;
    margin-bottom:10px;
    font-size:22px;
}
.contact-card p{
    color:black;
    font-size:16px;
}

/* ==========================================
        RESPONSIBILITIES SECTION
========================================== */

.responsibility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:10px;
}

.responsibility-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.35s ease;
}

.responsibility-card:hover{
    transform:translateY(-10px);
    box-shadow:0 5px 10px rgba(6,3,141,.80);
}

.responsibility-card i{
    font-size:48px;
    color:#ff671f;
    margin-bottom:20px;
}

.responsibility-card h3{
    color:#000080;
    margin-bottom:15px;
    font-size:24px;
}

.responsibility-card p{
    color:black;
    line-height:1;
}

/* ==========================================
        EXPERIENCE TIMELINE
========================================== */

.timeline{

    position:relative;

    max-width:900px;

    margin:60px auto 0;

    padding-left:40px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:12px;

    top:0;

    width:4px;

    height:100%;

    background:#ff671f;

}

.timeline-item{

    position:relative;

    margin-bottom:45px;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-36px;

    top:8px;

    width:20px;

    height:20px;

    background:#ff671f;

    border-radius:50%;

    border:4px solid #fff;

    box-shadow:0 5px 10px rgba(6,3,141,.80);

}

.timeline-year{

    display:inline-block;

    background:#000080;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:15px;

}

.timeline-content{

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 5px 10px rgba(6,3,141,.80);

}

.timeline-content h3{

    color:#ff671f;

    margin-bottom:12px;

}

.timeline-content p{
    color:black;
    line-height:1;
}

/* ==========================================
            SKILLS
========================================== */

.skills{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 300px;
    max-width:auto;
    margin: none;

}

.skills-left h2,
.certifications h2{

    margin-bottom:35px;

    color:#000080;

}

.skill{
    margin-bottom:10px;

}

.skill-title{

    display: flex;
    justify-content:space-between;

    font-weight:600;

    color:#000080;

    margin-bottom:10px;

}

.progress{

    width:100%;

    height:14px;

    background:#ddd;

    border-radius:30px;
    margin-bottom: 50px;
    overflow:hidden;

}

.progress-bar{

    height:100%;

    border-radius:30px;

    background:linear-gradient(90deg,#ff671f,#ff914d);

    transition:width 2s ease;
    margin-bottom: 50px;
}

/*=========certificate===========*/

.certifications ul{

    list-style:none;

}

.certifications li{

    background:#fff;

    margin-bottom:18px;

    padding:18px 25px;

    border-left:6px solid #ff671f;

    border-radius:12px;

    box-shadow:0 5px 10px rgba(6,3,141,.80);

    font-size:17px;

    color:#000080;

    transition:.3s;

}

.certifications li:hover{

    transform:translateX(8px);

    background:#fff8f3;

}

/* ==========================================
            CTA
========================================== */

.cta{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)), 
    url("../image/ctabanner/ctabanner1.png") center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    text-align:center;
    padding:100px 8%;

}

.cta h2{
    color:#ff671f;
    font-size:48px;
    margin-bottom:20px;
}

.cta p{
    color:#fff;
    font-size:18px;
    max-width:750px;
    margin:0 auto 40px;
    line-height:1;
}

.cta-btn{
    display:inline-block;
    vertical-align:middle;
    padding:15px 40px;
    margin-right:15px;
    background:#ff671f;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.cta-btn:hover{

    background:#fff;

    color:#000080;

    border:2px solid #ff671f;

    transform:translateY(-5px);

}
.cta-secbtn{
    display:inline-block;
    vertical-align:middle;
    margin-left:0 !important;
    padding:16px 40px;
    background:transparent;
    color:white;
    text-decoration:none;
    font-weight:700;
    border: 2px solid #ff671f;
    border-radius:35px;
    transition:.3s;
}

.cta-secbtn:hover{
    border: 2px solid #000080;
    background: white;
    color: #000080; 
}

/* ==========================================
      FOOTER
========================================== */

.footer{
    background:#fff;
    padding:25px 60px 10px;
    border-top:1px solid #ddd;
}

/* Top */
.footer-top{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:flex-start;
    gap:5px;
}

/* LEFT */
.footer-left h3{
    color:#ff5b2e;
    margin-bottom:15px;
}

.footer-link{
    display:flex;
    gap:15px;
    list-style:none;
}

.footer-link a{
    text-decoration:none;
    font-weight:none;
    color:#000080;
    transition:.3s;
}

.footer-link a:hover{
    color:#ff671f;
    font-weight:bold;
}

/* CENTER */
.footer-center{
    text-align:center;
}
.brand-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:10px;
}
.brand-row h2{
    color:#ff5b2e;
    font-size:34px;
    margin:0;
}
.footer-center p{
    color: #000080;
}

/* Offline Icons */
.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:none;
}
.social-icons a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.3s;
}
.social-icons img{
    width:24px;
    height:24px;
    display: block;
}
.social-icons a:hover{
    transform:translateY(-5px);
}
/* RIGHT */
.footer-right{
    text-align:right;
}
.footer-right h3{
    color:#ff5b2e;
    margin-bottom:15px;
}
.footer-right p{
    color: #000080;
    margin:8px 0;
}
/* Bottom */
.footer-bottom{
    margin-top:20px;
    text-align:center;
}
.footer-bottom hr{
    border:none;
    border-top:1px solid #000080;
    margin-bottom:12px;
}
.footer-bottom p{
    color:#000080;
    font-size:14px;
}


/* ==========================================
            SCROLL ANIMATION
========================================== */

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================
            RIPPLE EFFECT
========================================== */

.back-btn,
.cta-btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:scale(0);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/* ==========================================
            SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#ff671f;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#e85b18;

}



/* ==========================================
        TABLET RESPONSIVE
========================================== */

@media (max-width:992px){

/* Navbar */


.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:15px 5%;
    position:relative;
}

.logo{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:12px;
    flex:1;
}

.logo img{
    width:90px;      /* Bigger than mobile */
    height:auto;
}

/* Tablet Tagline */
.logo .tagline{
    display:block;
    width:100%;
    white-space:nowrap;
    text-align:center;
    font-size:22px;   /* Bigger than mobile (12px) */
    font-weight:700;
    letter-spacing:0.5px;
    line-height:1.2;
    text-transform:uppercase;
}

.logo .tagline .orange{
    color:#FF671F;
}

.logo .tagline .blue{
    color:#000080;
}

.logo .tagline .green{
    color:#138808;
}

/* Hamburger */
    .menu-toggle{
        display:block;
        font-size:36px;
        cursor:pointer;
    }

    .menu{
        position:absolute;
        top:80px;
        right:20px;
        width:150px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:10px 0;
        gap: 0;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transition:.35s ease;
    }

    .menu.active{
        max-height:500px;
        opacity:1;
    }


.menu li{
    width:100%;
    margin:0;
    padding:0;
}

.menu a{
    display:block;
    width:100%;
    padding:4px 9px;   /* Reduced from 14px 20px */
    font-size:15px;
    line-height:1.2;
    text-align: center;
}

.register-btn{
    display:none;
}

/* ==========Hero============= */

.hero{
    height:500px;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:18px;
    line-height:1.6;
}

/* Profile */

.profile-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:35px;
}

.profile-image img{
    width:220px;
    height:220px;
}

.profile-content p{
    text-align: justify;
}
/* about */

.about-profile p{
    text-align: justify;
}

/* Contact */

 /* Hide Website card */
    .contact-grid .contact-card:nth-child(3){
        display:none;
    }

    /* Show remaining two cards in one row */
    .contact-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .contact-card{
        padding:15px;
        text-align:center;
    }
    .contact-info h3{
        color: #ff671f;
    }

/* Responsibilities */

.responsibility-grid{
    grid-template-columns:repeat(2,1fr);
}

.responsibilities h3{
    color: #ff671f;
}
/* ===============================
   Skills Section - iPad
=============================== */
.skills{
        display:grid;
        grid-template-columns:50% ;
        gap:25px;                 /* Override the 300px gap */
        align-items:start;        /* Align both columns from the top */
        margin:50px auto;
        padding:0 5%;
    }

    .skills-left,
    .certifications{
        margin:0;
        padding:0;
        align-self:start;
    }

    .skills-left h2{
        font-size:22px;
        margin:15 px;
        line-height:1.2;
    }

    .skill{
        margin-left:40px;
        width: 80%;
    }

    .skill-title{
        font-size:14px;
        margin-bottom:4px;
    }

    .skill-title span{
        font-size:13px;
    }
    .progress{
        width:100%;          /* Shorter than the container */
        height:8px;         /* Thinner */
        margin-bottom:30px;
    }

    .progress-bar{
        margin-bottom:0;
    }

    .certifications h2{
        font-size:24px;
        margin:0 0 20px;
        line-height:1.2;
    }
    .certifications ul{
        margin:0;
        padding:0;
    }

    .certifications li{
        padding:12px 16px;
        margin-bottom:12px;
        font-size:14px;
    }

/* CTA */

.cta h2{
    font-size:38px;
}

/* Button container */
.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

/* Buttons */
.cta-btn,
.cta-secbtn{
    display:inline-block;
    width:42%;
    text-align:center;
    vertical-align:middle;
    margin:0 5px;
}

/* Footer */

.footer-top{
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:25px;
}

.footer-left{
    width:100%;
}

.footer-left h3{
    margin-bottom:15px;
}

.footer-link{
    justify-content:center;
    flex-wrap:wrap;
}

.footer-center{
    width:100%;
}

.footer-right{
    width:100%;
    text-align:center;
}

.brand-row{
    justify-content:center;
}

}

/* ==========================================
        MOBILE RESPONSIVE
========================================== */

@media screen and (max-width:768px){

 /* Navbar */
    .navbar{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:5px;
    padding:6px 5%;
    position:relative;
}

.logo{
    display:flex;
    align-items:center;
    gap:6px;
    flex:0 0 auto;
}

.logo img{
    width:75px;      /* Bigger than mobile */
    height:auto;
}

/* Tablet Tagline */
.logo .tagline{
    display:block;
    width:auto;
    white-space:nowrap;
    text-align:center;
    font-size:11px;   /* Bigger than mobile (12px) */
    font-weight:bold;
    letter-spacing:0.5px;
    line-height:1;
    text-transform:uppercase;
}

.logo .tagline .orange{
    color:#FF671F;
}

.logo .tagline .blue{
    color:#000080;
}

.logo .tagline .green{
    color:#138808;
}

/* Hamburger */
    .menu-toggle{
        display:block;
    font-size:30px;
    cursor:pointer;
    margin-left:8px;
    }

    .menu{
        position:absolute;
        top:65px;
        right:20px;
        width:150px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:10px 0;
        gap: 0;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transition:.35s ease;
    }

    .menu.active{
        max-height:500px;
        opacity:1;
    }


.menu li{
    width:100%;
    margin:0;
    padding:0;
}

.menu a{
    display:block;
    width:100%;
    padding:4px 9px;   /* Reduced from 14px 20px */
    font-size:15px;
    line-height:1.2;
    text-align: center;
}

.register-btn{
    display:none;
}


/* Hero */

.hero{
    height:600px;
    padding:30px 5%;
    background-size:cover;
    background-position:60% center;
}

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
    line-height:1.6;
}

/* Sections */

section{
    padding:55px 5%;
}

section h2{
    font-size:30px;
}

/* Profile */

.profile-card{
    grid-template-columns:1fr;
    padding:25px;
    gap:25px;
}

.profile-image img{
    width:180px;
    height:180px;
}

.profile-content h2{
    font-size:28px;
}

.profile-content h4{
    font-size:18px;
}

.profile-content p{
    font-size:15px;
    line-height:1.5;
}
/*================= ABOUT ================= */

.about-profile p{
    font-size:15px;
    line-height:1.3;
    margin-bottom: none;
}
/* ===============================
   Contact Section - Mobile
=============================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:8px;
}

.contact-card{
    padding:10px 6px;
    border-radius:10px;
    text-align:center;
}

.contact-card i{
    font-size:20px;
    margin-bottom:6px;
}

.contact-card h3{
    font-size:13px;
    margin-bottom:4px;
}

.contact-card p{
    font-size:10px;
    line-height:1.3;
    word-break:break-word;
}

.contact-card a{
    text-decoration:none;
}

 /* Hide the 3rd contact card */
    .contact-grid .contact-card:nth-child(3){
        display: none;
    }

    /* Display the remaining two cards in one row */
    .contact-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .contact-card{
        padding: 12px 8px;
        text-align: center;
    }

/* ==================Responsibilities====================*/

.responsibility-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.responsibility-card{
    padding:20px 15px;
}

.responsibility-card h3{
    font-size:18px;
}

.responsibility-card p{
    font-size:12px;
    line-height:1.5
}

/* ===============================
   Experience Section - Mobile
=============================== */

.experience{
    padding:35px 5%;
}

.experience h2{
    font-size:24px;
    margin-bottom:20px;
    text-align:center;
}

/* Timeline container */
.timeline{
    gap:15px;
}

/* Each timeline item */
.timeline-item{
    margin-bottom:15px;
    align-items:flex-start;
}

/* Year box */
.timeline-year{
    width:100px;
    height:45px;
    font-size:16px;
    font-weight:600;
    text-align: center;
    flex-shrink:0;
}

/* Content box */
.timeline-content{
    padding:12px;
}

.timeline-content h3{
    font-size:17px;
    margin-bottom:6px;
}

.timeline-content p{
    font-size:13px;
    line-height:1.5;
}

/* ===============================
   Skills Section - Mobile
=============================== */

.skills{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:35px 5%;
}

.skills-left{
    width:100%;
}

.skills-left h2{
    text-align:center;
    font-size:24px;
    margin-bottom:20px;
}

/* Center every skill block */
.skill{
    width:88%;
    max-width:280px;
    margin:0 auto 16px;
}

/* Title row */
.skill-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    margin-bottom:6px;
}

/* Progress bar */
.progress{
    width:100%;
    height:8px;
    margin:0 auto;
}

/* ===============================
   Certifications Box - Mobile
=============================== */

.certifications{
    width:90%;
    max-width:320px;
    margin:20px auto 0;
    padding:15px;
    border-radius:12px;
}

.certifications h2{
    font-size:24px;
    margin-bottom:10px;
    text-align:center;
}

.certifications ul{
    padding:0;
    margin:0;
}

.certifications li{
    list-style:none;
    font-size:13px;
    padding: none; 
    line-height:1.5;
    font-weight: bold;
    margin-bottom:8px;
}


/*================ CTA mobile================== */

.cta{
    padding:20px 5%;
    text-align: center;
    background-position:25% center;
}

.cta h2{
    font-size:25px;
}

.cta p{
    font-size:15px;
    line-height:1.6;
}

.cta{
    text-align:center;
}

.cta-btn,
.cta-secbtn{
    display:inline-block;
    width:42%;
    padding:12px 0;
    text-align:center;
    font-size: 15px;
    vertical-align:middle;
    margin:0 5px;
}

/* ================= FOOTER MOBILE ================= */
.footer{
        padding:10px 5px;
    }

    .footer-top{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:25px;
    }

    /* Quick Links */

    .footer-left{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-left h3{
        margin-bottom:1px;
        font-size:25px;
    }

    /* Keep both rows horizontal */

    .footer-link{
        display:flex;
        justify-content:center;
        gap:8px;
        flex-wrap:nowrap;
        margin-bottom:1px;
    }

    .footer-link li{
        list-style:none;
    }

    .footer-link a{
        font-size:14px;
    }

    /* Center */

    .footer-center{
        width:100%;
    }

    .brand-row{
        flex-direction:column;
        gap:10px;
    }

    .brand-row h2{
        font-size:30px;
        line-height:0.8;
    }
    .brand-row p{
        font-size:18px;
        line-height:0.8;
        margin-bottom:1px;
    }
    .social-icons{
        justify-content:center;
    }

    /* Contact */

    .footer-right{
        width:100%;
        text-align:center;
    }
    .footer-right h3{
        font-size:25px;
        line-height:0.8;
    }
    .footer-right p{
        font-size:18px;
        line-height:0.8;
    }

    /* Copyright */

    .footer-bottom{
        margin-top:5px;
    }

    .footer-bottom hr{
        margin-bottom:5px;
    }

    .footer-bottom p{
        font-size:18px;
    }

}