body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 0;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  /* max-width: 500px; */
  margin: auto;
  /* background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 15px;
  color: #444;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"] {
  margin-top: 25px;
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #343a40;
  color: white;
  padding: 16px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.main-nav a {
  color: white;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #f0f0f0;
}

.hero-section {
  background: #f0f4ff;
  text-align: center;
  padding: 100px 20px;
}

.hero-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.hero-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* .services-cards{
  background-color: #f0f3ff;
} */
.btn-primary {
  background-color: #368CDA;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #0056b3;
}

section {
  padding: 60px 20px;
}


.services-section,
.why-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f0f3ff;
}

.service-boxes {
  display: grid;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

/* Why Us */
.why-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-list li {
  font-size: 16px;
  margin-bottom: 12px;
  text-align: left;
  padding-left: 20px;
  position: relative;
}


.cta-section {
  background-color: #262d34;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.cta-section .btn-primary {
  width: 200px;
  margin: 5px;
}


.site-footer {
  background-color: #f1f1f1;
  padding: 20px 0;
  text-align: center;
  color: #333;
  font-size: 14px;
}

/* Hamburger menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.page-hero {
  text-align: center;
  padding: 40px 20px 40px;
  background-color: #f8f9fc;
}

.page-hero h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  color: #666;
}

.pricing-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  max-width: 1000px;
  
}

.pricing-card {
  background: white;
  flex: 1 1 30%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 22px;
  color: #3a3e42;
}

.pricing-card .price {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin: 12px 0 20px;
}

.pricing-card .btn-secondary {
  width: 200px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
}

/* .pricing-card.popular {
  border: 2px solid #007bff;
  transform: scale(1.02);
} */

.pricing-card.custom {
  background: linear-gradient(145deg, #e8f1ff, #ffffff);
  border: 1px dashed #007bff;
}






.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  flex: 1 1 calc(33.333% - 30px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-item h4 {
  font-size: 18px;
  margin: 16px 16px 8px;
  color: #007bff;
}

.portfolio-item p {
  font-size: 14px;
  margin: 0 16px 16px;
  color: #666;
}

.blog-list-section {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post-card {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
}

.blog-post-card img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
}

.blog-content h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #007bff;
  font-weight: 500;
}

.blog-post-header {
  padding: 60px 20px 20px;
  text-align: center;
  background: #f4f6fa;
}

.featured-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.blog-post-header h1 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.post-meta {
  color: #777;
  font-size: 14px;
}

.blog-post-content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.blog-post-content h3 {
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-post-content p {
  color: #444;
  margin-bottom: 20px;
}

.main-nav a.active {
  border-bottom: 2px solid white;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding: 20px 0;
  /* added padding around the grid */
}





.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: #0056b3;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.alt-bg {
  background-color: #f8f9fc;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px;
}



.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  /* will-change: transform;
  position: relative; 
  margin-bottom: 10px; */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
  margin-bottom: 10px;
  color: #007bff;
}

.service-card p {
  color: #666;
  font-size: 15px;
}


.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #f2f2f2;
  padding: 10px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #454b52
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card {
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.why-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 18px;
  color: #454b52;
  margin-bottom: 10px;
}

.why-card p {
  color: #555;
  font-size: 15px;
}

.hero-bg {
  background: url('../images/hero-bg.jpg') center center/cover no-repeat;
  position: relative;
  padding: 0px;
  color: #333;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
  padding: 100px 100px;
  text-align: center;
  margin: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1; /* keeps text above floating dots */
}

.hero-overlay h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e9e5e5;
}

.hero-overlay p {
  font-size: 18px;
  color: #e9e4e4;
  margin-bottom: 30px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse-button {
  animation: pulse 2s ease-in-out infinite;
}



.tagline {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
  font-style: italic;
}

.contactus{
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 100px;
}

.pricing-table-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

/* Base table style */
.pricing-table {
  /* width: 100%; */
  border-collapse: collapse;
  margin: 30px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table thead tr {
  background-color: #1e88e5;
  color: #ffffff;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.pricing-table tbody tr:hover {
  background-color: #f1faff;
}

.logoimage {
  width: 160px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
}


.medium-container {
  width: 80%;
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.medium-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.medium-container label {
  display: block;
  margin-top: 15px;
  color: #444;
  font-weight: 500;
}

.medium-container input[type="email"],
.medium-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.medium-container input[type="submit"],
.medium-container button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.medium-container input[type="submit"]:hover,
.medium-container button[type="submit"]:hover {
  background-color: #0056b3;
}

.medium-container p {
  text-align: center;
  margin-top: 20px;
}

.medium-container p a {
  color: #007bff;
  text-decoration: none;
}

.medium-container p a:hover {
  text-decoration: underline;
}

.medium-container .error {
  color: red;
  text-align: center;
  margin-top: 10px;
}

.dashboard-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  padding: 10px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #333;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 160px;
}

.dropdown-menu a {
  color: white;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.alert {
  padding: 15px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.alert-success {
  background-color: #e6ffed;
  color: #218838;
  border: 1px solid #b8f1c2;
}

.alert-error {
  background-color: #ffe6e6;
  color: #c82333;
  border: 1px solid #f5c6cb;
}


.order-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-table th,
.order-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.order-table th {
  background-color: #1e3a8a;
  color: white;
}

.order-table tr:hover {
  background-color: #f1f5f9;
}

.action-btn {
  padding: 6px 12px;
  background: #1e40af;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9em;
  text-decoration: none;
}

.action-btn:hover {
  background: #1e3a8a;
  cursor: pointer;
}

.videoIframeDiv {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    text-align: center;
    margin: auto;
    margin-bottom: 100px;
}

.videoIframeDiv iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}