/* =====================================
   MAMUS DIGITAL SERVICES LTD
   PREMIUM CORPORATE STYLE
===================================== */

:root{

--primary:#0A66FF;
--secondary:#4CC9FF;
--dark:#081224;
--light:#ffffff;
--gray:#88b9fc;
--bg:#f5f9ff;

--shadow:
0 10px 30px rgba(0,0,0,.08);

--radius:16px;

}

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

html{
scroll-behavior:smooth;
}

body{

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

background:var(--bg);

color:#222;

overflow-x:hidden;

}

/* =====================
   LOADER
===================== */

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#fff;

z-index:99999;

display:flex;

align-items:center;

justify-content:center;

}

.spinner{

width:60px;

height:60px;

border:5px solid #eee;

border-top:5px solid var(--primary);

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

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

.navbar{

padding:15px 0;

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

backdrop-filter:blur(15px);

box-shadow:0 5px 20px rgba(0,0,0,.05);

transition:.3s;

}

.navbar-brand img{

height:55px;

}

.nav-link{

font-weight:500;

color:#111;

margin-left:15px;

transition:.3s;

}

.nav-link:hover{

color:var(--primary);

}

.btn-primary{

background:var(--primary);

border:none;

padding:12px 25px;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

background:#0056e0;

}

.btn-outline-light{

border:2px solid white;

color:white;

padding:12px 25px;

border-radius:50px;

font-weight:600;

}

.btn-outline-light:hover{

background:white;

color:var(--primary);

}

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

.hero{

min-height:100vh;

display:flex;

align-items:center;

background:
linear-gradient(
135deg,
#081224,
#0A66FF
);

color:white;

padding-top:100px;

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:600px;

height:600px;

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

border-radius:50%;

top:-200px;

right:-150px;

}

.hero h1{

font-size:4rem;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

}

.hero h1 span{

color:#4CC9FF;

}

.hero p{

font-size:1.1rem;

line-height:1.8;

margin-bottom:30px;

opacity:.9;

}

.hero-btn{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.hero img{

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

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* =====================
   SECTION TITLE
===================== */

section h2{

font-size:2.5rem;

font-weight:700;

margin-bottom:20px;

color:var(--dark);

}

section p{

color:var(--gray);

line-height:1.8;

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

.about-section{

padding:100px 0;

background:#fff;

}

.about-section img{

border-radius:25px;

box-shadow:var(--shadow);

}

.about-section p{

font-size:1rem;

margin-top:15px;

}

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

.vision-mission{

padding:100px 0;

background:#f8fbff;

}

.box{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:var(--shadow);

height:100%;

transition:.4s;

}

.box:hover{

transform:translateY(-10px);

}

.box h3{

font-size:1.8rem;

font-weight:700;

margin-bottom:15px;

color:var(--primary);

}

/* =====================
   CORE VALUES
===================== */

.values{

padding:100px 0;

background:#fff;

}

.value-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.4s;

}

.value-box:hover{

transform:translateY(-10px);

}

.value-box i{

font-size:50px;

color:var(--primary);

margin-bottom:20px;

}

.value-box h5{

font-weight:700;

margin-bottom:10px;

}

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

.services{

padding:100px 0;

background:#f8fbff;

}

.service-card{

background:#fff;

padding:40px 25px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.4s;

height:100%;

cursor:pointer;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card i{

font-size:55px;

color:var(--primary);

margin-bottom:20px;

}

.service-card h5{

font-weight:700;

font-size:1.2rem;

}

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

.why-us{

padding:100px 0;

background:#fff;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

height:100%;

transition:.4s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card i{

font-size:50px;

margin-bottom:20px;

color:var(--primary);

}

.why-card h5{

font-weight:700;

margin-bottom:10px;

}

/* =====================
   GLASSMORPHISM EFFECT
===================== */

.glass{

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

backdrop-filter:blur(20px);

-webkit-backdrop-filter:blur(20px);

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

border-radius:20px;

}

/* =====================
   ANIMATION EFFECTS
===================== */

.service-card,
.why-card,
.value-box,
.box{

transition:
all .4s ease;

}

.service-card:hover,
.why-card:hover,
.value-box:hover,
.box:hover{

box-shadow:
0 20px 50px rgba(10,102,255,.15);

}

/* =====================
   ICON CIRCLE
===================== */

.icon-circle{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

margin:auto;

color:white;

font-size:35px;

margin-bottom:20px;

}

/* =====================
   SECTION SPACING
===================== */

.about-section,
.vision-mission,
.values,
.services,
.why-us{

position:relative;

overflow:hidden;

}
/* =====================
   STATISTICS SECTION
===================== */

.stats-section{

padding:100px 0;

background:
linear-gradient(
135deg,
#081224,
#0A66FF
);

color:#fff;

}

.stats-section h2{

font-size:3rem;

font-weight:800;

color:#fff;

margin-bottom:10px;

}

.stats-section p{

color:rgba(255,255,255,.85);

font-size:1rem;

}

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

.cta-section{

padding:100px 0;

background:#f8fbff;

}

.cta-box{

background:
linear-gradient(
135deg,
#0A66FF,
#4CC9FF
);

padding:70px 40px;

border-radius:30px;

color:white;

box-shadow:
0 20px 50px rgba(10,102,255,.25);

}

.cta-box h2{

color:white;

font-size:2.8rem;

font-weight:800;

margin-bottom:20px;

}

.cta-box p{

color:rgba(255,255,255,.9);

margin-bottom:30px;

font-size:1.1rem;

}

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

.contact-section{

padding:100px 0;

background:#fff;

}

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-item{

display:flex;

align-items:center;

gap:15px;

padding:18px 20px;

background:#f8fbff;

border-radius:15px;

box-shadow:var(--shadow);

transition:.3s;

}

.contact-item:hover{

transform:translateX(8px);

}

.contact-item i{

font-size:22px;

color:var(--primary);

width:30px;

}

.contact-item span{

font-weight:500;

}

.contact-section form{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

}

.form-control{

padding:15px;

border-radius:12px;

border:1px solid #ddd;

}

.form-control:focus{

box-shadow:none;

border-color:var(--primary);

}

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

.footer{

background:#081224;

color:white;

padding:80px 0 20px;

}

.footer p{

color:rgba(255,255,255,.8);

}

.footer h5{

margin-bottom:20px;

font-weight:700;

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:10px;

color:rgba(255,255,255,.8);

cursor:pointer;

transition:.3s;

}

.footer-links li:hover{

color:#4CC9FF;

}

.social-links{

display:flex;

gap:15px;

margin-top:15px;

}

.social-links a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

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

color:white;

text-decoration:none;

transition:.3s;

}

.social-links a:hover{

background:var(--primary);

transform:translateY(-5px);

}

.footer hr{

border-color:
rgba(255,255,255,.1);

margin:40px 0 20px;

}

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

@media(max-width:991px){

.hero{

text-align:center;

padding-top:140px;

}

.hero h1{

font-size:3rem;

}

.hero-btn{

justify-content:center;

}

.hero img{

margin-top:40px;

}

.cta-box h2{

font-size:2rem;

}

}

@media(max-width:768px){

section h2{

font-size:2rem;

}

.hero h1{

font-size:2.3rem;

}

.hero p{

font-size:1rem;

}

.stats-section h2{

font-size:2.2rem;

}

.cta-box{

padding:50px 25px;

}

.contact-info{

margin-bottom:30px;

}

.navbar-brand img{

height:48px;

}

}

@media(max-width:576px){

.hero{

min-height:auto;

padding-top:130px;

padding-bottom:80px;

}

.hero h1{

font-size:2rem;

}

.btn-primary,
.btn-outline-light{

width:100%;

text-align:center;

}

.hero-btn{

flex-direction:column;

}

.cta-box h2{

font-size:1.7rem;

}

.stats-section h2{

font-size:2rem;

}

}

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

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:#0056e0;

}