/*==================================================
ZARIYA
Customer Experience Website
Author: ChatGPT
Version: 1.0
==================================================*/

:root{

--primary:#003D51;
--primary-dark:#002E3D;
--secondary:#EFEEE3;
--accent:#0A4F69;
--light:#F8F7F2;
--white:#ffffff;
--text:#5F6872;
--heading:#003D51;
--border:#E4E5DD;

--shadow-sm:0 5px 15px rgba(0,0,0,.08);
--shadow:0 10px 30px rgba(0,0,0,.12);
--shadow-lg:0 25px 60px rgba(0,0,0,.18);

--radius:18px;

--transition:.35s ease;

}

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

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:#fff;

color:var(--text);

font-size:16px;

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

padding:0;

margin:0;

list-style:none;

}

.section{

padding:110px 0;

}

.bg-light{

background:#f7fafb !important;

}

/*--------------------------------*/

h1,h2,h3,h4,h5,h6{

font-family:'Playfair Display',serif;

font-weight:700;

color:var(--heading);

}

h1{

font-size:72px;

line-height:1.05;

letter-spacing:-1px;

}

h2{

font-size:48px;

}

h3{

font-size:28px;

}

h4{

font-size:22px;

}

.lead{

font-size:20px;

color:#64748b;

}

/*--------------------------------*/

.section-tag{

display:inline-block;

padding:8px 18px;

background:rgba(0,61,81,.08);

color:var(--primary);

border-radius:100px;

font-weight:600;

letter-spacing:.5px;

font-size:14px;

text-transform:uppercase;

}

/*--------------------------------*/

.btn{

padding:14px 32px;

border-radius:100px;

font-weight:600;

transition:.35s;

}

.btn-primary{

background:var(--primary);

border:none;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-3px);

box-shadow:var(--shadow);

}

.btn-outline-light{

border:2px solid #fff;

color:#fff;

}

.btn-outline-light:hover{

background:#fff;

color:var(--primary);

}

/*--------------------------------*/

.navbar{

padding:18px 0;

transition:.4s;

/* background:rgba(0,61,81,.96); */

background:rgba(0,61,81,1);

backdrop-filter:blur(12px);

}

.navbar-brand{

font-size:30px;

}

.navbar-brand img{

height:48px;

}

.nav-link{

color:#fff !important;

margin-left:20px;

font-weight:500;

position:relative;

}

.nav-link::after{

content:"";

position:absolute;

bottom:-6px;

left:0;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-link:hover::after{

width:100%;

}

/*--------------------------------*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

background:

linear-gradient(rgba(0,61,81,.88),rgba(0,61,81,.88)),
url(images/hero-bg.jpg);

background-size:cover;

background-position:center;

padding-top:120px;

}

.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(239,238,227,.10);

border-radius:50%;

top:-250px;

right:-250px;

filter:blur(50px);

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(239,238,227,.08);

border-radius:50%;

left:-150px;

bottom:-150px;

filter:blur(40px);

}

.hero .container{

position:relative;

z-index:2;

}

.hero h1{

color:#fff;

margin-top:15px;

}

.hero p{

color:#d7dde6;

}

.hero-image{

animation:float 5s ease-in-out infinite;

filter:drop-shadow(0 30px 60px rgba(0,0,0,.35));

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/*--------------------------------*/

.hero-stats{

display:flex;

gap:45px;

margin-top:50px;

}

.hero-stats h2{

font-size:40px;

color:#fff;

margin-bottom:5px;

}

.hero-stats p{

margin:0;

color:#cbd5e1;

}

/*--------------------------------*/

.badge{

font-size:15px;

font-weight:600;

padding:10px 18px;

}

/*--------------------------------*/

.trusted{

padding:60px 0;

background:#fff;

}

.trusted p{

font-size:20px;

font-weight:600;

color:#64748b;

}

.trusted i{

font-size:55px;

color:var(--primary);

margin-bottom:18px;

}

.trusted h5{

margin-top:10px;

}

/*--------------------------------*/

.about img{

border-radius:var(--radius);

box-shadow:var(--shadow-lg);

}

.about h2{

margin:20px 0;

}

.about p{

margin-bottom:20px;

}

.about h3{

font-size:18px;

padding:18px;

background:#fff;

border-radius:15px;

box-shadow:var(--shadow-sm);

transition:.3s;

}

.about h3:hover{

background:var(--primary);

color:#fff;

transform:translateY(-8px);

}

/*--------------------------------*/

.service-card{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:var(--shadow-sm);

height:100%;

transition:.35s;

border:1px solid transparent;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

width:100%;

height:5px;

background:linear-gradient(90deg,#003D51,#0A4F69);

left:0;

top:0;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:var(--shadow-lg);

border-color:rgba(0,128,128,.25);

}

.service-icon{

width:80px;

height:80px;

background:rgba(0,61,81,.08);

display:flex;

align-items:center;

justify-content:center;

border-radius:22px;

margin-bottom:25px;

transition:.35s;

}

.service-card:hover .service-icon{

background:var(--primary);

transform:rotate(-10deg);

}

.service-icon i{

font-size:34px;

color:var(--primary);

transition:.35s;

}

.service-card:hover .service-icon i{

color:#fff;

}

.service-card h4{

margin-bottom:18px;

}

.service-card p{

color:#64748b;

}

.service-list{

margin-top:20px;

}

.service-list li{

padding:8px 0;

border-bottom:1px solid #eef2f7;

position:relative;

padding-left:28px;

}

.service-list li:last-child{

border:none;

}

.service-list li::before{

content:"✓";

position:absolute;

left:0;

color:var(--primary);

font-weight:700;

}

/*==================================================
WHY CHOOSE ZARIYA
==================================================*/

.why-us{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.why-us::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,128,128,.05);
    border-radius:50%;
    right:-180px;
    top:-180px;
}

.why-us img{
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.feature-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:18px;
    padding:22px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    border:1px solid #edf2f7;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:rgba(0,128,128,.25);
}

.feature-box i{
    font-size:34px;
    color:var(--primary);
}

.feature-box h5{
    margin:0;
    font-size:18px;
}

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

.process-section{
    background:#f8fbfc;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    position:relative;
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.process-number{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.process-card h4{
    margin-bottom:15px;
}

.process-card p{
    color:#64748b;
    margin-bottom:0;
}

/*==================================================
INDUSTRIES
==================================================*/

.industries{
    background:#fff;
}

.industry-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    border:1px solid transparent;
    height:100%;
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,128,128,.2);
    box-shadow:var(--shadow-lg);
}

.industry-card i{
    font-size:56px;
    color:var(--primary);
    margin-bottom:20px;
    display:block;
}

.industry-card h4{
    margin-bottom:15px;
}

.industry-card p{
    color:#64748b;
    margin-bottom:0;
}

/*==================================================
STATISTICS
==================================================*/

.stats-section{
    background:
    linear-gradient(rgba(0,61,81,.92),rgba(0,61,81,.92)),
    url(images/stats-bg.jpg);
    background-size:cover;
    background-position:center;
    padding:100px 0;
}

.counter-box{
    padding:25px;
}

.counter-box h2{
    color:#fff;
    font-size:56px;
    margin-bottom:10px;
}

.counter-box h5{
    color:#d5dce7;
    font-weight:500;
}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{
    background:#f8fbfc;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.testimonial-card:first-line{
    color:#f4b400;
}

.testimonial-card p{
    font-style:italic;
    margin:20px 0;
    color:#64748b;
}

.testimonial-card h5{
    margin-bottom:5px;
}

.testimonial-card span{
    color:var(--primary);
    font-weight:600;
}

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

.cta-section{
    padding:90px 0;
    background:
    linear-gradient(135deg,#003D51,#0A4F69);
    color:#fff;
}

.cta-section h2{
    color:#fff;
    margin-bottom:20px;
}

.cta-section p{
    color:#eefdfd;
    font-size:18px;
}

.cta-section .btn{
    padding:18px 42px;
    font-size:18px;
    font-weight:600;
}

.cta-section .btn:hover{
    transform:translateY(-4px);
}

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

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.zoom{
    transition:.4s;
}

.zoom:hover{
    transform:scale(1.04);
}

.rotate:hover{
    transform:rotate(-3deg);
}

.shadow-hover:hover{
    box-shadow:var(--shadow-lg);
}

/*==================================================
UTILITY
==================================================*/

.rounded-xl{
    border-radius:24px;
}

.rounded-xxl{
    border-radius:30px;
}

.text-primary{
    color:var(--primary)!important;
}

.bg-primary{
    background:var(--primary)!important;
}

.bg-gradient-primary{
    background:linear-gradient(135deg,var(--primary),var(--accent));
}

.border-radius{
    border-radius:var(--radius);
}

.mt-80{
    margin-top:80px;
}

.mb-80{
    margin-bottom:80px;
}

.py-120{
    padding-top:120px;
    padding-bottom:120px;
}

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

.contact-section{
    background:#ffffff;
    position:relative;
}

.contact-info{
    margin-top:40px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.contact-item i{
    width:65px;
    height:65px;
    background:rgba(0,61,81,.08);
    color:var(--primary);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.contact-item h5{
    margin-bottom:6px;
}

.contact-item p{
    margin:0;
    color:#64748b;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.contact-form .form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dce3ea;
    padding:15px 18px;
    box-shadow:none;
    transition:.3s;
}

.contact-form textarea.form-control{
    min-height:180px;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(0,61,81,.15);
}

.contact-form button{
    width:100%;
}

.contact-section iframe{
    border-radius:22px;
    box-shadow:var(--shadow);
    margin-top:40px;
}

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

footer{
    background:#003D51;
    color:#cbd5e1;
    padding:80px 0 30px;
}

footer h3,
footer h5{
    color:#fff;
    margin-bottom:20px;
}

footer p{
    color:#94a3b8;
    line-height:1.8;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#94a3b8;
    transition:.3s;
}

footer ul li a:hover{
    color:#ffffff;
    padding-left:6px;
}

footer hr{
    border-color:rgba(255,255,255,.08);
    margin:45px 0 25px;
}

footer .social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

footer .social-icons a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

footer .social-icons a:hover{
    background:var(--primary);
    transform:translateY(-4px);
}

/*==================================================
SCROLL TO TOP
==================================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:var(--primary-dark);
    transform:translateY(-5px);
}

/*==================================================
CUSTOM SCROLLBAR
==================================================*/

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

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

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

/*==================================================
SELECTION
==================================================*/

::selection{
    background:var(--primary);
    color:#fff;
}

/*==================================================
IMAGE EFFECTS
==================================================*/

img{
    transition:.4s;
}

.zoom-img{
    overflow:hidden;
    border-radius:24px;
}

.zoom-img img:hover{
    transform:scale(1.08);
}

/*==================================================
SMOOTH REVEAL
==================================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .9s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

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

@media(max-width:1200px){

.hero h1{
    font-size:54px;
}

h2{
    font-size:40px;
}

}

@media(max-width:992px){

.section{
    padding:90px 0;
}

.hero{
    text-align:center;
    min-height:auto;
    padding:170px 0 90px;
}

.hero h1{
    font-size:46px;
}

.hero-image{
    margin-top:60px;
}

.hero-stats{
    justify-content:center;
    flex-wrap:wrap;
}

.navbar-collapse{
    background:#003D51;
    padding:20px;
    border-radius:18px;
    margin-top:15px;
}

.nav-link{
    margin:12px 0;
}

.contact-form{
    margin-top:50px;
}

}

@media(max-width:768px){

.section{
    padding:70px 0;
}

.hero h1{
    font-size:38px;
}

h2{
    font-size:34px;
}

.lead{
    font-size:18px;
}

.hero-stats{
    gap:25px;
}

.service-card,
.industry-card,
.process-card,
.testimonial-card{
    padding:30px;
}

.contact-form{
    padding:30px;
}

.counter-box h2{
    font-size:42px;
}

}

@media(max-width:576px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:32px;
}

h2{
    font-size:28px;
}

.btn{
    width:100%;
    margin-bottom:15px;
}

.hero .btn-outline-light{
    margin-left:0 !important;
}

.hero-stats{
    flex-direction:column;
    gap:15px;
}

.contact-item{
    flex-direction:column;
}

.navbar-brand img{
    height:40px;
}

}

/*==================================================
END OF FILE
==================================================*/