:root {
    --primary: #0f3d91;
    --secondary: #00a9c9;
    --gradient: linear-gradient(135deg, #0f3d91, #00a9c9);
    --white: #fff;
    --dark: #111;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}


.top-bar {
    background: var(--gradient);
    color: var(--white);
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-left span {
    margin-right: 20px;
}

.top-left i {
    margin-right: 6px;
}

.top-right a {
    margin-left: 15px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #dff6ff;
    transform: translateY(-2px);
}


header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}

.logo img {
    height: 90px;
    margin-top: -10px;/* k update */
}

.logo img:hover {
    transform: scale(1.05);
}


.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    font-size: 18px; /* k update */
    margin-top: 8px;/* k update */
}

.desktop-nav ul li a {
    color: var(--primary);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    
   
}

.desktop-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient);
    transition: 0.4s;
}

.desktop-nav ul li a:hover {
    color: var(--secondary);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.contact-link {
    color: #fff;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.contact-link:hover {
    color: #dff6ff;
}


.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    color: var(--primary);
    transition: 0.3s;
}

.menu-toggle:hover {
    color: var(--secondary);
}


.side-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--gradient);
    padding: 60px 25px;
    transition: 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-nav.active {
    right: 0;
}

.side-nav ul {
    list-style: none;
}

.side-nav ul li {
    margin: 20px 0;
}

.side-nav ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.side-nav ul li a:hover {
    padding-left: 8px;
    color: #dff6ff;
}


.sidebar-contact {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.sidebar-contact p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.sidebar-contact i {
    margin-right: 8px;
}


.sidebar-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sidebar-social a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar-social a:hover {
    transform: translateY(-3px);
    color: #e0f9ff;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


@media(min-width:992px) {

    .menu-toggle {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    .side-nav {
        display: none;
    }

    .overlay {
        display: none;
    }
}

@media(max-width:991px) {
    .top-bar {
        display: none;
    }

    .logo img {
        height: 70px;
        
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.top-bar{
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


header{
    opacity:0;
    animation: fadeIn 1s ease forwards;
    animation-delay:0.4s;
}

@keyframes fadeIn{
    to{ opacity:1; }
}





.side-nav{
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.side-nav.active{
    transform: translateX(0);
}

/* Overlay fade */
.overlay{
    opacity:0;
    visibility:hidden;
    transition: all 0.4s ease;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}




.side-nav ul li{
    opacity:0;
    transform:translateX(30px);
    transition: all 0.4s ease;
}


.side-nav.active ul li{
    opacity:1;
    transform:translateX(0);
}


.side-nav.active ul li:nth-child(1){ transition-delay:0.1s; }
.side-nav.active ul li:nth-child(2){ transition-delay:0.2s; }
.side-nav.active ul li:nth-child(3){ transition-delay:0.3s; }
.side-nav.active ul li:nth-child(4){ transition-delay:0.4s; }
.side-nav.active ul li:nth-child(5){ transition-delay:0.5s; }



.sidebar-contact{
    opacity:0;
    transform:translateY(20px);
    transition:0.5s ease;
}

.side-nav.active .sidebar-contact{
    opacity:1;
    transform:translateY(0);
    transition-delay:0.6s;
}



.top-right a,
.sidebar-social a{
    transition: all 0.3s ease;
}

.top-right a:hover,
.sidebar-social a:hover{
    transform: translateY(-4px) scale(1.1);
}




.menu-toggle{
    transition:0.3s;
}

.menu-toggle.active{
    transform: rotate(90deg);
}



.tech-hero .carousel-item{
    height:90vh;
    min-height:550px;
    position:relative;
}

.tech-hero img{
    height:100%;
    object-fit:cover;
    filter:brightness(55%);
    transition:transform 8s ease;
}


.carousel-item.active img{
    transform:scale(1.08);
}


.custom-caption{
    bottom:50%;
    transform:translateY(50%);
    text-align:left;
    left:10%;
    right:10%;
    max-width:750px;
}

.custom-caption h1{
    font-size:50px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:20px;
}


.custom-caption p{
    font-size:20px;
    color:#e0f9ff;
}



.animate-text{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s ease forwards;
}

.animate-text-delay{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s ease forwards;
    animation-delay:0.5s;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= DOT INDICATORS ================= */

.carousel-indicators{
    bottom:30px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.5);
    border:none;
    margin:0 6px;
    transition:all 0.4s ease;
}

.carousel-indicators .active{
    background-color:#00c3ff;
    width:30px;
    border-radius:20px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1400px){
    .custom-caption h1{
        font-size:42px;
    }
}

@media(max-width:1024px){
    .custom-caption{
        text-align:center;
        left:5%;
        right:5%;
    }

    .custom-caption h1{
        font-size:32px;
    }

    .custom-caption p{
        font-size:16px;
    }
}

@media(max-width:767px){

    .tech-hero .carousel-item{
        height:70vh;
    }

    .custom-caption h1{
        font-size:24px;
    }

    .custom-caption p{
        font-size:14px;
    }
}

@media(max-width:568px){
    .custom-caption h1{
        font-size:20px;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section{
    padding:100px 0;
    background: linear-gradient(135deg,#f8fbff,#eaf4ff);
    position:relative;
    overflow:hidden;
}

/* Heading Center */
.about-heading{
    text-align:center;
    margin-bottom:60px;
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.about-heading h2{
    font-size:36px;
    font-weight:700;
    color:#0f3d91;
}

.heading-line{
    width:60px;
    height:3px;
    background:#00a9c9;
    margin:15px auto 0;
    transition:0.6s ease;
}

/* Layout */
.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Left Text */
.about-text{
    opacity:0;
    transform:translateX(-50px);
    transition:1s ease;
}

.about-text h3{
    font-size:26px;
    margin-bottom:20px;
    color:#0f3d91;
}

.about-text p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

/* Right Image */
.about-image{
    opacity:0;
    transform:translateX(50px);
    transition:1s ease;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.5s ease;
}

.about-image img:hover{
    transform:scale(1.05);
}

/* ================= SCROLL ACTIVE ================= */

.about-section.show-about .about-heading{
    opacity:1;
    transform:translateY(0);
}

.about-section.show-about .about-text{
    opacity:1;
    transform:translateX(0);
    transition-delay:0.3s;
}

.about-section.show-about .about-image{
    opacity:1;
    transform:translateX(0);
    transition-delay:0.5s;
}
/* ================= ABOUT BUTTON ================= */

.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background: linear-gradient(135deg,#0f3d91,#00a9c9);
    color:#fff;
    font-size:15px;
    font-weight:600;
    border-radius:30px;
    text-decoration:none;
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* Hover Effect */
.about-btn:hover{
    background: linear-gradient(135deg,#00a9c9,#0f3d91);
    transform:translateY(-4px);
    color:#ffffff;
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

/* Smooth Click Effect */
.about-btn:active{
    transform:scale(0.96);
}

/* Button animation on scroll */
.about-section.show-about .about-btn{
    animation: fadeUpBtn 1s ease forwards;
    opacity:1;
}

@keyframes fadeUpBtn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

    .about-content{
        gap:40px;
    }

    .about-text h3{
        font-size:22px;
    }
}

@media(max-width:768px){

    .about-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-text{
        transform:translateY(40px);
    }

    .about-image{
        transform:translateY(40px);
    }

    .about-section.show-about .about-text,
    .about-section.show-about .about-image{
        transform:translateY(0);
    }
}

@media(max-width:568px){

    .about-heading h2{
        font-size:28px;
    }

    .about-text p{
        font-size:14px;
    }
}

/* ================= SCROLL TO TOP BUTTON ================= */

#scrollTopBtn{
    position:fixed;
    bottom:40px;
    right:40px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background: linear-gradient(135deg,#0f3d91,#00a9c9);
    color:#fff;
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
    transition:all 0.4s ease;
    z-index:999;
}

/* Show Button */
#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Hover Effect */
#scrollTopBtn:hover{
    background: linear-gradient(135deg,#00a9c9,#0f3d91);
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.35);
}

/* Click Effect */
#scrollTopBtn:active{
    transform:scale(0.9);
}

/* Mobile Adjust */
@media(max-width:768px){
    #scrollTopBtn{
        bottom:25px;
        right:20px;
        width:40px;
        height:40px;
        font-size:14px;
    }
} 

/* ================= SERVICES SECTION ================= */

.services-section{
    padding:100px 0;
    background:linear-gradient(135deg,#ffffff,#f3f9ff);
}

.services-heading{
    text-align:center;
    margin-bottom:60px;
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.services-heading h2{
    font-size:36px;
    color:#0f3d91;
    font-weight:700;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* Service Card */
.service-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    opacity:0;
    transform:translateY(40px);
    position:relative;
    overflow:hidden;
}

/* Hover effect */
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* Top border animation */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,#0f3d91,#00a9c9);
}

/* Image */
.service-img{
    width:100%;
    height:180px;
    overflow:hidden;
    border-radius:12px;
    margin-bottom:20px;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.service-card:hover .service-img img{
    transform:scale(1.1);
}

/* Text */
.service-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#0f3d91;
}

.service-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
}

/* Scroll Animation Active */
.services-section.show-services .services-heading{
    opacity:1;
    transform:translateY(0);
}

.services-section.show-services .service-card{
    opacity:1;
    transform:translateY(0);
}

/* .services-section.show-services .service-card:nth-child(1){transition-delay:0.1s;}
.services-section.show-services .service-card:nth-child(2){transition-delay:0.2s;}
.services-section.show-services .service-card:nth-child(3){transition-delay:0.3s;}
.services-section.show-services .service-card:nth-child(4){transition-delay:0.4s;}
.services-section.show-services .service-card:nth-child(5){transition-delay:0.5s;} */

@media(max-width:1024px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h2{
        font-size:28px;
    }
}
/* ================= SERVICE BUTTON ================= */

.service-btn{
    display:inline-block;
    margin-top:15px;
    font-size:14px;
    font-weight:600;
    color:#0f3d91;
    text-decoration:none;
    position:relative;
    padding-bottom:4px;
    transition:0.4s ease;
}

/* Underline Animation */
.service-btn::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:linear-gradient(135deg,#0f3d91,#00a9c9);
    transition:0.4s ease;
}

/* Hover Effects */
.service-btn:hover{
    color:#00a9c9;
}

.service-btn:hover::after{
    width:100%;
}

/* Slight lift on hover */
.service-card:hover .service-btn{
    transform:translateY(-2px);
}

/* ================= WHY SECTION ================= */

.why-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f3f9ff,#ffffff);
    overflow:hidden;
    
}

.why-heading{
    text-align:center;
    margin-bottom:60px;
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
   
}

.why-heading h2{
    font-size:36px;
    color:#0f3d91;
    font-weight:700;
}

.why-heading p{
    margin-top:15px;
    color:#555;
    font-size:15px;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Image */
.why-image{
    opacity:0;
    transform:translateX(-50px);
    transition:1s ease;
}

.why-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.5s ease;
}

.why-image img:hover{
    transform:scale(1.05);
}

/* Content */
.why-content{
    opacity:0;
    transform:translateX(50px);
    transition:1s ease;
}

/* Each Box */
.why-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
    padding:15px;
    border-radius:10px;
    transition:0.4s ease;
}

.why-box img{
    width:45px;
    height:45px;
}

.why-box h4{
    font-size:18px;
    color:#0f3d91;
    margin-bottom:6px;
}

.why-box p{
    font-size:14px;
    color:#555;
}

/* Hover effect */
.why-box:hover{
    background:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transform:translateX(8px);
}

/* Scroll Active */
.why-section.show-why .why-heading{
    opacity:1;
    transform:translateY(0);
    margin-top: -60px; /* k update */
}

.why-section.show-why .why-image{
    opacity:1;
    transform:translateX(0);
}

.why-section.show-why .why-content{
    opacity:1;
    transform:translateX(0);
}
@media(max-width:1024px){
    .why-grid{
        gap:40px;
    }
}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .why-box{
        flex-direction:column;
        align-items:center;
    }

    .why-box:hover{
        transform:none;
    }

    .why-image,
    .why-content{
        transform:translateY(40px);
    }

    .why-section.show-why .why-image,
    .why-section.show-why .why-content{
        transform:translateY(0);
    }
}

@media(max-width:568px){
    .why-heading h2{
        font-size:28px;
    }
}
/* ================= FAQ SECTION ================= */

.faq-section{
    padding:100px 0;
    background:linear-gradient(135deg,#ffffff,#f3f9ff);
}

.faq-heading{
    text-align:center;
    margin-bottom:60px;
}

.faq-heading h2{
    font-size:36px;
    color:#0f3d91;
    font-weight:700;
}

/* FAQ Container */
.faq-container{
    max-width:800px;
    margin:auto;
}

/* FAQ Item */
.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s ease;
}

.faq-item:hover{
    transform:translateY(-3px);
}

/* Question */
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 25px;
    cursor:pointer;
}

.faq-question h4{
    font-size:16px;
    color:#0f3d91;
}

.faq-icon{
    font-size:20px;
    font-weight:bold;
    color:#00a9c9;
    transition:0.3s ease;
}

/* Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#f8fbff;
}

.faq-answer p{
    padding:15px 25px 20px;
    font-size:14px;
    color:#555;
    line-height:1.7;
}

/* Active State */
.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
    color:#0f3d91;
}
@media(max-width:768px){

    .faq-heading h2{
        font-size:28px;
    }

    .faq-question h4{
        font-size:14px;
    }

    .faq-answer p{
        font-size:13px;
    }
}
/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f3f9ff,#ffffff);
}

.contact-heading{
    text-align:center;
    margin-bottom:60px;
}

.contact-heading h2{
    font-size:36px;
    color:#0f3d91;
    font-weight:700;
}

.contact-heading p{
    margin-top:15px;
    color:#555;
    font-size:15px;
}

/* Layout */
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* ================= FORM ================= */

.contact-form{
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.contact-form:hover{
    transform:translateY(-5px);
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:12px 15px;
    border-radius:8px;
    border:1px solid #dce6f5;
    font-size:14px;
    outline:none;
    transition:0.3s ease;
}

/* Focus Effect */
.input-group input:focus,
.input-group textarea:focus{
    border-color:#00a9c9;
    box-shadow:0 0 8px rgba(0,169,201,0.2);
}

/* Button */
.contact-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#0f3d91,#00a9c9);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.contact-btn:hover{
    background:linear-gradient(135deg,#00a9c9,#0f3d91);
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

.contact-btn:active{
    transform:scale(0.97);
}

/* ================= IMAGE ================= */

.contact-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.5s ease;
}

.contact-image img:hover{
    transform:scale(1.05);
}
@media(max-width:1024px){
    .contact-wrapper{
        gap:40px;
    }
}

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-form{
        padding:30px;
    }

    .contact-heading h2{
        font-size:28px;
    }
}

@media(max-width:568px){

    .contact-form{
        padding:25px;
    }

    .contact-btn{
        font-size:14px;
    }
}





/* ================= FOOTER BASE ================= */

.footer-pro {
    background: linear-gradient(135deg, #0f3d91, #00a9c9);
    color: #fff;
    padding: 70px 0 0 0;
    position: relative;
    overflow: hidden;

    /* Entrance animation */
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

/* When visible */
.footer-pro.show-footer {
    opacity: 1;
    transform: translateY(0);
}


/* ================= GRID ================= */

.footer-container-pro {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}


/* ================= BRAND ================= */

.footer-brand-pro {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.footer-pro.show-footer .footer-brand-pro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.footer-brand-pro img {
    width: 300px;
    margin-bottom: 20px;
    transition: 0.4s;
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.footer-brand-pro img:hover {
    transform: scale(1.08);
}

.footer-brand-pro p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}


/* ================= COLUMNS ================= */

.footer-col-pro {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.footer-pro.show-footer .footer-col-pro:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.footer-pro.show-footer .footer-col-pro:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.footer-pro.show-footer .footer-col-pro:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}


/* ================= HEADINGS ================= */

.footer-col-pro h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Animated underline */
.footer-col-pro h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.6s ease;
}

.footer-pro.show-footer .footer-col-pro h3::after {
    width: 35px;
}


/* ================= LINKS ================= */

.footer-col-pro ul {
    list-style: none;
}

.footer-col-pro ul li {
    margin-bottom: 12px;
}

.footer-col-pro ul li a {
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col-pro ul li a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #00c3ff;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.footer-col-pro ul li a:hover::before {
    width: 6px;
}

.footer-col-pro ul li a:hover {
    color: #e0f9ff;
    padding-left: 10px;
}


/* ================= CONTACT ================= */

.footer-contact-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-pro a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.footer-contact-pro a:hover {
    color: #e0f9ff;
}


/* ================= FOLLOW ================= */

.follow-heading {
    font-size: 15px;
    margin: 20px 0 12px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.follow-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.6s ease;
}

.footer-pro.show-footer .follow-heading::after {
    width: 25px;
}


/* ================= SOCIAL ================= */

.footer-social-pro {
    display: flex;
    gap: 15px;
}

.footer-social-pro a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.footer-social-pro a:hover {
    background: #fff;
    color: #0f3d91;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}


/* ================= BOTTOM ================= */

.footer-bottom-pro {
    text-align: center;
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.15);
    font-size: 14px;

    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.footer-pro.show-footer .footer-bottom-pro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}


/* ================= RESPONSIVE ================= */

@media screen and (max-width:1240px) {
    .footer-container-pro {
        gap: 35px;
    }
}

@media screen and (max-width:1024px) {
    .footer-container-pro {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:767px) {
    .footer-container-pro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-pro h3::after,
    .follow-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-pro a {
        justify-content: center;
    }

    .footer-social-pro {
        justify-content: center;
    }
}

@media screen and (max-width:568px) {
    .footer-brand-pro img {
        width: 230px;
    }

    .footer-brand-pro p {
        font-size: 13px;
    }
}