: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/SampleHero.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;
}
/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
.introduction {
  padding-top: 50px;
  padding-bottom: 50px;	
  background-color: var(--light-gray);
  font-family: var(--heading-font);
}

.introduction .content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
	.introduction {
	  padding-top: 50px;
      padding-bottom: 50px;		
	}	
	.introduction .content h2 {
    font-size: 32px;
  }
}

.introduction .content .lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(51, 51, 51, 0.85);
}

.introduction .content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--default-color);
}
.introduction .delivery-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.delivery-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
}


/* Card Styles */
.Sample {
  padding-top: 50px;
  padding-bottom: 50px;	
  background-color: white;
  font-family: var(--heading-font);
}

.ad-card {
	background-color: rgba(0, 68, 85, .70);	
    border: none;
    border-radius: 18px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
	text-align: center;	
    }

.ad-card2 {
	background: #666666ff;
    border: none;
    border-radius: 18px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
	text-align: center;	
    }

    .ad-card:hover {
      transform: translateY(-6px);
    }

    .ad-card img {
	  margin-top: 25px;	
      height: 50%;
	  height: auto;
      display: block;
	  align-self: center;	
    }
    .ad-card2 img {
	  margin-top: 25px;	
      height: 50%;
	  height: auto;
      display: block;
	  align-self: center;	
    }

    .ad-title {
	  color: whitesmoke;	
      font-weight: 700;
      font-size: 1.1rem;
    }

    .ad-description {
	  font-size: 0.95rem;
      color: whitesmoke;
    }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: black;
  font-size: 14px;
  padding-top: 50px;	
  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;
}