/*==================================================
OYOMA TECHNOLOGIES SOLUTIONS
Corporate Website
Version 1.0
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
ROOT VARIABLES
==================================================*/

:root{

--primary:#0A4D9B;
--secondary:#FFC107;
--success:#00B894;
--dark:#1E293B;
--light:#F8FAFC;
--white:#FFFFFF;
--gray:#64748B;
--border:#E2E8F0;

--shadow:0 15px 35px rgba(0,0,0,.08);

--radius:14px;

--transition:.35s ease;

}

/*==================================================
RESET
==================================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:#333;

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

padding:0;

margin:0;

}

/*==================================================
GLOBAL
==================================================*/

.section-padding{

padding:100px 0;

}

.container{

max-width:1200px;

}

.section-heading h6{

color:var(--secondary);

font-weight:700;

letter-spacing:2px;

margin-bottom:12px;

}

.section-heading h2{

font-size:42px;

font-weight:700;

color:var(--dark);

margin-bottom:20px;

}

.section-heading p{

max-width:700px;

margin:auto;

color:var(--gray);

}

/*==================================================
BUTTONS
==================================================*/

.btn{

border-radius:50px;

padding:14px 34px;

font-weight:600;

transition:.4s;

}

.btn-primary{

background:var(--primary);

border:none;

}

.btn-primary:hover{

background:#083b76;

transform:translateY(-3px);

}

.btn-success{

background:var(--success);

border:none;

}

.btn-success:hover{

transform:translateY(-3px);

}

.btn-warning{

background:var(--secondary);

border:none;

color:#000;

font-weight:600;

}

.btn-warning:hover{

transform:translateY(-3px);

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

background:var(--dark);

color:#fff;

padding:10px 0;

font-size:14px;

}

.top-bar i{

color:var(--secondary);

margin-right:8px;

}

.top-bar a{

color:#fff;

}

.top-bar a:hover{

color:var(--secondary);

}

/*==================================================
NAVIGATION
==================================================*/

.navbar{

background:#fff;

padding:18px 0;

transition:.4s;

box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.navbar-brand{

font-size:28px;

font-weight:700;

color:var(--primary)!important;

}

.navbar-brand span{

color:var(--secondary);

}

.nav-link{

font-weight:600;

color:var(--dark)!important;

margin-left:18px;

}

.nav-link:hover{

color:var(--primary)!important;

}

.navbar.scrolled{

padding:10px 0;

box-shadow:0 8px 30px rgba(0,0,0,.12);

}

/*==================================================
HERO SECTION
==================================================*/

.hero{

position:relative;

padding:170px 0 130px;

overflow:hidden;

background:linear-gradient(135deg,#0A4D9B,#1565C0,#2196F3);

color:#fff;

}

.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(255,255,255,.06);

border-radius:50%;

top:-300px;

right:-250px;

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.04);

border-radius:50%;

bottom:-220px;

left:-180px;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.hero p{

font-size:19px;

margin-bottom:35px;

opacity:.95;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.hero-image{

position:relative;

z-index:2;

}

.hero-image img{

width:100%;

animation:float 5s ease-in-out infinite;

}

/*==================================================
HERO FEATURES
==================================================*/

.hero-features{

margin-top:50px;

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-feature{

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

padding:20px;

border-radius:12px;

min-width:180px;

}

.hero-feature i{

font-size:28px;

color:var(--secondary);

margin-bottom:12px;

}

.hero-feature h5{

font-size:18px;

margin-bottom:5px;

}

.hero-feature p{

font-size:14px;

margin:0;

}

/*==================================================
SCROLL DOWN
==================================================*/

.scroll-down{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

color:#fff;

font-size:30px;

animation:bounce 2s infinite;

}

/*==================================================
LOADER
==================================================*/

.loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-spinner{

width:65px;

height:65px;

border:6px solid #eee;

border-top:6px solid var(--primary);

border-radius:50%;

animation:spin 1s linear infinite;

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translate(-50%,0);

}

40%{

transform:translate(-50%,-12px);

}

60%{

transform:translate(-50%,-6px);

}

}

/*==================================================
ABOUT SECTION
==================================================*/

.about{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content h6{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:20px;
}

.about-content p{
    color:var(--gray);
    margin-bottom:18px;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    margin-bottom:15px;
    font-weight:500;
}

.about-list i{
    color:var(--success);
    margin-right:10px;
}

/*==================================================
MISSION • VISION • VALUES
==================================================*/

.mission{
    background:#f8fafc;
}

.info-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

    text-align:center;

}

.info-card:hover{

    transform:translateY(-10px);

}

.info-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    background:rgba(10,77,155,.08);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.info-card i{

    font-size:34px;

    color:var(--primary);

}

.info-card h3{

    margin-bottom:18px;

    color:var(--dark);

}

.info-card p{

    color:var(--gray);

}

.info-card ul{

    text-align:left;

    margin-top:20px;

}

.info-card ul li{

    margin-bottom:12px;

    color:var(--gray);

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

background:#fff;

}

.feature-box{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:var(--shadow);

text-align:center;

transition:.35s;

height:100%;

border-top:4px solid transparent;

}

.feature-box:hover{

transform:translateY(-8px);

border-color:var(--secondary);

}

.feature-box i{

font-size:46px;

color:var(--primary);

margin-bottom:20px;

}

.feature-box h4{

font-size:22px;

margin-bottom:15px;

color:var(--dark);

}

.feature-box p{

color:var(--gray);

}

/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{

background:linear-gradient(135deg,#0A4D9B,#1565C0);

padding:90px 0;

color:#fff;

}

.counter-box{

padding:20px;

}

.counter-box h2{

font-size:52px;

font-weight:700;

margin-bottom:10px;

color:#FFC107;

}

.counter-box h5{

font-size:20px;

font-weight:500;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{

background:linear-gradient(135deg,#1E293B,#0A4D9B);

padding:90px 0;

color:#fff;

}

.cta-section h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

.cta-section p{

font-size:18px;

opacity:.95;

}

.cta-section .btn{

padding:18px 38px;

font-size:18px;

border-radius:50px;

box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.cta-section .btn:hover{

transform:translateY(-5px);

}

/*==================================================
SECTION DIVIDER
==================================================*/

.section-padding:nth-child(even){

background:#f8fafc;

}

/*==================================================
SERVICES SECTION
==================================================*/

.services{
    background:#ffffff;
}

.services .accordion-item{
    border:1px solid var(--border);
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.services .accordion-item:hover{
    transform:translateY(-4px);
}

.services .accordion-button{
    background:#ffffff;
    color:var(--dark);
    font-size:1.1rem;
    font-weight:600;
    padding:22px 28px;
    box-shadow:none;
}

.services .accordion-button:not(.collapsed){
    background:var(--primary);
    color:var(--white);
}

.services .accordion-button::after{
    filter:brightness(0.3);
}

.services .accordion-button:not(.collapsed)::after{
    filter:brightness(5);
}

.services .accordion-body{
    padding:30px;
    background:#ffffff;
}

.services .accordion-body h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:18px;
}

.services .accordion-body h5{
    margin-top:20px;
    margin-bottom:12px;
    color:var(--dark);
}

.services .accordion-body p{
    color:var(--gray);
}

.services .accordion-body ul{
    margin-top:10px;
}

.services .accordion-body li{
    margin-bottom:10px;
    color:var(--gray);
    position:relative;
    padding-left:22px;
}

.services .accordion-body li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--success);
    font-weight:700;
}

/*==================================================
SERVICE SIDEBAR BOX
==================================================*/

.service-box{
    background:linear-gradient(135deg,#0A4D9B,#1565C0);
    color:#ffffff;
    padding:28px;
    border-radius:18px;
    box-shadow:var(--shadow);
}

.service-box h5{
    color:green;
    margin-bottom:18px;
}

.service-box ul li{
    color:#ffffff;
    margin-bottom:12px;
    padding-left:0;
}

.service-box ul li::before{
    display:none;
}

.service-box .btn{
    margin-top:18px;
}

/*==================================================
PRODUCTS SECTION
==================================================*/

.products{
    background:#f8fafc;
}

.product-card{

    background:#ffffff;

    border-radius:20px;

    padding:30px;

    height:100%;

    box-shadow:var(--shadow);

    transition:all .35s ease;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-icon{

    width:90px;

    height:90px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(10,77,155,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.product-card:hover .product-icon{

    transform:rotate(8deg) scale(1.08);

    background:rgba(255,193,7,.18);

}

.product-icon i{

    font-size:38px;

    color:var(--primary);

}

.product-card h4{

    color:var(--dark);

    font-weight:700;

    margin-bottom:15px;

}

.product-card p{

    color:var(--gray);

    margin-bottom:20px;

    min-height:80px;

}

.product-card ul{

    text-align:left;

    margin-bottom:25px;

}

.product-card li{

    margin-bottom:10px;

    color:var(--gray);

    position:relative;

    padding-left:22px;

}

.product-card li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:var(--success);

}

.product-card .btn{

    border-radius:50px;

}

/*==================================================
PRODUCT BADGE
==================================================*/

.product-badge{

    position:absolute;

    top:18px;

    right:-38px;

    background:var(--secondary);

    color:#000;

    font-size:.75rem;

    font-weight:700;

    padding:8px 40px;

    transform:rotate(45deg);

    text-transform:uppercase;

}

/*==================================================
HOVER EFFECTS
==================================================*/

.product-card:hover h4,
.services .accordion-item:hover h4{
    color:var(--primary);
}

.product-card:hover .btn-primary{
    background:#083b76;
}

.product-card:hover .btn-success{
    transform:translateY(-2px);
}

/*==================================================
PORTFOLIO SECTION
==================================================*/

.portfolio{
    background:#ffffff;
}

.portfolio-filter{
    margin-bottom:50px;
}

.portfolio-filter .btn{
    margin:6px;
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

    background:#fff;

}

.portfolio-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(10,77,155,.95),
        rgba(10,77,155,.25),
        transparent);

    color:#fff;

    transform:translateY(100%);

    transition:.4s;

}

.portfolio-card:hover .portfolio-content{

    transform:translateY(0);

}

.portfolio-content h4{

    color:#fff;

    margin-bottom:12px;

}

.portfolio-content p{

    color:#fff;

    margin-bottom:20px;

}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{

    background:#f8fafc;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.client-img{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:0 auto 20px;

    object-fit:cover;

    border:4px solid var(--secondary);

}

.testimonial-card h4{

    color:var(--dark);

    margin-bottom:15px;

}

.testimonial-card p{

    color:var(--gray);

    font-style:italic;

}

/*==================================================
FAQ
==================================================*/

.faq{

    background:#ffffff;

}

.faq .accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq .accordion-button{

    font-weight:600;

    padding:22px;

}

.faq .accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.faq .accordion-body{

    padding:25px;

    color:var(--gray);

}

/*==================================================
CONTACT SECTION
==================================================*/

.contact{

    background:#f8fafc;

}

.contact h2{

    color:var(--dark);

    font-weight:700;

    margin-bottom:20px;

}

.contact p{

    color:var(--gray);

}

.contact-info{

    margin:35px 0;

}

.contact-info p{

    margin-bottom:18px;

    font-size:17px;

}

.contact-info i{

    width:42px;

    height:42px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    text-align:center;

    line-height:42px;

    margin-right:12px;

}

.contact form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact .form-control,
.contact .form-select{

    height:56px;

    border-radius:12px;

    border:1px solid var(--border);

    box-shadow:none;

}

.contact textarea.form-control{

    height:auto;

    min-height:180px;

    resize:vertical;

}

.contact .form-control:focus,
.contact .form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(10,77,155,.15);

}

.contact button{

    padding:16px;

    font-size:18px;

    border-radius:50px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer h3,
.footer h4{

    color:#ffffff;

    margin-bottom:20px;

    font-weight:700;

}

.footer p{

    color:#94a3b8;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cbd5e1;

    transition:.3s;

}

.footer ul li a:hover{

    color:#FFC107;

    padding-left:8px;

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:35px 0 20px;

}

.footer .social-icons{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer .social-icons a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transition:.35s;

}

.footer .social-icons a:hover{

    background:var(--secondary);

    color:#000;

    transform:translateY(-4px);

}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

    color:#fff;

}

/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:105px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:998;

    box-shadow:var(--shadow);

    transition:.35s;

}

#backToTop:hover{

    background:#083b76;

    transform:translateY(-3px);

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#083b76;

}

/*==================================================
UTILITY CLASSES
==================================================*/

.text-primary-custom{

    color:var(--primary);

}

.text-secondary-custom{

    color:var(--secondary);

}

.bg-primary-custom{

    background:var(--primary);

}

.bg-light-custom{

    background:#f8fafc;

}

.shadow-custom{

    box-shadow:var(--shadow);

}

.rounded-custom{

    border-radius:18px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:991px){

    .section-padding{

        padding:80px 0;

    }

    .hero{

        padding:130px 0 90px;

        text-align:center;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        margin:auto auto 30px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

    .section-heading h2{

        font-size:34px;

    }

    .contact{

        text-align:center;

    }

    .contact-info{

        margin-bottom:35px;

    }

}

@media (max-width:768px){

    .section-heading h2{

        font-size:30px;

    }

    .hero h1{

        font-size:36px;

    }

    .navbar-brand{

        font-size:24px;

    }

    .product-card,
    .feature-box,
    .info-card,
    .testimonial-card{

        margin-bottom:20px;

    }

    .portfolio-card img{

        height:220px;

    }

    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:26px;

    }

    #backToTop{

        width:48px;

        height:48px;

    }

}

@media (max-width:576px){

    .hero{

        padding-top:110px;

    }

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:16px;

    }

    .btn{

        width:100%;

        margin-bottom:12px;

    }

    .hero-buttons{

        display:block;

    }

}

/*======================================
OYOMA VOICE ASSISTANT
=======================================*/

#ovaAssistant{

position:fixed;

bottom:100px;

left:25px;

width:85px;

height:85px;

border-radius:50%;

background:linear-gradient(135deg,#0A4D9B,#2196F3);

display:flex;

justify-content:center;

align-items:center;

cursor:pointer;

z-index:99999;

box-shadow:0 15px 40px rgba(0,0,0,.3);

animation:pulse 2s infinite;

}

.assistant-avatar{

font-size:36px;

color:white;

}

.assistant-status{

position:absolute;

bottom:-28px;

background:#0A4D9B;

color:white;

padding:4px 14px;

border-radius:30px;

font-size:12px;

font-weight:bold;

}

.voice-controls{

position:fixed;

left:30px;

bottom:210px;

z-index:99999;

}

#toggleVoice{

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#FFC107;

font-size:22px;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/*==========================================
VOICE WAVE
==========================================*/

.assistant-wave{

position:absolute;

display:flex;

gap:3px;

bottom:18px;

opacity:0;

transition:.3s;

}

.assistant-wave span{

width:4px;

height:12px;

background:#fff;

border-radius:10px;

animation:wave .8s infinite;

}

.assistant-wave span:nth-child(2){

animation-delay:.15s;

}

.assistant-wave span:nth-child(3){

animation-delay:.3s;

}

.assistant-wave span:nth-child(4){

animation-delay:.45s;

}

.assistant-speaking .assistant-wave{

opacity:1;

}

@keyframes wave{

0%{

transform:scaleY(.4);

}

50%{

transform:scaleY(1.5);

}

100%{

transform:scaleY(.4);

}

}