.v4-header{
position:sticky;
top:0;
z-index:999;
background:#0f172a;
border-bottom:1px solid #1e293b;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:75px;
}

.logo-text{
font-size:22px;
font-weight:700;
color:#fff;
text-decoration:none;
}

.logo-text span{
color:#38bdf8;
}

.nav{
display:flex;
gap:35px;
}

.nav a{
text-decoration:none;
color:#cbd5f5;
font-weight:500;
transition:.3s;
}

.nav a:hover{
color:#fff;
}

.nav-actions{
display:flex;
align-items:center;
gap:12px;
}

.call-btn{
background:#22c55e;
color:#fff;
padding:9px 14px;
border-radius:8px;
text-decoration:none;
}

.apply-btn{
background:#38bdf8;
color:#0f172a;
padding:10px 18px;
border-radius:8px;
font-weight:600;
text-decoration:none;
}

.menu-toggle{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}

@media(max-width:768px){

.nav{
position:fixed;
top:75px;
left:0;
width:100%;
background:#0f172a;
flex-direction:column;
align-items:center;
gap:20px;
padding:30px 0;
display:none;
}

.nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.call-btn,
.apply-btn{
display:none;
}

}

.mobile-call{
position:fixed;
bottom:20px;
right:20px;
background:#22c55e;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,.4);
}

@media(min-width:769px){
.mobile-call{display:none;}
}

.mobile-call {
    display: none !important;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
}

@media(max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 15px;
        z-index: 1000;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
    }

    .sticky-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: .3s;
    }

    .sticky-btn.call {
        background: #22c55e;
        color: #fff;
    }

    .sticky-btn.whatsapp {
        background: #25d366;
        color: #fff;
    }

    .sticky-btn:active {
        transform: scale(0.95);
    }

    /* Padding for page content so it's not hidden by the sticky bar */
    body {
        padding-bottom: 70px;
    }
}

/* hero */
.v4-hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1e293b, #020617);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.v4-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.png') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* HERO TEXT */
.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content span {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #cbd5f1;
    margin-top: 24px;
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
}

/* BUTTONS */

.hero-buttons{
margin-top:28px;
display:flex;
gap:16px;
flex-wrap:wrap;
}

.apply-btn-yellow{
background:#38bdf8;
color:#020617;
padding:13px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.apply-btn-yellow:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.brochure-btn{
border:1px solid #38bdf8;
padding:13px 24px;
border-radius:8px;
text-decoration:none;
color:#38bdf8;
font-weight:600;
transition:.3s;
}

.brochure-btn:hover{
background:#38bdf8;
color:#020617;
}

/* STATS */

.hero-stats{
display:flex;
gap:50px;
margin-top:40px;
}

.hero-stats h3{
font-size:26px;
margin-bottom:3px;
}

.hero-stats p{
color:#94a3b8;
font-size:14px;
}

/* FORM CARD */

.hero-form{
background:#0f172a;
padding:35px;
border-radius:18px;
border:1px solid #1e293b;
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.hero-form h3{
margin-bottom:20px;
font-size:22px;
}

/* LABEL */

.hero-form label{
display:block;
margin-top:14px;
font-size:14px;
color:#cbd5f5;
}

/* INPUT */

.hero-form input,
.hero-form select{
width:100%;
padding:12px;
margin-top:6px;
border-radius:7px;
border:1px solid #334155;
background:#020617;
color:#fff;
font-size:14px;
outline:none;
transition:.25s;
}

.hero-form input:focus,
.hero-form select:focus{
border-color:#38bdf8;
box-shadow:0 0 0 1px #38bdf8;
}

/* BUTTON */

.submit-btn{
margin-top:16px;
width:100%;
background:#38bdf8;
color:#020617;
border:none;
padding:14px;
border-radius:8px;
font-weight:600;
font-size:15px;
cursor:pointer;
transition:.3s;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* NOTE */

.form-note{
margin-top:10px;
font-size:13px;
color:#94a3b8;
}

/* ERROR */

.error-msg{
color:#f87171;
font-size:12px;
display:block;
margin-top:3px;
}

/* Hero Image Styling */
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(15, 23, 42, 0.9);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-floating-card .icon {
    width: 45px;
    height: 45px;
    background: #38bdf8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.hero-floating-card .text h4 {
    font-size: 18px;
    margin: 0;
}

.hero-floating-card .text p {
    font-size: 13px;
    margin: 0;
    color: #94a3b8;
}

/* MOBILE */
@media(max-width:900px){
    .v4-hero{
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-grid{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content h1{
        font-size: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        display: none;
    }
}

@media(max-width:500px){

.hero-buttons{
flex-direction:column;
}

.hero-stats{
flex-direction:column;
gap:15px;
}

}
/* why choose */

.v2{
padding:10px 0;
background:linear-gradient(135deg,#1e293b,#0f172a);
color:white;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title p{
color:#cbd5f5;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-card{
padding:35px;
border-radius:16px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.15);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.12);
}

.icon-box{
width:60px;
height:60px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#38bdf8;
color:#0f172a;
font-size:26px;
margin-bottom:18px;
}

.why-card p{
color:#e2e8f0;
}

@media(max-width:1024px){
.why-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
.why-grid{grid-template-columns:1fr;}
}

/* why choose */

.v2{
padding:50px 0;
background:linear-gradient(135deg,#1e293b,#0f172a);
color:white;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title p{
color:#cbd5f5;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-card{
padding:35px;
border-radius:16px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.15);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.12);
}

.icon-box{
width:60px;
height:60px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#38bdf8;
color:#0f172a;
font-size:26px;
margin-bottom:18px;
}

.why-card p{
color:#e2e8f0;
}

@media(max-width:1024px){
.why-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
.why-grid{grid-template-columns:1fr;}
}

/* program */

.programs-section.v1{
padding:90px 0;
background:#f8f9fb;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

.section-title p{
color:#666;
}

.footer {
    background: #020617;
    color: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #38bdf8;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-top: 20px;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.footer-col p i {
    color: #38bdf8;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #38bdf8;
    color: #020617;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-compliance {
    max-width: 800px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-compliance p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.footer-compliance p strong {
    color: #94a3b8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    transition: .3s;
}

.footer-links a:hover {
    color: #38bdf8;
}

@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* tabs */

.program-tabs{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
flex-wrap:wrap;
}

.tab-btn{
padding:10px 22px;
border:none;
border-radius:30px;
background:#eee;
cursor:pointer;
font-weight:500;
transition:.3s;
}

.tab-btn.active{
background:#38bdf8;
color:white;
}

/* grid */

.program-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* card */

.program-card{
background:white;
padding:25px;
border-radius:12px;
border:1px solid #e6e6e6;
transition:.35s;
}

.program-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

.program-icon{
width:50px;
height:50px;
background:#38bdf8;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
margin-bottom:12px;
color:white;
font-size:22px;
}

/* tabs */

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

/* responsive */

@media(max-width:1024px){
.program-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.program-grid{
grid-template-columns:1fr;
}
}

/* cam */

/* campus */

.campus-section{
padding:100px 0;
background:linear-gradient(180deg,#f8fafc,#ffffff);
}

/* title */

.section-title{
text-align:center;
max-width:700px;
margin:auto;
}

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

.section-title p{
color:#666;
}

/* grid */

.campus-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* card */

.campus-card{
position:relative;
border-radius:18px;
overflow:hidden;
cursor:pointer;
transition:.4s;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* image */

.campus-card img{
width:100%;
height:320px;
object-fit:cover;
transition:.7s;
}

/* glass content */

.campus-content{
position:absolute;
bottom:0;
left:0;
width:100%;

padding:25px;

backdrop-filter:blur(10px);
background:rgba(255,255,255,0.1);

color:#fff;

transition:.4s;
}

/* text */

.campus-content h3{
font-size:20px;
margin-bottom:5px;
}

.campus-content p{
font-size:14px;
opacity:.9;
}

/* hover */

.campus-card:hover img{
transform:scale(1.15);
}

.campus-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* responsive */

@media(max-width:1024px){

.campus-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.campus-grid{
grid-template-columns:1fr;
}

.campus-card img{
height:260px;
}

.section-title h2{
font-size:28px;
}

}


/* placement */

/* section */

.placement-section{
padding:30px 0;
background:linear-gradient(135deg,#1e293b,#0f172a);
color:white;
text-align:center;
position:relative;
overflow:hidden;
}

/* animated gradient */

.placement-section::before{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#7f8cff,transparent);
top:-200px;
left:-200px;
opacity:.4;
filter:blur(120px);
}

.placement-section::after{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#5b6bff,transparent);
bottom:-200px;
right:-200px;
opacity:.4;
filter:blur(120px);
}

/* title */

.placement-title h2{
font-size:44px;
font-weight:700;
margin-bottom:10px;
}

.placement-title p{
color:#d0d6ff;
}

/* grid */

.placement-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:70px;
}

/* card */

.placement-card{
background:rgba(255,255,255,0.08);
border-radius:20px;
padding:45px 30px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.15);
transition:all .35s;
}

.placement-card:hover{
transform:translateY(-12px) scale(1.02);
background:rgba(255,255,255,0.12);
box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

/* icon */

.placement-icon{
width:65px;
height:65px;
margin:auto;
margin-bottom:18px;
border-radius:16px;

background:#38bdf8;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;
color:white;

box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* numbers */

.placement-card h3{
font-size:42px;
font-weight:700;
margin-bottom:5px;
letter-spacing:1px;
}

.placement-card span{
color:#dbe0ff;
font-size:15px;
}

/* recruiters */

.recruiters{
margin-top:80px;
}

.recruiters p{
color:#dbe0ff;
margin-bottom:25px;
}

/* logos */

.recruiter-logos{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:35px;
}

.recruiter-logos img{
height:28px;
opacity:.8;
transition:.3s;
filter:brightness(0) invert(1);
}

.recruiter-logos img:hover{
opacity:1;
transform:scale(1.1);
}

.company-logos{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:center;
gap:40px;
margin-top:30px;
}

.company-logos img{
height:40px;
object-fit:contain;
opacity:0.8;
transition:0.3s;
filter:grayscale(100%);
}

.company-logos img:hover{
opacity:1;
filter:grayscale(0%);
transform:scale(1.08);
}
/* responsive */

@media(max-width:992px){

.placement-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.placement-grid{
grid-template-columns:1fr;
}

.placement-title h2{
font-size:32px;
}

}

/* testomonial */

.testimonial-section{
padding:50px 0;
background:#f8f9fb;
text-align:center;
}

/* title */

.section-title{
max-width:700px;
margin:auto;
}

.section-title h2{
font-size:38px;
margin-bottom:10px;
}

.section-title p{
color:#666;
}

/* grid */

.testimonial-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* card */

.testimonial-card{
background:linear-gradient(135deg,#4a5cff,#6a7cff);;
padding:40px 30px;
border-radius:18px;

box-shadow:0 20px 50px rgba(0,0,0,0.08);

transition:.35s;
position:relative;

text-align:left;
}

/* hover */

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* quote */

.quote{
font-size:40px;
color:#38bdf8;
margin-bottom:10px;
}

/* text */

.testimonial-card p{
font-size:20px;
color:white;
line-height:1.7;
margin-bottom:25px;
}

/* student */

.student-info h4{
font-size:16px;
margin-bottom:3px;
}

.student-info span{
font-size:13px;
color:white;
}

/* stars */

.stars{
margin-top:15px;
color:#ffb703;
font-size:16px;
}

/* responsive */

@media(max-width:992px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.testimonial-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:28px;
}

}

/* faq */
.faq-section{
padding:20px 0;
background:#f7f9fc;
}

.faq-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* IMAGE */

.faq-image img{
width:100%;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* TITLE */

.section-title h2{
font-size:36px;
margin-bottom:10px;
}

.section-title p{
color:#666;
margin-bottom:30px;
}

/* FAQ */

.faq-item{
background:white;
border-radius:12px;
margin-bottom:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
overflow:hidden;
}

/* QUESTION */

.faq-question{
width:100%;
background:none;
border:none;
padding:18px 20px;
font-size:16px;
font-weight:500;
text-align:left;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

/* ICON */

.icon{
font-size:22px;
color:#4a5cff;
}

/* ANSWER */

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 20px;
}

.faq-answer p{
padding-bottom:18px;
color:#555;
line-height:1.6;
}

/* ACTIVE */

.faq-item.active .faq-answer{
max-height:200px;
}

.faq-item.active .icon{
transform:rotate(45deg);
}

/* RESPONSIVE */

@media(max-width:900px){

.faq-wrapper{
grid-template-columns:1fr;
}

.faq-image{
order:-1;
}

.section-title h2{
font-size:28px;
}

}

/* cta */

/* section */

.admission-cta{
padding:40px 0;
background:#f5f7fb;
}

/* box */

.cta-box{

max-width:750px;
margin:auto;

background:linear-gradient(135deg,#4a5cff,#6a7cff);

padding:55px 40px;

border-radius:18px;

text-align:center;

color:white;

box-shadow:0 25px 60px rgba(0,0,0,0.15);

position:relative;
overflow:hidden;
}

/* glow effect */

.cta-box::before{

content:"";

position:absolute;

width:300px;
height:300px;

background:rgba(255,255,255,0.2);

filter:blur(120px);

top:-100px;
left:-100px;

}

/* title */

.cta-box h2{

font-size:34px;
margin-bottom:12px;

}

/* text */

.cta-box p{

color:#e6e9ff;
max-width:520px;
margin:auto;

margin-bottom:30px;

line-height:1.6;

}

/* buttons */

.cta-buttons{

display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;

}

/* call */

.btn-call{

background:white;
color:#4a5cff;

padding:12px 26px;

border-radius:8px;

font-weight:600;

display:flex;
align-items:center;
gap:8px;

text-decoration:none;

transition:.3s;

}

.btn-call:hover{

transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);

}

/* whatsapp */

.btn-whatsapp{

background:#25D366;
color:white;

padding:12px 26px;

border-radius:8px;

font-weight:600;

display:flex;
align-items:center;
gap:8px;

text-decoration:none;

transition:.3s;

}

.btn-whatsapp:hover{

transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);

}

/* responsive */

@media(max-width:600px){

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:26px;
}

}




/* footer */
.footer{
background:#0f1a2c;
color:#cbd3e4;
padding-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr;
gap:40px;
}

.footer-logo img{
height:55px;
margin-bottom:15px;
}

.footer-desc{
font-size:14px;
line-height:1.6;
margin-bottom:20px;
}

.footer-col h4{
margin-bottom:15px;
color:white;
font-size:16px;
}

/* links */

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#cbd3e4;
text-decoration:none;
font-size:14px;
}

.footer-col a:hover{
color:white;
}

/* social */

.social-icons{
display:flex;
gap:10px;
}

.social-icons a{
width:36px;
height:36px;
background:#1e2a44;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:16px;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
background:#4a57d4;
}

/* contact */

.footer-col p{
font-size:14px;
margin-bottom:10px;
display:flex;
gap:8px;
align-items:flex-start;
}

/* bottom */

.footer-bottom{
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding:18px 0;
display:flex;
justify-content:space-between;
font-size:13px;
flex-wrap:wrap;
}

.disclaimer{
opacity:.7;
}

/* responsive */

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:8px;
text-align:center;
}

}
