/* ==================================================
   ALTHEXUS WEBSITE
   CSS PART 1
==================================================*/

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071827;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#081827;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#2b8cff;
}

/* Links */

a{
    text-decoration:none;
    color:inherit;
}

/* Section */

section{
    padding:90px 8%;
}

.section-text{
    max-width:750px;
    margin:20px auto 60px;
    text-align:center;
    color:#cfd8e3;
}

/* ==================================================
   NAVBAR
==================================================*/

nav{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:rgba(7,24,39,.85);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

}

/* Logo */

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:65px;
    height:65px;

    object-fit:cover;
    border-radius:50%;

    padding:5px;

    background:rgba(255,255,255,.08);

    box-shadow:
    0 0 20px rgba(0,191,255,.35),
    0 0 40px rgba(0,191,255,.12);

}

.logo h2{

    font-size:30px;
    letter-spacing:1px;

}

.logo span{

    display:block;
    color:#59c9ff;
    font-size:13px;

}

/* Menu */

nav ul{

    display:flex;
    list-style:none;
    gap:35px;

}

nav ul li a{

    color:white;
    font-weight:500;
    transition:.35s;

}

nav ul li a:hover{

    color:#4fc3ff;

}

/* ==================================================
   BUTTONS
==================================================*/

.btn{

    display:inline-block;

    padding:14px 34px;

    background:#0d6efd;

    border-radius:50px;

    color:white;

    font-weight:600;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    background:#0a57d3;

    box-shadow:0 12px 25px rgba(13,110,253,.35);

}

.btn2{

    display:inline-block;

    padding:14px 34px;

    border:2px solid #0d6efd;

    border-radius:50px;

    color:white;

    transition:.35s;

    font-weight:600;

}

.btn2:hover{

    background:#0d6efd;

}

/* ==================================================
   HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:50px;

    padding-top:160px;

    background:
    radial-gradient(circle at top right,#0d6efd22,transparent 40%),
    linear-gradient(135deg,#071827,#0b3d91,#071827);

}

/* Left */

.hero-left{

    flex:1;

}

.hero-left h5{

    color:#59c9ff;

    letter-spacing:4px;

    font-weight:600;

}

.hero-left h1{

    font-size:76px;

    margin:20px 0 10px;

    line-height:1.1;

}

.hero-left h3{

    font-size:34px;

    color:#dceeff;

    margin-bottom:25px;

}

.hero-left p{

    color:#d0d8e2;

    font-size:18px;

    max-width:650px;

}

/* Buttons */

.buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

/* Right */

.hero-right{

    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Logo Circle */

.hero-circle{

    width:430px;
    height:430px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle,#0d6efd55,#0a1d33);

    box-shadow:

    0 0 40px rgba(0,191,255,.30),

    inset 0 0 60px rgba(255,255,255,.05);

    animation:floatLogo 4s ease-in-out infinite;

}

.hero-circle img{

    width:250px;

    border-radius:50%;

}

/* Floating Animation */

@keyframes floatLogo{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==================================================
   STATS
==================================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    background:#081f35;

}

.stats div{

    background:rgba(255,255,255,.05);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

}

.stats div:hover{

    transform:translateY(-8px);

    background:#0b3d91;

}

.stats h2{

    font-size:42px;

    color:#4fc3ff;

}

.stats p{

    margin-top:10px;

    color:#d8d8d8;

}
/* ==================================================
   ABOUT SECTION
==================================================*/

.about{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;

}

.about-image{

    flex:1;
    min-width:320px;

}

.about-image img{

    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-text{

    flex:1;
    min-width:320px;

}

.about-text h5{

    color:#4fc3ff;
    letter-spacing:3px;
    margin-bottom:10px;

}

.about-text h2{

    font-size:45px;
    margin-bottom:25px;

}

.about-text p{

    color:#d4dbe4;
    line-height:1.9;
    margin-bottom:20px;

}

/* About Cards */

.about-boxes{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:35px;

}

.about-card{

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;
    padding:25px;

    transition:.35s;

}

.about-card:hover{

    background:#0b3d91;
    transform:translateY(-8px);

}

.about-card i{

    font-size:40px;
    color:#4fc3ff;
    margin-bottom:18px;

}

.about-card h4{

    margin-bottom:12px;

}

.about-card p{

    margin:0;
    color:#ddd;

}

/* ==================================================
   MISSION & VISION
==================================================*/

.mission{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.mission-card{

    background:linear-gradient(145deg,#0b3d91,#081827);

    border-radius:25px;

    padding:45px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-card i{

    font-size:55px;

    color:#4fc3ff;

    margin-bottom:25px;

}

.mission-card h2{

    margin-bottom:20px;

}

.mission-card p{

    color:#d4dbe4;

    line-height:1.9;

}

/* ==================================================
   WHY CHOOSE US
==================================================*/

.why{

    text-align:center;

}

.why h5{

    color:#4fc3ff;

    letter-spacing:3px;

}

.why h2{

    font-size:45px;

    margin:15px 0 20px;

}

/* Why Grid */

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:60px;

}

/* Cards */

.why-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.why-card:hover{

    background:#0d6efd;

    transform:translateY(-10px);

}

.why-card i{

    font-size:48px;

    color:#4fc3ff;

    margin-bottom:20px;

}

.why-card:hover i{

    color:white;

}

.why-card h3{

    margin-bottom:18px;

}

.why-card p{

    color:#ddd;

    line-height:1.8;

}

/* ==================================================
   COMMON SECTION TITLES
==================================================*/

.about h2,
.services h2,
.technology h2,
.process h2,
.contact h2,
.inquiry h2{

    font-size:46px;

}

.about h5,
.services h5,
.technology h5,
.process h5,
.contact h5,
.inquiry h5{

    color:#4fc3ff;

    letter-spacing:3px;

    font-size:15px;

    margin-bottom:10px;

}

/* ==================================================
   RESPONSIVE
==================================================*/

@media(max-width:992px){

.about{

    flex-direction:column;

}

.about-boxes{

    grid-template-columns:1fr;

}

.mission{

    grid-template-columns:1fr;

}

.why-grid{

    grid-template-columns:1fr;

}

}
/* ==================================================
   SERVICES
==================================================*/

.services{
    text-align:center;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px 25px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:#4fc3ff;
    transition:.5s;
}

.card:hover::before{
    left:0;
}

.card:hover{
    transform:translateY(-12px);
    background:linear-gradient(135deg,#0d6efd,#102a43);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.card i{
    font-size:52px;
    color:#4fc3ff;
    margin-bottom:25px;
}

.card h3{
    font-size:24px;
    margin-bottom:18px;
}

.card p{
    color:#d6d6d6;
    line-height:1.7;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:30px;
    background:#0d6efd;
    color:white;
    font-weight:600;
    transition:.35s;
}

.service-btn:hover{
    background:white;
    color:#0d6efd;
}



/* ==================================================
   TECHNOLOGIES
==================================================*/

.technology{
    text-align:center;
    background:#081f35;
}

.tech-grid{
    margin-top:50px;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.tech-grid span{

    padding:14px 28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}

.tech-grid span:hover{

    background:#0d6efd;

    transform:translateY(-6px);

}



/* ==================================================
   PROCESS
==================================================*/

.process{

    text-align:center;

}

.process-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.process-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    background:#0b3d91;

}

.number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#0d6efd;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.process-card h3{

    margin-bottom:18px;

}

.process-card p{

    color:#d5d5d5;

    line-height:1.8;

}



/* ==================================================
   SMALL ANIMATIONS
==================================================*/

.card,
.process-card,
.tech-grid span{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



/* ==================================================
   RESPONSIVE
==================================================*/

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

}

.process-grid{

grid-template-columns:1fr;

}

}
/* ==================================================
   INQUIRY SECTION
==================================================*/

.inquiry{
    text-align:center;
    background:linear-gradient(135deg,#081827,#0b3d91);
}

.inquiry form{
    max-width:750px;
    margin:50px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.inquiry input,
.inquiry select,
.inquiry textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus{

    border:2px solid #4fc3ff;

    background:rgba(255,255,255,.12);

}

.inquiry input::placeholder,
.inquiry textarea::placeholder{

    color:#c8d3dc;

}

.inquiry button{

    border:none;
    cursor:pointer;
    margin-top:10px;

}


/* ==================================================
   CONTACT
==================================================*/

.contact{

    text-align:center;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin:50px 0;

}

.contact-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.contact-card:hover{

    background:#0d6efd;

    transform:translateY(-10px);

}

.contact-card i{

    font-size:50px;

    color:#4fc3ff;

    margin-bottom:20px;

}

.contact-card:hover i{

    color:white;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card p{

    color:#ddd;

    line-height:1.8;

}


/* Social Icons */

.socials{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:40px;

    flex-wrap:wrap;

}

.socials a{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#102a43;

    color:white;

    font-size:28px;

    transition:.35s;

}

.socials a:hover{

    background:#0d6efd;

    transform:translateY(-8px) scale(1.08);

}


/* ==================================================
   CTA
==================================================*/

.cta{

    text-align:center;

    background:linear-gradient(135deg,#0d6efd,#081827);

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:#d7e0e8;

}


/* ==================================================
   FOOTER
==================================================*/

footer{

    background:#040d18;

    padding:70px 8% 25px;

}

.footer-content{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-content h2{

    margin-bottom:15px;

}

.footer-content h3{

    margin-bottom:18px;

    color:#4fc3ff;

}

.footer-content p{

    color:#b8c4cf;

    line-height:1.8;

}

.footer-content a{

    display:inline-block;

    color:#b8c4cf;

    margin-bottom:12px;

    transition:.3s;

}

.footer-content a:hover{

    color:#4fc3ff;

}

footer hr{

    margin:45px 0 20px;

    border:1px solid rgba(255,255,255,.08);

}

.copyright{

    text-align:center;

    color:#8e9aa6;

}


/* ==================================================
   RESPONSIVE
==================================================*/

@media(max-width:992px){

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    nav{

        flex-direction:column;

        gap:15px;

        padding:15px;

    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

    }

    .hero{

        flex-direction:column;

        text-align:center;

        padding-top:170px;

    }

    .hero-left h1{

        font-size:50px;

    }

    .hero-left h3{

        font-size:24px;

    }

    .hero-circle{

        width:280px;
        height:280px;

    }

    .hero-circle img{

        width:170px;

    }

    .buttons{

        justify-content:center;

    }

    .stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:550px){

    .stats{

        grid-template-columns:1fr;

    }

    .btn,
    .btn2{

        width:100%;

        text-align:center;

    }

    .buttons{

        flex-direction:column;

    }

}
/* Active Navigation Link */
nav ul li a.active{
    color:#4fc3ff;
    font-weight:600;
}
/* ===============================
   GOOGLE FORM
==================================*/

.google-form{

    width:100%;
    max-width:900px;
    margin:50px auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.google-form iframe{

    width:100%;
    border:none;
    background:#fff;

}