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

body {
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand-logo {
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-btn {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
}

/* MOBILE NAV */
.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}

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

.hero p {
  max-width: 600px;
  margin: 10px auto 0;
}

/* SECTIONS */
section {
  padding: 50px 0;
}

/* TITLES */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 30px;
}

.section-title p {
  color: #64748b;
  margin-top: 5px;
}

/* GRID */
.services-grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card p {
  color: #475569;
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
}

/* CTA */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  margin-top: 30px;
}

.cta a {
  display: inline-block;
  margin-top: 18px;
  background: #fff;
  color: #2563eb;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
}

/* CONTACT SECTION */
.contact-section {
  background: #f1f5f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: #f8fafc;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.contact-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-box p {
  color: #64748b;
}

/* CONTACT BUTTONS */
.contact-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.call-btn,
.email-btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.call-btn {
  background: #10b981;
}

.email-btn {
  background: #2563eb;
}

.call-btn:hover,
.email-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #94A3B8;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 20px;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-text {
  max-width: 260px;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #94A3B8;
  font-size: 15px;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1E293B;
  padding: 18px;
  font-size: 14px;
}

/* FOOTER SOCIAL ICONS */
.footer-socials{
  display:flex;
  gap:22px;
  margin-top:22px;
}

.footer-socials a{
  color:#94A3B8;
  font-size:28px;
  transition:.3s ease;
}

.footer-socials a:hover{
  color:#ffffff;
  transform:translateY(-2px);
}

/* FLOATING BUTTONS */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #2563eb;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    bottom: 15px;
    right: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.blog-section {
  background: #f9fafb;
  padding: 60px 20px;
  border-radius: 10px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;   /* centers content */
}

.blog-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.blog-section ul {
  list-style: none;
  padding: 0;
}

.blog-section li {
  margin-bottom: 10px;
}

.blog-section a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 500;
}

.insights-section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.insights-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* GRID */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD DESIGN */
.insight-card {
  display: block;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2ff, #f0f7ff);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #dbeafe;
}

.insight-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.insight-card p {
  color: #475569;
  font-size: 14px;
}

/* HOVER EFFECT */
.insight-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* SECTION */
.latest-insights {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
}

/* CARD */
.insight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 35px;
  margin-bottom: 30px;

  border-radius: 24px;
  text-decoration: none;

  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* HOVER */
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* BLUE CARD */
.blue-card {
  background: linear-gradient(135deg, #f4f8ff, #eef5ff);
  border-color: #cfe0ff;
}

/* GREEN CARD */
.green-card {
  background: linear-gradient(135deg, #f4fff7, #effff4);
  border-color: #ccefd7;
}

/* ICON */
.card-icon {
  min-width: 110px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 48px;

  border-radius: 24px;
  background: rgba(255,255,255,0.7);
}

/* CONTENT */
.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #0f172a;
}

.card-content p {
  font-size: 22px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

/* READ MORE */
.read-more {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

/* ARROW */
.arrow-circle {
  min-width: 70px;
  height: 70px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  font-weight: bold;

  background: rgba(255,255,255,0.7);
  color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .insight-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-content h3 {
    font-size: 28px;
  }

  .card-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 34px;
  }

  .arrow-circle {
    display: none;
  }
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:#0f172a;
  background:#fff;
  line-height:1.6;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* =========================================
GLOBAL CONTAINER
========================================= */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* =========================================
HEADER / NAVBAR
========================================= */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  width:100%;
}

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:84px;
}

/* LOGO */
.brand-logo{
  height:62px;
  width:auto;
  display:block;
  object-fit:contain;
}

/* NAVIGATION */
.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-links a{
  font-size:15px;
  font-weight:500;
  color:#0f172a;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:#2563eb;
}

/* CONTACT BUTTON */
.nav-btn{
  background:#2563eb;
  color:#fff !important;
  padding:10px 18px;
  border-radius:999px;
  transition:0.3s ease;
}

.nav-btn:hover{
  background:#1d4ed8;
  color:#fff !important;
}

/* MOBILE MENU BUTTON */
.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:30px;
  cursor:pointer;
  color:#0f172a;
}

/* =========================================
FOOTER
========================================= */
.footer{
  background:#020617;
  color:#94A3B8;
  width:100%;
  margin-top:70px;
}

.footer-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-logo{
  color:#fff;
  font-size:26px;
  font-weight:700;
  margin-bottom:14px;
}

.footer-text{
  max-width:280px;
  line-height:1.8;
  font-size:15px;
}

.footer h3{
  color:#fff;
  font-size:18px;
  margin-bottom:16px;
}

.footer ul{
  list-style:none;
}

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

.footer ul li a{
  color:#94A3B8;
  font-size:15px;
  transition:0.3s ease;
}

.footer ul li a:hover{
  color:#ffffff;
}

.footer-bottom{
  border-top:1px solid #1e293b;
  text-align:center;
  padding:18px 20px;
  font-size:14px;
  color:#94A3B8;
  width:100%;
}

/* FOOTER SOCIALS */
.footer-socials{
  display:flex;
  gap:20px;
  margin-top:20px;
}

.footer-socials a{
  color:#94A3B8;
  font-size:24px;
  transition:0.3s ease;
}

.footer-socials a:hover{
  color:#fff;
  transform:translateY(-3px);
}

/* =========================================
FLOATING BUTTONS
========================================= */
.floating-contact{
  position:fixed;
  bottom:25px;
  right:25px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}

.float-btn{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  transition:0.3s;
}

.whatsapp{
  background:#25D366;
}

.call{
  background:#2563eb;
}

.float-btn:hover{
  transform:translateY(-5px) scale(1.08);
}

/* =========================================
MOBILE STYLES
========================================= */
@media(max-width:768px){

  .nav-wrap{
    min-height:74px;
  }

  .brand-logo{
    height:52px;
  }

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:74px;
    left:0;
    width:100%;
    background:#fff;

    display:none;
    flex-direction:column;
    align-items:flex-start;

    padding:20px;

    border-bottom:1px solid #e5e7eb;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    width:100%;
    padding:10px 0;
  }

  .nav-btn{
    width:100%;
    text-align:center;
    margin-top:10px;
  }

  /* FOOTER MOBILE */
  .footer-inner{
    padding:50px 20px 30px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .footer-logo{
    font-size:24px;
  }

  .footer h3{
    font-size:17px;
  }

  .footer-text,
  .footer ul li a{
    font-size:14px;
  }

  /* FLOATING BUTTONS */
  .floating-contact{
    right:15px;
    bottom:15px;
  }

  .float-btn{
    width:52px;
    height:52px;
    font-size:20px;
  }
}
