/*==================================================
DAITARITHMS-AI
Author: ChatGPT
==================================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#1c2333;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;
padding:0;
margin:0;

}

.section-padding{

padding:100px 0;

}

.container{

max-width:1200px;

}

/*========================
NAVBAR
========================*/

.navbar{

padding:18px 0;
transition:.4s;
background:rgba(7,17,35,.85);
backdrop-filter:blur(15px);

}

.navbar-scrolled{

background:#081120;
box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.navbar-brand{

display:flex;
align-items:center;
gap:12px;
font-size:28px;
font-weight:700;
color:#fff !important;

}

.navbar-brand img{

width:48px;
height:48px;
border-radius:50%;
object-fit:cover;

}

.navbar-nav{

gap:20px;

}

.nav-link{

font-weight:500;
color:#fff !important;
transition:.3s;

}

.nav-link:hover{

color:#00d9ff !important;

}

.btn-primary{

background:#00cfff;
border:none;
padding:14px 34px;
border-radius:50px;
font-weight:600;
transition:.4s;

}

.btn-primary:hover{

background:#00b2db;
transform:translateY(-3px);

}

.btn-outline-light{

padding:14px 34px;
border-radius:50px;

}

/*========================
HERO
========================*/

.hero{

min-height:100vh;
display:flex;
align-items:center;
background:linear-gradient(135deg,#081120,#0d2b52);
color:#fff;
padding-top:120px;

}

.hero h5{

letter-spacing:3px;
color:#00d9ff;
margin-bottom:20px;
font-weight:600;

}

.hero h1{

font-size:65px;
font-weight:800;
line-height:1.2;
margin-bottom:25px;

}

.hero p{

font-size:18px;
line-height:34px;
margin-bottom:35px;
color:#d8e3f0;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:30px;

}

.hero-email{

font-size:18px;
display:flex;
align-items:center;
gap:10px;
color:#9ad7ff;

}

.hero-image{

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

/*========================
SECTION TITLE
========================*/

.section-title{

margin-bottom:70px;

}

.section-title h6{

color:#00cfff;
font-weight:700;
letter-spacing:2px;
margin-bottom:15px;

}

.section-title h2{

font-size:46px;
font-weight:700;
color:#071123;

}

.section-title p{

max-width:700px;
margin:20px auto 0;
line-height:32px;
color:#666;

}

/*========================
FEATURES
========================*/

.features{

padding:100px 0;
background:#fff;

}

.feature-card{

background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
height:100%;

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-icon{

width:90px;
height:90px;
margin:auto;
background:#eafaff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#00cfff;
margin-bottom:25px;

}

.feature-card h3{

font-size:26px;
margin-bottom:15px;
font-weight:700;

}

.feature-card p{

line-height:30px;
color:#666;

}

/*========================
ABOUT
========================*/

.about{

background:#f8fbff;

}

.about img{

border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about h2{

font-size:48px;
font-weight:700;
margin-bottom:25px;
color:#081120;

}

.about p{

font-size:17px;
line-height:32px;
color:#666;
margin-bottom:20px;

}

.about-box{

background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.about-box h3{

font-size:42px;
color:#00cfff;
font-weight:700;

}

.about-box p{

margin:0;
font-weight:600;
color:#444;

}

/*========================
MISSION
========================*/

.mission{

padding:100px 0;
background:#fff;

}

.mission-card{

padding:45px;
border-radius:25px;
background:#081120;
color:#fff;
height:100%;
transition:.4s;

}

.mission-card:hover{

transform:translateY(-10px);

}

.mission-card i{

font-size:50px;
color:#00cfff;
margin-bottom:25px;

}

.mission-card h3{

font-size:32px;
margin-bottom:20px;

}

.mission-card p{

line-height:32px;
color:#d7dce6;

}

/*========================
FOUNDERS
========================*/

.founders{

padding:100px 0;
background:#f8fbff;

}

.founder-card{

background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;

}

.founder-card:hover{

transform:translateY(-12px);

}

.founder-card img{

width:170px;
height:170px;
border-radius:50%;
margin:auto;
object-fit:cover;
border:6px solid #00cfff;
margin-bottom:25px;

}

.founder-card h3{

font-size:30px;
font-weight:700;
margin-bottom:10px;

}

.founder-card h5{

color:#00cfff;
margin-bottom:20px;

}

.founder-card p{

line-height:30px;
color:#666;

}

.social{

margin-top:25px;

}

.social a{

width:45px;
height:45px;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#081120;
color:#fff;
margin:0 5px;
transition:.3s;

}

.social a:hover{

background:#00cfff;
color:#fff;

}

/*========================
TEAM
========================*/

.team{

padding:100px 0;
background:#fff;

}

.team-card{

background:#fff;
padding:35px;
text-align:center;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}

.team-card:hover{

transform:translateY(-10px);

}

.team-card img{

width:140px;
height:140px;
border-radius:50%;
margin:auto;
object-fit:cover;
margin-bottom:25px;
border:5px solid #00cfff;

}

.team-card h3{

font-size:24px;
font-weight:700;
margin-bottom:10px;

}

.team-card p{

color:#777;

}

/*========================
SERVICES
========================*/

.services{

padding:100px 0;
background:#f7f9fc;

}

.service-card{

background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
height:100%;
text-align:center;

}

.service-card:hover{

transform:translateY(-12px);
box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-card i{

font-size:55px;
color:#00cfff;
margin-bottom:25px;

}

.service-card h3{

font-size:28px;
font-weight:700;
margin-bottom:20px;
color:#081120;

}

.service-card p{

line-height:30px;
color:#666;

}

/*========================
PROCESS
========================*/

.process{

padding:100px 0;
background:#081120;
color:#fff;

}

.process-card{

padding:35px;

}

.process-card h1{

font-size:70px;
font-weight:800;
color:#00cfff;
margin-bottom:20px;

}

.process-card h4{

font-size:28px;
margin-bottom:15px;

}

.process-card p{

line-height:30px;
color:#cfd9e6;

}

/*========================
INDUSTRIES
========================*/

.industries{

padding:100px 0;
background:#fff;

}

.industry-card{

background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
height:100%;

}

.industry-card:hover{

transform:translateY(-10px);

}

.industry-card img{

width:100%;
height:240px;
object-fit:cover;

}

.industry-card h3{

padding:25px 25px 10px;
font-size:28px;
font-weight:700;
color:#081120;

}

.industry-card p{

padding:0 25px 30px;
line-height:30px;
color:#666;

}

/*========================
STATISTICS
========================*/

.stats{

padding:100px 0;
background:linear-gradient(135deg,#081120,#0d2b52);
color:#fff;

}

.stats h2{

font-size:58px;
font-weight:800;
color:#00cfff;
margin-bottom:15px;

}

.stats p{

font-size:18px;
font-weight:500;

}

/*========================
CALL TO ACTION
========================*/

.cta{

padding:120px 0;
background:#00cfff;
text-align:center;
color:#fff;

}

.cta h2{

font-size:48px;
font-weight:800;
margin-bottom:25px;

}

.cta p{

font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:40px;
line-height:35px;

}

.cta .btn{

background:#081120;
color:#fff;
padding:18px 45px;
border-radius:50px;
font-weight:700;
transition:.3s;

}

.cta .btn:hover{

background:#000;
transform:translateY(-4px);

}

/*========================
CONTACT
========================*/

.contact{

padding:100px 0;
background:#f8fbff;

}

.contact-info{

background:#081120;
padding:45px;
border-radius:25px;
color:#fff;
height:100%;

}

.contact-info h3{

font-size:34px;
margin-bottom:20px;

}

.contact-info p{

line-height:30px;
color:#d9e4ef;

}

.contact-item{

display:flex;
align-items:flex-start;
gap:20px;
margin-top:30px;

}

.contact-item i{

width:60px;
height:60px;
background:#00cfff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;

}

.contact-item h5{

margin-bottom:5px;
font-size:20px;

}

.contact-form{

background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form .form-control{

height:58px;
border-radius:15px;
border:1px solid #ddd;
padding:15px;

}

.contact-form textarea{

height:auto !important;
resize:none;

}

.contact-form .form-control:focus{

border-color:#00cfff;
box-shadow:none;

}

/*========================
FOOTER
========================*/

.footer{

background:#081120;
color:#fff;
padding:80px 0 30px;

}

.footer h3,
.footer h4{

margin-bottom:25px;
font-weight:700;

}

.footer p{

color:#cfd9e6;
line-height:30px;

}

.footer-links li{

margin-bottom:15px;

}

.footer-links a{

color:#cfd9e6;
transition:.3s;

}

.footer-links a:hover{

color:#00cfff;
padding-left:8px;

}

.footer-social{

display:flex;
gap:12px;

}

.footer-social a{

width:45px;
height:45px;
border-radius:50%;
background:#16253d;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
transition:.3s;

}

.footer-social a:hover{

background:#00cfff;
transform:translateY(-5px);

}

.footer hr{

margin:40px 0 20px;
border-color:rgba(255,255,255,.1);

}

/*========================
BACK TO TOP
========================*/

.back-to-top{

position:fixed;
right:25px;
bottom:25px;

width:55px;
height:55px;

background:#00cfff;
color:#fff;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

font-size:22px;

opacity:0;
visibility:hidden;

transition:.4s;

z-index:999;

}

.back-to-top.active{

opacity:1;
visibility:visible;

}

.back-to-top:hover{

background:#081120;
color:#fff;

}

/*========================
RESPONSIVE
========================*/

@media(max-width:991px){

.hero{

text-align:center;
padding-top:160px;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

justify-content:center;
flex-wrap:wrap;

}

.navbar-nav{

margin-top:20px;
text-align:center;

}

.navbar .btn{

margin-top:20px;
width:100%;

}

.section-title h2{

font-size:36px;

}

.stats .col-lg-3{

margin-bottom:40px;

}

}

@media(max-width:768px){

.hero h1{

font-size:36px;

}

.hero p{

font-size:16px;

}

.section-title h2{

font-size:30px;

}

.cta h2{

font-size:34px;

}

.contact-info,
.contact-form{

margin-bottom:30px;

}

.process-card{

margin-bottom:40px;

}

}

/*========================
SCROLLBAR
========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef3f8;

}

::-webkit-scrollbar-thumb{

background:#00cfff;
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#009fc4;

}