

/*==============================
    Google Font
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#2563eb;
    --secondary:#06b6d4;
    --bg:#051f4e;
    --card:rgba(255,255,255,.06);
    --border:rgba(255,255,255,.12);
    --text:#ffffff;
    --muted:#b7c0d4;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Outfit',sans-serif;
}

body{

    background:var(--bg);
    color:#f6f3f3;
    overflow-x:hidden;
    

}

/*==============================
    Contact Section
==============================*/

.contact-section{

    position:relative;
    padding:120px 0;
    overflow:hidden;

}

.contact-section::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#3e598d22;
    filter:blur(130px);
    top:-120px;
    left:-120px;

}

.contact-section::after{

    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:#06b6d422;
    filter:blur(120px);
    right:-100px;
    bottom:-100px;

}

/*==============================
        Heading
==============================*/

.contact-tag{

    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.05);
    color:#7dd3fc;
    letter-spacing:3px;
    font-size:.8rem;

}

.contact-section h2{

    color:#f9f7f7;
    margin-top:20px;

}

.contact-section p{

    color:var(--muted);

}

/*==============================
        Timeline
==============================*/

.timeline{

    position:relative;
    width:100%;
    margin-top:80px;

}

.timeline::before{

    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:3px;
    height:100%;
    background:linear-gradient(
        to bottom,
        transparent,
        #2563eb,
        #06b6d4,
        transparent
    );

}

/*==============================
      Timeline Item
==============================*/

.timeline-item{

    width:50%;
    padding:40px;
    position:relative;

}

.timeline-item.left{

    left:0;
    text-align:right;

}

.timeline-item.right{

    left:50%;

}

/*==============================
        Timeline Icon
==============================*/

.timeline-icon{

    position:absolute;
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#25eba6,#06b6d4);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    top:45px;
    z-index:20;
    box-shadow:0 0 35px rgba(37,99,235,.5);

}

.left .timeline-icon{

    right:-35px;

}

.right .timeline-icon{

    left:-35px;

}

/*==============================
        Cards
==============================*/

.timeline-content{

    background:var(--card);
    border:1px solid var(--border);
    backdrop-filter:blur(18px);
    border-radius:25px;
    padding:35px;
    transition:.4s;
    position:relative;

}

.timeline-content:hover{

    transform:translateY(-10px);
    border-color:#2563eb;
    box-shadow:0 25px 50px rgba(37,99,235,.25);

}

.small-title{

    color:#7dd3fc;
    font-size:.75rem;
    letter-spacing:2px;
    display:block;
    margin-bottom:12px;

}

.timeline-content h4{

    font-size:28px;
    margin-bottom:15px;
    color: #f6f3f3;

}

.timeline-content p{

    color:var(--muted);
    line-height:1.8;

}

/*==============================
        Contact Form
==============================*/

.contact-form-card{
    padding:45px;
}

.contact-form-card h3{
    color:#fff;
    font-weight:700;
    margin-bottom:30px;
}

.form-control{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:16px;
    padding:16px 20px;
    font-size:15px;
    transition:.35s ease;
    box-shadow:none;
}

.form-control::placeholder{
    color:#9ca3af;
}

.form-control:focus{
    background:rgba(255,255,255,.08);
    border-color:#2563eb;
    color:#fff;
    box-shadow:0 0 20px rgba(37,99,235,.25);
}

textarea.form-control{
    resize:none;
    min-height:170px;
}

/*==============================
        Button
==============================*/

.send-btn{

    background:linear-gradient(135deg,#2563eb,#06b6d4);
    border:none;
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    position:relative;
    overflow:hidden;

}

.send-btn::before{

    content:"";
    position:absolute;
    width:0;
    height:100%;
    left:0;
    top:0;
    background:rgba(255,255,255,.18);
    transition:.4s;

}

.send-btn:hover::before{
    width:100%;
}

.send-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(37,99,235,.35);
}

/*==============================
        Timeline Animation
==============================*/

.timeline-item{
    opacity:0;
    transform:translateY(70px);
    transition:.8s ease;
}

.timeline-item.show{
    opacity:1;
    transform:translateY(0);
}

/*==============================
        Floating Glow
==============================*/

.timeline-icon::after{

    content:"";
    position:absolute;
    width:110px;
    height:110px;
    border-radius:50%;
    background:#2563eb;
    filter:blur(35px);
    opacity:.35;
    z-index:-1;

}

/*==============================
        Map
==============================*/

.map-section{
    margin-top:100px;
}

.map-section iframe{
    display:block;
    width:100%;
    border:none;
    filter:grayscale(100%) invert(92%) contrast(95%);
}

/*==============================
        Scrollbar
==============================*/
/* 
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#091221;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
} */

/*==============================
        Responsive
==============================*/

@media(max-width:991px){

.timeline::before{
    left:35px;
}

.timeline-item{
    width:100%;
    left:0!important;
    padding-left:95px;
    padding-right:20px;
    text-align:left!important;
}

.timeline-icon{
    left:0!important;
    right:auto!important;
}

.contact-form-card{
    padding:30px;
}

}

@media(max-width:576px){

.contact-section{
    padding:80px 0;
}

.contact-section h2{
    font-size:2rem;
}

.timeline-content{
    padding:25px;
}

.timeline-content h4{
    font-size:22px;
}

.contact-form-card{
    padding:20px;
}

.send-btn{
    width:100%;
}

.form-control{
    padding:14px 16px;
}

}

.send-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple .6s linear;
    pointer-events: none;
}

@keyframes ripple {
    from {
        width: 0;
        height: 0;
        opacity: .8;
    }
    to {
        width: 420px;
        height: 420px;
        opacity: 0;
    }
}

/*=========================================
        VISION FOOTER
=========================================*/

.vision-footer{
    position:relative;
    background:#050816;
    padding:120px 0 40px;
    overflow:hidden;
}

.vision-footer::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#2563eb20;
    filter:blur(140px);
    top:-220px;
    left:-150px;
    border-radius:50%;
}

.vision-footer::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#06b6d420;
    filter:blur(140px);
    right:-180px;
    bottom:-180px;
    border-radius:50%;
}

/*=========================================
            CTA CARD
=========================================*/

.footer-cta{

    position:relative;
    z-index:2;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    border-radius:40px;

    padding:60px;

    margin-bottom:90px;

    overflow:hidden;

}

.footer-cta::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:#3b82f625;

    top:-120px;

    right:-120px;

}

.footer-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    color:#7dd3fc;

    font-size:13px;

    letter-spacing:3px;

}

.footer-cta h2{

    margin:22px 0;

    color:#fff;

    font-size:48px;

    font-weight:700;

}

.footer-cta p{

    color:#aab3c7;

    font-size:17px;

    line-height:1.8;

}

/*=========================================
            BUTTON
=========================================*/

.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:60px;

    background:linear-gradient(135deg,#3b82f6,#06b6d4);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.footer-btn:hover{

    color:#fff;

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(59,130,246,.35);

}

/*=========================================
            LOGO
=========================================*/

.logo{

    font-size:38px;

    font-weight:800;

    color:#fff;

}

.logo span{

    color:#3b82f6;

}

.footer-text{

    margin:25px 0;

    color:#aab3c7;

    line-height:1.9;

}

/*=========================================
        SOCIAL
=========================================*/

.social-links{

    display:flex;

    gap:16px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.social-links a:hover{

    background:#3b82f6;

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(59,130,246,.35);

}

/*=========================================
            LINKS
=========================================*/

.vision-footer h5{

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

}

.vision-footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.vision-footer li{

    margin-bottom:16px;

}

.vision-footer a{

    color:#aab3c7;

    text-decoration:none;

    transition:.3s;

}

.vision-footer a:hover{

    color:#fff;

    padding-left:8px;

}

/*=========================================
        CONTACT LIST
=========================================*/

.contact-list li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#aab3c7;

}

.contact-list i{

    width:42px;

    height:42px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    color:#3b82f6;

}

/*=========================================
            DIVIDER
=========================================*/

.vision-footer hr{

    margin:70px 0 30px;

    border-color:rgba(255,255,255,.08);

}

/*=========================================
        FOOTER BOTTOM
=========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#8b97b3;

    margin:0;

}

.footer-bottom div{

    display:flex;

    gap:30px;

}

.footer-bottom a{

    color:#8b97b3;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#fff;

}

/*=========================================
        FLOAT ANIMATION
=========================================*/

.footer-cta{

    animation:floatFooter 8s ease-in-out infinite;

}

@keyframes floatFooter{

    50%{

        transform:translateY(-8px);

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.footer-cta{

    padding:40px;

}

.footer-cta h2{

    font-size:34px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}

@media(max-width:768px){

.vision-footer{

    padding:80px 0 30px;

}

.footer-cta{

    border-radius:28px;

    padding:30px;

}

.footer-cta h2{

    font-size:28px;

}

.footer-btn{

    width:100%;

}

.logo{

    font-size:30px;

}

.social-links{

    justify-content:center;

}

.footer-bottom div{

    flex-direction:column;

    gap:12px;

}

}