
/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}


html{
scroll-behavior:smooth;
}
body{
font-family:'Inter',sans-serif;
background:#f6f9fc;
color:#333;
line-height:1.6;
}

/* NAVBAR */

header{
background:white;
position:sticky;
top:0;
box-shadow:0 2px 15px rgba(0,0,0,0.05);
z-index:100;
}

nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:1px 20px;
}

.logo{
height:80px;
}

/* NAV LINKS */
.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

/* Hover effect */
/* apply hover ONLY to normal links */
.nav-links a:not(.signup-btn):hover {
  background: #f3f4f6;
  color: #111827;
}

/* Active/Focus feel */
.nav-links a:active {
  transform: scale(0.96);
}

/* SIGNUP BUTTON (PRIMARY CTA) */
.signup-btn {
  background: #336089;
  color: white !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(51, 96, 137, 0.3);
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background: #EC9746; /* 🔥 fix */
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(236, 151, 70, 0.4);
}

.btn-primary:hover {
  background: #d87f2f;
}

.btn-secondary:hover {
  background: #f3f4f6;
}
/* HAMBURGER */

.hamburger{
display:none;
cursor:pointer;
flex-direction:column;
}

.hamburger div{
width:25px;
height:3px;
background:#333;
margin:4px 0;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#336089,#1F4E79);
color:white;
padding:100px 20px;
}

.hero-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero h1{
font-size:41px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.hero-buttons a{
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:600;
margin-right:10px;
}

/* HERO */
.blog-hero{
background:linear-gradient(135deg,#336089,#1F4E79);
color:white;
text-align:center;
padding:70px 20px;
}

.blog-hero h1{
font-size:34px;
margin-bottom:10px;
}

/* CONTAINER */
.container{
max-width:1100px;
margin:50px auto;
padding:20px;
}

/* GRID */
.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

/* CARD */
.blog-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-5px);
}

/* CATEGORY */
.category{
display:inline-block;
background:#EC9746;
color:white;
padding:4px 10px;
border-radius:20px;
font-size:12px;
margin-bottom:10px;
}

/* TITLE */
.blog-card h3{
margin-bottom:10px;
font-size:18px;
}

/* TEXT */
.blog-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* READ MORE */
.read-more{
display:inline-block;
margin-top:10px;
color:#336089;
font-weight:600;
text-decoration:none;
}



.btn-primary{
background:#EC9746;
color:white;
}

.btn-secondary{
background:white;
color:#336089;
}

/* DASHBOARD MOCKUP */

.hero img{
width:100%;
border-radius:12px;
box-shadow:0 30px 60px rgba(0,0,0,0.4);
}


.product-screens{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-top:40px;
}

.product-screens img{
width:100%;
border-radius:12px;
box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
/* STATS */

.stats{
max-width:1000px;
margin:80px auto;
display:flex;
justify-content:space-around;
text-align:center;
}

.stat h2{
font-size:38px;
color:#336089;
}


.stat h3{
color:#EC9746;
font-size:30px;
}


/* STORY */
.story{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}


/* MISSION */
.mission{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.card h3{
color:#336089;
margin-bottom:10px;
}


/* FEATURES */

.features{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.features h2{
text-align:center;
margin-bottom:40px;
font-size:34px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.feature-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.feature-card h3{
color:#336089;
margin-bottom:10px;
}

/* PRICING */

.pricing{
background:white;
padding:80px 20px;
}

.pricing h2{
text-align:center;
margin-bottom:40px;
}

.pricing-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.plan{
border:1px solid #e0e0e0;
padding:35px;
border-radius:12px;
width:270px;
text-align:center;
transition:0.3s;
}

.plan:hover{
transform:scale(1.05);
}

.plan button:hover{
background:#1F4E79;
}

.price{
font-size:32px;
color:#EC9746;
margin:15px 0;
}

.price span{
font-size:14px;
color:#666;
}

.billing-toggle{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
margin-bottom:40px;
font-weight:500;
}

.switch{
position:relative;
display:inline-block;
width:50px;
height:24px;
}

.switch input{
opacity:0;
width:0;
height:0;
}

.slider{
position:absolute;
cursor:pointer;
top:0;
left:0;
right:0;
bottom:0;
background:#ccc;
border-radius:30px;
transition:.3s;
}

.slider:before{
position:absolute;
content:"";
height:18px;
width:18px;
left:3px;
bottom:3px;
background:white;
transition:.3s;
border-radius:50%;
}

input:checked + .slider{
background:#336089;
}

input:checked + .slider:before{
transform:translateX(26px);
}

.plan button{
background:#336089;
color:white;
border:none;
padding:11px 22px;
border-radius:6px;
cursor:pointer;
}

.plan:nth-child(2){
border:2px solid #EC9746;
transform:scale(1.05);
}

.plan ul{
list-style:none;
padding:0;
margin:10px 0;
text-align:left;
}

.plan ul li{
padding:6px 0;
border-bottom:1px solid #eee;
font-size:13px;
font-family:'Inter',sans-serif;
font-weight:500;
}

.plan ul li::before{
content:"✔";
color:#EC9746;
margin-right:8px;
}

.popular{
position:relative;
border:2px solid #EC9746;
transform:scale(1.05);
}

.badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:#EC9746;
color:white;
padding:5px 12px;
font-size:12px;
border-radius:20px;
font-weight:600;
}

/* TESTIMONIALS */

.testimonials{
max-width:900px;
margin:90px auto;
padding:0 20px;
}

.testimonials h2{
text-align:center;
margin-bottom:40px;
}

.testimonial{
background:white;
padding:22px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 3px 15px rgba(0,0,0,0.08);
}

/* CTA */

.cta{
background:linear-gradient(135deg,#336089,#1F4E79);
color:white;
text-align:center;
padding:70px 20px;
}

.cta h2{
margin-bottom:20px;
font-size:32px;
}


.cta h2 {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta a{
background:#EC9746;
padding:13px 28px;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:600;
}

/* FOOTER */
footer {
  background: #111827;
  color: #bbb;
  padding: 50px 15px; /* reduce side padding for mobile */
  margin-top: 40px;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* slightly bigger min */
  gap: 25px;
}

/* Make text clean on mobile */
footer h4 {
  color: white;
  margin-bottom: 10px;
}

footer a {
  display: block;
  text-decoration: none;
  color: #bbb;
  margin: 6px 0;
  font-size: 14px; /* better scaling */
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
  footer {
    text-align: center; /* center everything */
    padding: 40px 15px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /*  2 columns */
    gap: 20px;
  }

.hero h1{
    font-size:28px;
  }

  .hero p{
    font-size:15px;
  }


.hero-buttons a.btn-primary,
    .hero-buttons a.btn-secondary {
        padding: 10px 20px;
        font-size: 16px;
    }
.stat h2{
    font-size:24px;
  }


.stat p{
    font-size:14px;
  }

.features p{
    font-size:14px;
  }

.feature-card h3{
 font-size:16px;
color:#336089;
margin-bottom:10px;
}


.features h2{
text-align:center;
margin-bottom:40px;
font-size:24px;
}

.testimonial p{
    font-size:14px;
  }


.about-hero h1{
font-size:26px;
}

.story{
padding:20px;
font-size:14px;
}

.stat{
flex:1 1 100%;
}

.stat h3{
font-size:24px;
}

.mission{
grid-template-columns:1fr;
gap:20px;
}

.card{
padding:20px;
}

/* paragraph text */
.story p,
.section p,
.card p{
  text-align: justify;      /* clean alignment */
  font-size: 14px;          /* smaller text */
  line-height: 1.7;         /* better spacing */
}

/* headings slightly tighter */
.section h2{
  font-size: 22px;
}

.card h3{
  font-size: 16px;
}

/* hero text */
.about-hero p{
  text-align: center; /* keep center for hero */
  font-size: 14px;
}

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.blog-hero h1{
font-size:24px;
}

.blog-card p{
text-align:justify;
font-size:14px;
}


.nav-links{
display:none;
position:absolute;
right:20px;
top:65px;
background:white;
flex-direction:column;
padding:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.nav-links.active{
display:flex;
}
.nav-links {
    width: 220px;
    border-radius: 10px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
  }

  .signup-btn {
    text-align: center;
    margin-top: 10px;
  }
.hamburger{
display:flex;
}


}