/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f9f9f9;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}



.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure the laser-marking card background applies */
.laser-marking {
  background-color: #ffdddd !important; /* Light red */
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease;
}

/* Optional: change text color inside this card */
.laser-marking-card h3 {
  color: #990000;
}

/* ====================================
   GLASSMORPHISM STICKY HEADER
==================================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px; /* adjust size */
  margin-right: 10px;
}

.company-name {
  font-size: 20px;
  font-weight: bold;
  color: #000; /* adjust color if needed */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}


header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Navigation */
nav ul.menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  color: #e63946;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-width: 180px;
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li a {
  display: block;
  padding: 12px 18px;
  color: #333;
  transition: background 0.3s;
}

.dropdown-content li a:hover {
  background: #f7f7f7;
  color: #e63946;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  padding: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-content .btn {
  background-color: #e63946;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}
.hero-content .btn:hover {
  background-color: #d62839;
}

/* About Section */
.about-preview {
  padding: 60px 0;
  text-align: center;
}
.about-preview h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
}
.about-preview .btn {
  background-color: #e63946;
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
}

/*services*/

.services-preview {
  padding: 60px 0;
  text-align: center;
}
.services-preview h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.services-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
}
.services-preview .btn {
  background-color: #e63946;
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
}

.products {
  padding: 60px 0;
  background-color: #fff;
}
.products h5 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;

}

.featured-products {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.featured-products h2 {
  color: #e60000;
  font-size: 32px;
  margin-bottom: 20px;
}

.products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 20px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.95rem;
  color: #555;
}
.products .btn {
  margin-top: 30px;
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 10px 26px;
  border-radius: 20px;
}


/* Modern Footer Style */
.site-footer {
  background-color: #121212;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-column {
  flex: 1 1 200px;
}
.logo-column .logo {
  color: #e60000;
  font-size: 24px;
  margin-bottom: 10px;
}
.footer-column h4 {
  color: #e60000;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #fff;
}
.footer-column p {
  font-size: 14px;
  margin-bottom: 10px;
}
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #e60000;
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #bbb;
}



/* Buttons and Links */
.btn {
  display: inline-block;
  background-color: #d10024; /* elegant red */
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover {
  background-color: #b3001c;
}

/* Contact & About Page Styles */
.about-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Input Styles */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  header .nav-container {
    flex-direction: column;
    text-align: center;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }
}

.laser-marking-card {
  background-image: url('images/laser.jpg'); /* Replace with your actual background image */
  background-size: cover;
  background-position: center;
  color: whitesmoke;
  position: relative;
  z-index: 1;
}

/* Optional: Add dark overlay for contrast */
.laser-marking-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
  border-radius: 10px;
}

.laser-marking-card * {
  position: relative;
  z-index: 2;
}

/*Our Services*/
.services-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #d6001c;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 40px;
  color: #d6001c;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}


.clients-section img {
  filter: none !important;
  transition: none !important;
  max-height: 100px;
  object-fit: contain;
}



/* Optional: red accent bar below title */
.clients-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #c40000; /* 🔴 red line */
  margin: 10px auto 0;
  border-radius: 2px;
}

.services{
  background-image: url('images/laser.jpg'); /* Update path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: white; /* Optional: use white text if image is dark */
}

/* General Reset & Fonts */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
  color: #c20023;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  color: #555;
}

/* Form Styles */
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  padding: 14px;
  background-color: #c20023;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a6001e;
}

/* Office Info Section */
.office-section {
  background-color: #fff;
  padding: 40px 20px;
}

.office-container {
  max-width: 900px;
  margin: auto;
}

.office-container h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.office-container p {
  margin: 6px 0;
  font-size: 16px;
}

.office-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-section {
  background-image: url('images/contact.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}


/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f9f9f9;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}



.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure the laser-marking card background applies */
.laser-marking {
  background-color: #ffdddd !important; /* Light red */
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease;
}

/* Optional: change text color inside this card */
.laser-marking-card h3 {
  color: #990000;
}

/* ====================================
   GLASSMORPHISM STICKY HEADER
==================================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
}

.logo {
  height: 45px;
  object-fit: contain;
  margin-right: 12px;
}

header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Navigation */
nav ul.menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  color: #e63946;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-width: 180px;
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li a {
  display: block;
  padding: 12px 18px;
  color: #333;
  transition: background 0.3s;
}

.dropdown-content li a:hover {
  background: #f7f7f7;
  color: #e63946;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  padding: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-content .btn {
  background-color: #e63946;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}
.hero-content .btn:hover {
  background-color: #d62839;
}

/* About Section */
.about-preview {
  padding: 60px 0;
  text-align: center;
}
.about-preview h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
}
.about-preview .btn {
  background-color: #e63946;
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
}

/*services*/

.services-preview {
  padding: 60px 0;
  text-align: center;
}
.services-preview h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.services-preview p {
  max-width: 800px;
  margin: 0 auto 20px;
}
.services-preview .btn {
  background-color: #e63946;
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
}

.products {
  padding: 60px 0;
  background-color: #fff;
}
.products h5 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;

}

.featured-products {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.featured-products h2 {
  color: #e60000;
  font-size: 32px;
  margin-bottom: 20px;
}

.products .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 20px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.95rem;
  color: #555;
}
.products .btn {
  margin-top: 30px;
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 10px 26px;
  border-radius: 20px;
}


/* Modern Footer Style */
.site-footer {
  background-color: #121212;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-column {
  flex: 1 1 200px;
}
.logo-column .logo {
  color: #e60000;
  font-size: 24px;
  margin-bottom: 10px;
}
.footer-column h4 {
  color: #e60000;
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #fff;
}
.footer-column p {
  font-size: 14px;
  margin-bottom: 10px;
}
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #e60000;
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #bbb;
}



/* Buttons and Links */
.btn {
  display: inline-block;
  background-color: #d10024; /* elegant red */
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover {
  background-color: #b3001c;
}

/* Contact & About Page Styles */




.about-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Input Styles */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  header .nav-container {
    flex-direction: column;
    text-align: center;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }
}

.laser-marking-card {
  background-image: url('images/laser.jpg'); /* Replace with your actual background image */
  background-size: cover;
  background-position: center;
  color: whitesmoke;
  position: relative;
  z-index: 1;
}

/* Optional: Add dark overlay for contrast */
.laser-marking-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
  border-radius: 10px;
}

.laser-marking-card * {
  position: relative;
  z-index: 2;
}

/*Our Services*/

.services {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.services .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d10024;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 2.5rem;
  color: #d10024;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.clients-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.clients-section h2 {
  font-size: 32px;
  color: #c40000; /* 🔴 red heading */
  margin-bottom: 10px;
}

.clients-section .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.swiper {
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Optional: red accent bar below title */
.clients-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #c40000; /* 🔴 red line */
  margin: 10px auto 0;
  border-radius: 2px;
}

.services{
  background-image: url('images/laser.jpg'); /* Update path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: white; /* Optional: use white text if image is dark */
}

/* General Reset & Fonts */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
  color: #c20023;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  color: #555;
}

/* Form Styles */
.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  padding: 14px;
  background-color: #c20023;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a6001e;
}

/* Office Info Section */
.office-section {
  background-color: #fff;
  padding: 40px 20px;
}

.office-container {
  max-width: 900px;
  margin: auto;
}

.office-container h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.office-container p {
  margin: 6px 0;
  font-size: 16px;
}

.office-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-section {
  background-image: url('images/contact.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* Grid Header Styling */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.header .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Logo / Title */
.header h1 {
  font-size: 22px;
  font-weight: 700;
}
.header h1 a {
  text-decoration: none;
  color: #b30000;
}

/* Navigation */
.nav-links {
  display: grid;
  grid-auto-flow: column;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #e63946;
  background-color: rgba(255, 255, 255, 0.4);
}


/* Navigation */
nav ul.menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

nav ul.menu li a:hover,
nav ul.menu li a.active {
  color: #e63946;
  background-color: rgba(255, 255, 255, 0.4);
}


/* product.html*/

.main-header {
  position: sticky;
  width: 100%;
  background:  rgba(255,255,255,0.6), 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 padding: 15px 0;
}

.header-overlay {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-width: 145px;
  height: auto;
}

.company-name {
  font-size: 1.2rem;
  margin: 0 20px;
  flex-grow: 1;
}

.company-name a {
  text-decoration: none;
  color: #333;
}

.menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.menu li a:hover,
.menu li a.active {
  background-color: #f06262;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}





/* Footer */
.site-footer {
  background-color: #000000;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4,
.footer-column h2 {
  margin-bottom: 15px;
  color: #b30000; /* Highlight color */
}

.footer-column p,
.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #fff;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/*about Us header*/

.about-header {
  background: url('images/lasermarking.png') center/cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-overlay {
  background: rgba(255, 255, 255, 0.1); /* subtle white tint */
  backdrop-filter: blur(8px); /* glass effect */
  padding: 2rem 3rem;
  border-radius: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-overlay h1 {
  font-size: 2.5rem;
  color: #d6001c; /* Red theme */
  margin-bottom: 0.5rem;
}

.about-overlay p {
  font-size: 1.1rem;
  color: #f5f5f5;
}

/*view all button*/

.view-all-btn-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    background-color: red;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: darkred;
}


body {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    font-family: 'Poppins', sans-serif;
}

section {
    padding: 60px 20px;
}

/* Hero Section */
.hero {
    background: url('your-industrial-texture.png') no-repeat center center/cover;
    color: #fff;
}

/* Services Section */
.services {
    background: #f7f7f7;
}

/* Featured Products */
.featured-products {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

/* Clients Section */
.clients {
    background: #f0f0f0;
}

/* Cards Style */
.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}




/* Gallery */
.gallery-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fdfdfd;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);

}

.gallery-heading {
  text-align: center;
  padding: 60px 20px 20px;
  background-color: #fff;
}

.gallery-heading h2 {
  font-size: 2.5rem;
  color: #d9232d;
  margin-bottom: 10px;
  font-weight: 700;
}

.gallery-heading p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-heading .divider {
  width: 80px;
  height: 4px;
  background-color: #d9232d;
  margin: 10px auto 20px;
  border-radius: 2px;
  animation: expandLine 1.2s ease-out;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-title {
  text-align: center;
 
  
  color: black;
  animation: fadeInDown 1s ease;
}

.page-title h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-title p {
  font-size: 1.2rem;
  opacity: 0.9;
}


.page-title h1 {
    background-image: url('images/gallery.png');
    height: 300px;
   
    background-size: cover;
    background-position: center;
    animation: fadeInDown 1s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

.header {
    background: linear-gradient(rgba(211, 47, 47, 0.85), rgba(211, 47, 47, 0.85)), url('images/gallery.png') center/cover no-repeat;
    text-align: center;
    padding: 6rem 2rem;
    color: white;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d32f2f;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.read-more:hover::after {
    width: 100%;
}

.blog-title {
  text-align: center;
  padding: 60px 20px 20px;
  background-color: #fff;
}

.blog-title h2 {
  font-size: 2.5rem;
  color: #d9232d;
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.blog-title .divider {
  width: 80px;
  height: 4px;
  background-color: #d9232d;
  margin: 10px auto 20px;
  border-radius: 2px;
  animation: expandLine 1.2s ease-out;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 4rem 1rem;
    }

    .blog-section {
        padding: 2rem 1rem;
    }
}

.contact-section {
  background-image: url('images/contact.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}


header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/*career*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.hero {
  background: #b30000 url('images/career.png') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}


.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #b30000;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff0f0;
}

.btn-secondary {
  background: #b30000;
  color: white;
}

.btn-secondary:hover {
  background: #a00000;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #f8f8f8;
}

.benefit-card {
  text-align: center;
  width: 150px;
}

.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

.jobs {
  padding: 60px 20px;
  text-align: center;
}

.job-listings {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.job-card {
  background: #fff6f6;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-10px);
}

.application {
  padding: 60px 20px;
  background: #f0f0f0;
  text-align: center;
}

.application form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.application input,
.application textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.application textarea {
  resize: vertical;
  height: 100px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #b30000;
  color: white;
}

.hero-heading {
  color: white; /* Change this to any color you like */
  font-size: 48px;
  font-weight: bold;
}


.job-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.job-card {
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.job-title {
  background: #f8f8f8;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.job-title .toggle-icon {
  float: right;
  font-size: 20px;
}

.job-title:hover {
  background-color: #e6e6e6;
}

.job-description {
  display: none;
  padding: 15px;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}


/*application form*/

.application-form-section {
  background: #fff8f8;
  padding: 60px 30px;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.application-form-container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.form-image {
  flex: 1;
  text-align: center;
}

.form-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.form-content {
  flex: 1;
}

.form-content h2 {
  font-size: 28px;
  color: #FF0000;
  margin-bottom: 8px;
}

.form-content p {
  font-size: 16px;
  color: #FF0000;
  margin-bottom: 20px;
}

.form-content form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  resize: vertical;
}

.file-upload {
  cursor: pointer;
  font-weight: 500;
  color: #e60000;
  background: #fff;
  padding: 10px 16px;
  border: 2px dashed #e60000;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.file-upload input {
  display: none;
}

.file-upload:hover {
  background-color: #ffeaea;
}

.form-content button {
  padding: 14px;
  background-color: #e60000;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-content button:hover {
  background-color: #b30000;
}

@media (max-width: 992px) {
  .application-form-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}

.application-form-section {
  background-image: url('images/application2.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.career-intro h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #333;
}

.career-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
}

.why-avtac h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #222;
}

.why-avtac p {
  color: #666;
  font-size: 14px;
}

/**/


.news-events-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c80000;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: left;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #222;
}

.event-date {
  font-size: 0.9rem;
  color: #999;
  margin: 0 15px 10px;
}

.event-description {
  font-size: 0.95rem;
  color: #444;
  margin: 0 15px 20px;
}

.read-more {
    display: inline-block;
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.read-more:hover::after {
    width: 100%;
}

/**News-letter**/

/* Blog Detail Section */
.blog-detail-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
}

.blog-detail-section h1 {
  font-size: 36px;
  color: #b10000;
  margin-bottom: 10px;
}

.blog-detail-section .subtext {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
}

.blog-main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.blog-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.blog-content ul li {
  padding: 6px 0;
  position: relative;
  padding-left: 24px;
}

.blog-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #b10000;
  font-weight: bold;
}

.blog-content strong {
  color: #222;
}

.download-button {
  display: inline-block;
  margin-top: 25px;
  background-color: #b10000;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #870000;
}


/* Book Style Newsletter */
body {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', serif;
  background-color: #f2f2f2;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.menu li a.active,
.menu li a:hover {
  color: #b10000;
}

/* Newsletter Section */
.newsletter-book {
  padding: 60px 20px;
}

.book-page {
  background: #fff;
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.book-page h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #b10000;
  margin-bottom: 10px;
}

.book-page .subtext {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.book-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.book-columns .column {
  width: 100%;
}

@media (min-width: 768px) {
  .book-columns {
    flex-direction: row;
  }

  .book-columns .column {
    width: 50%;
    padding: 0 20px;
  }
}

.newsletter-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropcap {
  float: left;
  font-size: 3rem;
  line-height: 1;
  margin-right: 10px;
  color: #b10000;
  font-weight: bold;
}

ul {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
}

.download-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #b10000;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.download-button:hover {
  background-color: #870000;
}


.blogs-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.blogs-section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.blog-quote {
  font-style: italic;
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}


.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
  justify-items: center;
}

.blog-hero {
  position: relative;
  background: url('images/carrer7.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.blog-hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  background: #f5f5f5;
}

.blog-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.card-content p {
  font-size: 1rem;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

.event-details {
      max-width: 1000px;
      margin: 80px auto;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      font-family: 'Segoe UI', sans-serif;
    }
    .event-details img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .event-details h1 {
      color: #c00;
      margin-bottom: 10px;
    }
    .event-details p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
    }
  .event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .event-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

.event-header {
  background-image: url('images/aml.jpg'); /* Replace with your uploaded image path */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
}

.event-header h1 {
  font-size: 42px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

