:root {
  --primary-color: #00b7b3;
  --dark-blue: #0c2340;
  --light-gray: #f5f7fa;
  --accent-color: #ff6f61;
  --heading-color: #0c2340;
  --default-color: #000;
  --heading-font: 'Montserrat', sans-serif;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);	
  color: var(--default-color);
  margin: 0;
  padding: 0;
}
/* Navbar */
.navbar {
  padding: 1rem 2rem;
  background-color: rgba(12, 35, 64, 0.9);
  z-index: 1030;
}

/* Demo Button */
.navbar .btn-demo {
  background: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

/* HERO SECTION WRAPPER */
.hero {
  position: relative;
  width: 100%;
  min-height: 50vh;       /* Adjust height */
  padding: 120px 0 80px;  /* Space for navbar + bottom spacing */
  display: flex;
  align-items: center;
  background-image: url("../graphics/Publish2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;         /* Default text color */
}
/* Optional dark overlay for readability */
.hero .content {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 15px;
  max-width: 600px;
}

/* BUTTON STYLE (Optional) */
.hero .btn-primary {
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 30px;
  margin-top: 25px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }

  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }

  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }

  .team .team-member .member-info .social {
    gap: 12px;
  }

  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}	
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: black;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: white;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: white;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 90%;
  margin: auto;
}



/* ===========================
   Feature & Benefit Boxes
   =========================== */
.feature {
  padding: 100px 0;
}	
.feature .features-grid {
  margin-top: 80px;
}	
.feature-box, .benefit-box {
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.feature-box .service-icon1 {
  width: 80px;
  height: 80px;
  background: #330080;  
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s ease-in-out;
}

.feature-box .service-icon1 i {
  font-size: 32px;
  color: white;
}	
	
.featuew-box .icon-wrapper i {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}	

.feature-box:hover,
.benefit-box:hover {
  transform: translateY(-3px); /* softer movement for mobile */
}

/* ===========================
   SMART DELIVERY LIST
   =========================== */
.delivery-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.delivery-list li {
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  padding: 50px 0;
  background: #f5f7fa;
}

.final-cta .btn {
  width: 100%;
  margin-bottom: 12px;
}

/* ============================================================
   MEDIA QUERIES — Scale Up for Tablets & Desktops
   ============================================================ */

/* Tablet (≥768px) */
@media (min-width: 768px) {

  .hero-section {
    text-align: left;
    padding: 120px 0;
  }

  .hero-section .btn {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .hero-img {
    max-width: 330px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
  }
}

/* Desktop (≥992px) */
@media (min-width: 992px) {

  .section-padding {
    padding: 90px 0;
  }

  .hero-section h1 {
    font-size: 2.6rem;
  }

  .hero-section p {
    font-size: 1.15rem;
  }

  .hero-img {
    max-width: 400px;
  }

  .feature-box,
  .benefit-box {
    padding: 35px;
  }
}

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}
	.why-us {
  padding: 5px 0;
}

.why-us .content {
  margin-bottom: 60px;
}

.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .content h2 {
    font-size: 2rem;
  }
}

.why-us .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}



.why-us .features-grid {
  margin-top: 20px;
}

.why-us .feature-item {
  display: flex;
  gap: 25px;
  padding: 40px 0;
  transition: transform 0.3s ease-in-out;
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .why-us .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 0;
  }
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #330080;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .why-us .icon-wrapper {
    margin: 0 auto;
  }
}

.why-us .feature-content {
  flex: 1;
}

.why-us .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .why-us .feature-content h3 {
    font-size: 1.25rem;
  }
}

.why-us .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 992px) {
  .why-us .content {
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .features-grid {
    margin-top: 60px;
  }
}
.btn-demo {
  background: #0c2340;
  color: #fff;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  border: 2px solid #fff;
  position: relative;
  z-index: 11;
}



