:root {
    --primary-color: #222831;
  --secondary-color: #393e46;
  --accent-color: #00adb5;
  --highlight-color: #eeeeee;
  --background-color: #222831;
  --light-bg-color: #393e46;
  --text-color: #eeeeee;
  --button-color: #00adb5;
  --hover-color: #eeeeee;
}
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* Normal weight */
}
h1, h2 {
  font-weight: 500; /* Light bold */
  font-size: 5vw; 
}
p, h3 {
  font-size: 4vw;
}
/* Header styling */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--light-bg-color);
  background-color: var(--primary-color);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 150px; /* Starting max-width for desktop screens */
  height: auto; /* Keeps the image proportional */
  transition: max-width 0.3s ease; /* Smooth resizing transition */
}

.navbar ul {
  display: flex;
  list-style: none;
}
.navbar ul li {
  display: flex; /* Ensures alignment of all items, including the icon */
  align-items: center; /* Centers content vertically */
  margin: 0 8px; /* Consistent spacing */
}
.navbar ul li a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--text-color);
  /* Adjusted color */
  font-weight: bold;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  padding: 5px 7px;
}
.navbar ul li a:hover {
color: var(--accent-color); /* Hover color */
border-color: var(--hover-color); /* Border color on hover */
}
.language-icon {
  display: inline-flex; /* Inline-flex for better alignment with text */
  align-items: center; /* Vertically center the icon */
  justify-content: center; /* Centers the content horizontally */
}
.language-icon img {
  width: 30px; /* Adjust icon size */
  height: auto; /* Maintain aspect ratio */
  margin: 0; /* Remove any extra spacing */
}

/* Main content styling */
main {
  text-align: center;
  padding: 60px 20px;
}
.design {
  text-align: center;
  padding: 20px 20px;
}

h1 {
  font-size: 2em;
  color: var(--accent-color);
  /* Adjusted color */
  margin-bottom: 20px;
}

.intro-text, .description, .note{
  font-size: 1em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: var(--background-color);
  margin-top: 20px;
}

/* Responsive Navbar */
#nav-icon2 {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
  margin: 0 10px;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--highlight-color);
  /* Adjusted color */
  border-radius: 9px;
  opacity: 1;
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(1) {
  top: 0px;
}

#nav-icon2 span:nth-child(2) {
  top: 8px;
}

#nav-icon2 span:nth-child(3) {
  top: 16px;
}

#nav-icon2 span:nth-child(4) {
  top: 24px;
}

#nav-icon2.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

#nav-icon2.open span:nth-child(2) {
  transform: rotate(-45deg);
  top: 8px;
}

#nav-icon2.open span:nth-child(3),
#nav-icon2.open span:nth-child(4) {
  opacity: 0;
}

@media (max-width: 768px) {
  .navbar ul {
      display: none;
  }

  #nav-icon2 {
      display: block;
  }

  .navbar ul.open {
      display: block;
      position: absolute;
      top: 70px;
      left: 0;
      background-color: var(--background-color);
      /* Adjusted color */
      width: 100%;
      padding: 10px;
  }

  .navbar ul li {
      margin: 10px 0;
      text-align: center;
      justify-content: center;
  }
}

/* General Section Styling */
.yearly-calendars {
  text-align: center;
  padding: 2rem;
}

.yearly-calendars h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.yearly-calendars p {
  font-size: 1.1em;
  color: var(--button-color);
  /* Adjusted color */
  margin-bottom: 2rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.card2 {
  display: block;
  max-width: 262px;
  background-color: var(--light-bg-color); /* Semi-transparent color */
  border-radius: 8px;
  padding: 32px 24px;
  margin: 12px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid var(--button-color); /* Lighter border with transparency */
  position: relative;
  transition: all 0.3s ease-out;
  backdrop-filter: blur(10px); /* Blur effect for glass look */
  -webkit-backdrop-filter: blur(10px); /* Support for Safari */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}
.card2 h3{
  color: var(--text-color);
}

.card2:hover {
  box-shadow: 0px 6px 18px rgba(38, 38, 38, 0.4);
  transform: translateY(-4px);
  border: 1px solid rgba(125, 255, 255, 0.5); /* Enhanced border on hover */
  background: rgba(255, 255, 255, 0.2); /* Slightly lighter on hover */
}
.card2:hover h3 {
  color: var(--primary-color); /* Change h3 text color to primary color on hover */
}

.card2:hover:before {
  transform: scale(2.15);
}

/* Image Preview Styling */
.image-preview {
  background-color: var(--accent-color);
  /* Adjusted color */
  
  border-radius: 8px;
  margin-bottom: 16px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Download Button Styling */
.download-btn {
  padding: 10px 20px;
  font-size: 1em;
  background-color: var(--button-color);
  color: var(--highlight-color);
  /* Adjusted color */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
background-color: var(--primary-color);
  /* Adjusted color */
}

/* Note Section Styling */
.note-section {
  text-align: center;
  padding: 2rem 1rem;
}

.note-box {
background-color: var(--background-color);
  /* Adjusted color */
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.note-title {
  display: inline-block;
  background-color: var(--button-color);
  /* Adjusted color */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
}

.note-box p {
color: var(--text-color);
  /* Adjusted color */
  margin: 0.5rem 0;
}

.share-section {
  text-align: center;
  margin: 1rem 0;
}

.share-section p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.share-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 25px;
}

.share-icon:hover {
  
  /* Adjusted color */
  transform: scale(1.1); /* Zoom effect on hover */
}

/* Footer Styling */
.footer {
background-color: var(--button-color);
  /* Adjusted color */
  color: var(--text-color);
  padding: 1rem;
  text-align: center;
}

.footer-content nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-content nav a {
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  padding: 5px 8px;
}

.footer-content nav a:hover {
color: var(--hover-color); /* Hover color */
border-color: var(--highlight-color); /* Border color on hover */
}
.g-recaptcha{
  margin-bottom: 7px;
}
/* Contact Form Styling */
.contact-us {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  text-align: center;
}

.contact-us h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #666;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3c096c;
}

.submit-btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}
/* Styling the container and text */
.language-section {
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

.language-title {
  background-color: var(--accent-color); /* Your preferred color */
  color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 24px;
}

.language-title i {
  margin-left: 10px;
}

/* Language links styling */
.language-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.language-links a {
  font-size: 18px;
  color: black;
  text-decoration: none;
  padding: 5px 10px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hover effect for links */
.language-links a:hover {
  color: var(--accent-color); /* Hover color */
  border-color: var(--accent-color); /* Border color on hover */
}

/* Specific styling for the selected language */
.language-links {
  color: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: bold;
}

/* Ad Container Styles */
.ad-container {
  width: 100%;
  max-width: 1024px;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.ad-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.ad-slot::before {
  content: "Advertisement";
  display: block;
}


/* Desktop Styles (728x90 or larger) */
@media screen and (min-width: 728px) {
  .ad-slot {
      width: 728px;
      height: 90px;
      margin: 4px 4px;
  }
  .ad-slot::before {
      content: "Advertisement (728x90)";
  }
}

/* Tablet Styles (468x60) */
@media screen and (min-width: 468px) and (max-width: 727px) {
  .ad-slot {
      width: 468px;
      height: 60px;
  }
  .ad-slot::before {
      content: "Advertisement (468x60)";
  }
}

/* Mobile Styles (320x50 or 300x250) */
@media screen and (max-width: 467px) {
  .ad-slot {
      width: 300px;
      height: 250px;
      
  }
  .ad-slot::before {
      content: "Advertisement (300x250)";
      
  }
  
  /* For smaller mobile screens */
  @media screen and (max-height: 600px) {
      .ad-slot {
          width: 320px;
          height: 50px;
          
      }
      .ad-slot::before {
          content: "Advertisement (320x50)";
      }
  }
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('woff2');
  font-weight: 400; /* Normal weight */
  font-display: swap;
}

/* Define semi-bold weight */
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.ttf') format('woff2');
  font-weight: 500; /* Light bold */
  font-display: swap;
}
/* Responsive Design */
@media (max-width: 600px) {
  .contact-us {
      padding: 15px;
  }
}

/* Adjust for tablets (e.g., 768px and below) */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    
  }
}
/* Styles for mobile devices (e.g., 480px and below) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
    
  }
}  
/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem !important;  /* Reduce font size for mobile */
    text-align: center; /* Center-align for small screens */
    margin-top: 10px;   /* Reduce top margin for compact view */
  }
} 
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Responsive adjustments */
/* Tablet (max-width: 768px) */
@media (max-width: 768px) { 
  .logo img {
      max-width: 120px;  /* Smaller logo for tablets */
      max-height: 60px;  /* Adjust max height for a more compact display */
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo img {
      max-width: 100px;  /* Even smaller logo for mobile devices */
      max-height: 50px;  /* Reduced height for very small screens */
  }
}
@media (min-width: 768px) {
  h2 {
      font-size: 2rem;
  }
  p, h3 {
      font-size: 1rem;
  }
}