@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.ttf');
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter, Arial, sans-serif;
}

body{
background:#ffffff;
color:#111;
line-height:1.6;
}


/* NAVBAR */

.nav{
border-bottom:1px solid #eee;
}

.nav-inner{
max-width:1100px;
margin:auto;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.logo img{
height:60px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-size:14px;
}

nav a:hover{
color:#000;
}



/* HERO */

.hero{
padding:120px 20px;
}

.hero-inner{
max-width:900px;
margin:auto;
}

.hero h1{
font-size:52px;
font-weight:700;
margin-bottom:20px;
}

.hero p{
font-size:18px;
color:#666;
max-width:600px;
margin-bottom:30px;
}

.hero-buttons button{
padding:12px 20px;
border-radius:6px;
border:none;
margin-right:10px;
cursor:pointer;
}

.primary{
background:#111;
color:white;
}

.secondary{
background:#eee;
}



/* FEATURES */

.features{
max-width:1100px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.feature h3{
margin-bottom:10px;
}

.feature p{
color:#666;
}


/* FEATURES */

.textarea{
max-width:1100px;
margin:auto;
padding:60px 20px;

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


.textarea p{
color:#666;
}

/* PROJECT */

.project{
background:#f7f7f7;
padding:80px 20px;
}

.project-inner{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.project-text h2{
margin-bottom:10px;
}

.project-text h3{
font-size:28px;
margin-bottom:15px;
}

.project-text p{
color:#555;
margin-bottom:20px;
}

.project-text button{
padding:10px 18px;
background:#111;
color:white;
border:none;
border-radius:5px;
}

.project-image img{
width:100%;
border-radius:10px;
}



/* TEAM */

.team{
max-width:900px;
margin:auto;
padding:80px 20px;
text-align:center;
}

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

.team-grid img{
width:80px;
border-radius:50%;
margin-bottom:10px;
}

.team-grid p{
color:#666;
font-size:14px;
}



/* FOOTER */

.footer{
border-top:1px solid #eee;
padding:60px 20px;
}

.footer-inner{
max-width:900px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:30px;
margin-bottom:30px;
}

.footer a{
display:block;
text-decoration:none;
color:white;
margin-top:5px;
font-size:14px;
}

.footer a:hover{
color:#000;
}

.copyright{
text-align:center;
font-size:13px;
color:white;
}



/* ========================= */
/* DOCUMENTATION PAGE STYLE */
/* ========================= */


.docs-layout{
display:grid;
grid-template-columns:260px 1fr;
max-width:1100px;
margin:auto;
}


/* DOCS SIDEBAR */

.sidebar{
border-right:1px solid #eee;
padding:30px 20px;
height:calc(100vh - 125px);
position:sticky;
top:80px;
}

.sidebar h3{
margin-bottom:15px;
}

.sidebar ul{
list-style:none;
}

.sidebar li{
margin-bottom:8px;
}

.sidebar a{
text-decoration:none;
color:#555;
font-size:14px;
}

.sidebar a:hover{
color:black;
}

.section{
margin-top:20px;
font-weight:600;
color:#999;
}



/* DOCS CONTENT */

.content{
padding:40px;
max-width:800px;
}

.content h1{
font-size:36px;
margin-bottom:20px;
}

.content h2{
margin-top:40px;
margin-bottom:10px;
}

.content p{
margin-bottom:15px;
color:#444;
}

.content ul{
margin-left:20px;
margin-bottom:20px;
}

pre{
background:#111;
color:#eee;
padding:15px;
border-radius:6px;
overflow-x:auto;
margin:15px 0;
}

code{
font-family:monospace;
}
.footer-links p {
    text-align: center; /* Center the text */
}

.footer-links a {
    display: inline; /* Make links inline so they stay on one line */
    color: white;
    font-size: 13px;
    text-decoration: none;
    margin: 0 5px; /* Add spacing between links */
    text-align: center;
}

.footer-links a:hover {
    color: #0052DE; /* Optional hover color */
}


/* Animated text style */
.animated-text {
  color: #0052DE;
  font-weight: 700;
  display: inline-block;
  transition: opacity 0.5s ease-in-out;
  min-width: 120px;
}

