
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
 
  background-color: #f9f9f9;
}
@font-face {
  font-family: 'CustomFont';
  src: url('custom-font.woff2') format('woff2');
  font-display: swap;
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  padding: 1rem 2rem;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar .menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .menu a {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.navbar .menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar .search-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 0.3rem 0.5rem;
}

.navbar .search-bar {
  border: none;
  outline: none;
  padding: 0.5rem;
  border-radius: 20px;
  width: 150px;
}

.navbar .search-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.navbar .btn {
  background: #ff7eb3;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.navbar .btn:hover {
  background: #ff5c9c;
}

/* Toolbar Styles */
.toolbar {
  background: white;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.toolbar-item {
  position: relative;
}

.toolbar-item .dropdown-toggle {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.toolbar-item .dropdown-toggle:hover {
  color: #6a11cb;
}

.toolbar-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
}

.toolbar-item .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  transition: background-color 0.3s;
}

.toolbar-item .dropdown-menu a:hover {
  background: #f0f0f0;
}

.toolbar-item:hover .dropdown-menu {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    padding: 1rem 0;
  }

  .navbar .menu a {
    text-align: center;
    margin: 0.5rem 0;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .menu.active {
    display: flex;
  }

  .toolbar-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolbar-item {
    width: 100%;
  }

  .toolbar-item .dropdown-menu {
    position: relative;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .navbar .search-bar {
    width: 300px;
  }
}








/* Mobile Toolbar Enhancements */
@media (max-width: 768px) {
  .toolbar {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    padding: 10px;
    border-top: 1px solid #ddd;
  }

  .toolbar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .toolbar-item {
    position: relative;
    list-style: none;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px;
    font-size: 1rem;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
  }

  .dropdown-toggle:hover,
  .dropdown-toggle:focus {
    background: #f0f0f0;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 10;
  }

  .toolbar-item.active .dropdown-menu {
    display: flex;
  }

  .dropdown-item {
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background-color: #f9f9f9;
  }
}



/* Home Section Styles */
.home-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, #f9f9f9, #e6e6e6);
  padding: 3rem;
  color:  #201e1e;;
}

.home-content {
  max-width: 50%;
}

.home-content h1 {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 1rem;
}

.home-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background: #6a11cb;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background: #2575fc;
}

.home-image {
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .home-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1rem;
  }

  .home-image {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .home-image {
    max-width: 90%;
  }
}

/* images main screen css */

  #image-tools {
    padding: 50px;
    background-color: #1e293b;
    color: #fff;
    text-align: center;
  }

  #image-tools h2 {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 1rem;
  }

  #image-tools p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #94a3b8;
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .tool-card {
    background: linear-gradient(to right, #334155, #1e293b);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Needed for NEW label */
  }

  .tool-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(to right, #475569, #334155);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }

  .tool-card h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #6d28d9;
    text-align: center;
  }

  .tool-card p {
    font-size: 1rem;
    color: #cbd5e1;
    text-align: center;
  }

  .tool-icon {
    width: 90px; /* Increased size */
    height: 90px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #f8f9f7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem; /* Scaled icons */
    color: #6d28d9;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    #image-tools h2 {
      font-size: 2rem;
    }

    #image-tools p {
      font-size: 1rem;
    }

    .tool-card h3 {
      font-size: 1.25rem;
    }

    .tool-card p {
      font-size: 0.9rem;
    }

    .tool-icon {
      width: 60px;
      height: 60px;
      font-size: 2.5rem;
    }
  }

  @media (max-width: 480px) {
    #image-tools {
      padding: 30px;
    }

    .tool-card {
      padding: 15px;
    }

    .tool-card h3 {
      font-size: 1.2rem;
    }

    .tool-card p {
      font-size: 0.85rem;
    }

    .tool-icon {
      width: 55px;
      height: 55px;
      font-size: 2rem;
    }
  }

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #image-tools {
    padding: 40px;
  }

  #image-tools h2 {
    font-size: 2.2rem;
  }

  #image-tools p {
    font-size: 1.05rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusting grid for tablets */
    gap: 25px;
  }

  .tool-card {
    padding: 18px;
  }

  .tool-card h3 {
    font-size: 1.4rem;
  }

  .tool-card p {
    font-size: 0.95rem;
  }

  .tool-icon {
    width: 75px;
    height: 75px;
    font-size: 2.8rem;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  #image-tools {
    padding: 30px;
  }

  #image-tools h2 {
    font-size: 1.8rem;
  }

  #image-tools p {
    font-size: 1rem;
  }

  .tools-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }

  .tool-card {
    padding: 15px;
  }

  .tool-card h3 {
    font-size: 1.3rem;
  }

  .tool-card p {
    font-size: 0.9rem;
  }

  .tool-icon {
    width: 65px;
    height: 65px;
    font-size: 2.5rem;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  #image-tools {
    padding: 20px;
  }

  #image-tools h2 {
    font-size: 1.6rem;
  }

  .tool-card {
    padding: 12px;
  }

  .tool-card h3 {
    font-size: 1.2rem;
  }

  .tool-card p {
    font-size: 0.85rem;
  }

  .tool-icon {
    width: 55px;
    height: 55px;
    font-size: 2rem;
  }
}

  /* pdf tools css */
/* General Section Styles */
#pdf-tools {
  padding: 40px;
  background-color: #1e293b;
  color: #ffffff;
  text-align: center;
}

#pdf-tools h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6a11cb;
}

#pdf-tools p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* Tools Category Grid */
.tools-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Individual Tool Category */
.tool-category {
  background: linear-gradient(to right, #334155, #1e293b);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.tool-category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #6d28d9;
  text-transform: uppercase;
}

/* Tool Box Styles */
.tool-box {
  background: #2d3748;
  border: 2px solid #6d28d9;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.tool-box:hover {
  background-color: #4c51bf;
  color: #ffffff;
  transform: scale(1.05);
}

.tool-box a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.tool-box a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #pdf-tools h2 {
    font-size: 2rem;
  }

  #pdf-tools p {
    font-size: 0.9rem;
  }

  .tool-category h3 {
    font-size: 1.2rem;
  }

  .tool-box {
    font-size: 0.9rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  #pdf-tools {
    padding: 20px;
  }

  .tool-category {
    padding: 15px;
  }

  .tool-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #pdf-tools {
    padding: 35px;
  }

  #pdf-tools h2 {
    font-size: 2.2rem;
  }

  #pdf-tools p {
    font-size: 1rem;
  }

  .tools-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusting grid for tablets */
    gap: 25px;
  }

  .tool-category {
    padding: 18px;
  }

  .tool-category h3 {
    font-size: 1.4rem;
  }

  .tool-box {
    font-size: 0.95rem;
    padding: 14px;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  #pdf-tools {
    padding: 30px;
  }

  #pdf-tools h2 {
    font-size: 1.8rem;
  }

  #pdf-tools p {
    font-size: 0.95rem;
  }

  .tools-category-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }

  .tool-category {
    padding: 16px;
  }

  .tool-category h3 {
    font-size: 1.3rem;
  }

  .tool-box {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  #pdf-tools {
    padding: 20px;
  }

  #pdf-tools h2 {
    font-size: 1.6rem;
  }

  .tool-category {
    padding: 14px;
  }

  .tool-category h3 {
    font-size: 1.2rem;
  }

  .tool-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}


 /* Social Media Tools Styles */
  #social-media-tools {
    padding: 40px;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
  }

  #social-media-tools h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6a11cb;
  }

  #social-media-tools p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 30px;
  }

  .tools-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .tool-category {
    background: linear-gradient(to right, #334155, #1e293b);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .tool-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6d28d9;
    text-transform: uppercase;
  }

  .tool-box {
    background: #2d3748;
    border: 2px solid #6d28d9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative; /* Needed for NEW label */
  }

  .tool-box:hover {
    background-color: #4c51bf;
    color: #ffffff;
    transform: scale(1.05);
  }

  .tool-box a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .tool-box a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    #social-media-tools h2 {
      font-size: 2rem;
    }

    #social-media-tools p {
      font-size: 0.9rem;
    }

    .tool-category h3 {
      font-size: 1.2rem;
    }

    .tool-box {
      font-size: 0.9rem;
      padding: 12px;
    }
  }

  @media (max-width: 480px) {
    #social-media-tools {
      padding: 20px;
    }

    .tool-category {
      padding: 15px;
    }

    .tool-box {
      font-size: 0.85rem;
      padding: 10px;
    }
  }

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #social-media-tools {
    padding: 35px;
  }

  #social-media-tools h2 {
    font-size: 2.2rem;
  }

  #social-media-tools p {
    font-size: 1rem;
  }

  .tools-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid for tablets */
    gap: 25px;
  }

  .tool-category {
    padding: 18px;
  }

  .tool-category h3 {
    font-size: 1.4rem;
  }

  .tool-box {
    font-size: 0.95rem;
    padding: 14px;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  #social-media-tools {
    padding: 30px;
  }

  #social-media-tools h2 {
    font-size: 1.8rem;
  }

  #social-media-tools p {
    font-size: 0.95rem;
  }

  .tools-category-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .tool-category {
    padding: 16px;
  }

  .tool-category h3 {
    font-size: 1.3rem;
  }

  .tool-box {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  #social-media-tools {
    padding: 20px;
  }

  #social-media-tools h2 {
    font-size: 1.6rem;
  }

  .tool-category {
    padding: 14px;
  }

  .tool-category h3 {
    font-size: 1.2rem;
  }

  .tool-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}


  /* QR Code Tools Styles */
#qr-code-tools {
  padding: 40px;
  background-color: #1e293b;
  color: #ffffff;
  text-align: center;
}

#qr-code-tools h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #6d28d9;
  text-transform: uppercase;
}

#qr-code-tools .tool-box {
  background: #2d3748;
  border: 2px solid #6d28d9;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#qr-code-tools .tool-box:hover {
  background-color: #4c51bf;
  color: #ffffff;
  transform: scale(1.05);
}

#qr-code-tools .tool-box a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

#qr-code-tools .tool-box a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #qr-code-tools h3 {
    font-size: 1.2rem;
  }

  #qr-code-tools .tool-box {
    font-size: 0.9rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  #qr-code-tools {
    padding: 20px;
  }

  #qr-code-tools .tool-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #qr-code-tools {
    padding: 35px;
  }

  #qr-code-tools h3 {
    font-size: 1.4rem;
  }

  #qr-code-tools .tool-box {
    font-size: 0.95rem;
    padding: 14px;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  #qr-code-tools {
    padding: 30px;
  }

  #qr-code-tools h3 {
    font-size: 1.3rem;
  }

  #qr-code-tools .tool-box {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  #qr-code-tools {
    padding: 20px;
  }

  #qr-code-tools h3 {
    font-size: 1.2rem;
  }

  #qr-code-tools .tool-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}



#study-materials {
  padding: 60px;
  background-color: #f3f4f6; /* Light gray */
  color: #111827; /* Dark gray for text */
  text-align: center;
  border-top: 5px solid #6a11cb; /* Purple border */
}

#study-materials h2 {
  font-size: 2.8rem;
  color: #4f46e5; /* Deep Indigo */
  margin-bottom: 1.2rem;
}

#study-materials p {
  font-size: 1.1rem;
  color: #374151; /* Neutral gray text */
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Styling for the button highlight container */
.button-highlight {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  text-align: center;
}

/* Style for the button */
.btn {
  background-color: #007bff;
  margin-bottom: 20px;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the button */
.btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
}

/* Styling for the highlight text label */
.highlight-text {
  position: absolute;
  top: -30px;  /* Position the label above the button */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff9800;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  animation: fadeInOut 2s infinite;  /* Add a pulsating effect */
  z-index: 1;
}

/* Fade in and out effect for the highlight text */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Emojis container styling */
.emoji-container {
  font-size: 32px;
  animation: bounceEmojis 1.5s infinite; /* Emoji bounce animation */
  margin-bottom: 20px;  /* Increased gap between the button and emojis */
  display: block;  /* Make the emojis appear above the button */
}

/* Bounce animation for the emojis */
@keyframes bounceEmojis {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Emojis move up */
  }
}


/* resumemaker */
#resume-maker {
  padding: 60px;
  background-color: #f3f4f6; /* Light gray */
  color: #111827; /* Dark gray for text */
  text-align: center;

}

#resume-maker h2 {
  font-size: 2.8rem;
  color: #4f46e5; /* Deep Indigo */
  margin-bottom: 1.2rem;
}

#resume-maker p {
  font-size: 1.1rem;
  color: #374151; /* Neutral gray text */
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Styling for the button highlight container */
.button-highlight {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  text-align: center;
}

/* Style for the button */
.btn {
  background-color: #007bff;
  margin-bottom: 20px;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the button */
.btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
}

/* Emojis container styling */
.emoji-container {
  font-size: 32px;
  animation: bounceEmojis 1.5s infinite; /* Emoji bounce animation */
  margin-bottom: 20px; /* Increased gap between the button and emojis */
  display: block; /* Make the emojis appear above the button */
}

/* Bounce animation for the emojis */
@keyframes bounceEmojis {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Emojis move up */
  }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  #study-materials, #resume-maker {
    padding: 50px;
  }

  #study-materials h2, #resume-maker h2 {
    font-size: 2.5rem;
  }

  #study-materials p, #resume-maker p {
    font-size: 1rem;
  }

  .btn {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  #study-materials, #resume-maker {
    padding: 40px;
  }

  #study-materials h2, #resume-maker h2 {
    font-size: 2.2rem;
  }

  #study-materials p, #resume-maker p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .highlight-text {
    font-size: 13px;
    top: -25px;
  }

  .emoji-container {
    font-size: 28px;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  #study-materials, #resume-maker {
    padding: 30px;
  }

  #study-materials h2, #resume-maker h2 {
    font-size: 2rem;
  }

  #study-materials p, #resume-maker p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  .highlight-text {
    font-size: 12px;
    top: -20px;
  }

  .emoji-container {
    font-size: 26px;
  }
}



/* Pop-Up Modal */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 420px; /* Increase width slightly */
  width: 90%;
  position: relative;
}

/* Headings */
.popup-content h2 {
  color: #4f46e5;
  font-size: 15px;
  margin-bottom: 10px;
}

/* Paragraphs */
.popup-content p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 12px;
}

/* Buttons */
.popup-content .popup-btn {
  display: block;
  width: 80%;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  margin: 10px auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

.popup-content .popup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.popup-close-btn:hover {
  color: #ff0000;
}

/* Separator Line */
hr {
  margin: 15px 0;
  border: 0.5px solid #ddd;
}

/* 📌 Responsive Adjustments */
@media (min-width: 1024px) {
  .popup-content {
    max-width: 400px; /* Keep it balanced */
    padding: 25px;
  }
}

@media (max-width: 1023px) {
  .popup-content {
    max-width: 380px;
    padding: 20px;
  }

  .popup-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 90%;
    padding: 18px;
  }

  .popup-content h2 {
    font-size: 1.2rem;
  }

  .popup-content .popup-btn {
    width: 80%;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .popup-content {
    max-width: 95%;
    padding: 15px;
  }

  .popup-content h2 {
    font-size: 1.1rem;
  }

  .popup-content .popup-btn {
    padding: 8px;
    font-size: 0.8rem;
  }
}




/* Advantages Section */
.advantages {
  padding: 50px;
  background: #1e293b;/* Light gradient background */
  text-align: center;
}

.advantages h2 {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 2rem;
}

.advantage-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  background: linear-gradient(to right, #475569, #334155); /* Dark gradient background for cards */
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out; /* Smooth transition on hover */
  text-align: center;
  transform: scale(1); /* Initial scale */
}

.advantage-item:hover {
  background: linear-gradient(to right, #6a11cb, #2575fc); /* Lighter gradient on hover */
  transform: scale(1.05); /* Slight scale up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Increase shadow */
}

.advantage-item i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  transition: color 0.3s ease;
}

.advantage-item:hover i {
  color: #ff5c9c; /* Change icon color on hover */
}

.advantage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.advantage-item p {
  font-size: 1rem;
  color: #d1d5db; /* Lighter text color */
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .advantages h2 {
    font-size: 2rem;
  }

  .advantage-container {
    grid-template-columns: 1fr 1fr; /* 2 columns for medium screens */
  }
}

@media (max-width: 480px) {
  .advantage-container {
    grid-template-columns: 1fr; /* 1 column for smaller screens */
  }

  .advantages h2 {
    font-size: 1.6rem;
  }

  .advantage-item {
    padding: 20px;
  }
}

/*Animations*/
/* Keyframe for bottom to top animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px); /* Starts below the screen */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Ends at its normal position */
  }
}

/* Apply the animation when the section is in view */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px); /* Default position for animation */
  animation-fill-mode: forwards;
}

[data-scroll="slideUp"] {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px); /* Default hidden position */
  animation-fill-mode: forwards;
}

[data-scroll="fadeIn"] {
  animation-name: fadeIn;
}

[data-scroll="slideInLeft"] {
  animation-name: slideInLeft;
}

[data-scroll="slideInRight"] {
  animation-name: slideInRight;
}

/* Keyframe for bottom-to-top fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); /* Starts from below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Ends at its normal position */
  }
}

/* Apply the fade-in effect */
.scroll-animate {
  opacity: 0; /* Initially hidden */
  transform: translateY(30px); /* Starts below the screen */
  animation-fill-mode: forwards; /* Keeps the final state after animation */
}

[data-scroll="fadeInUp"] {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}


/* Apply the fade-in effect */
.scroll-animate {
  opacity: 0; /* Initially hidden */
  transform: translateY(30px); /* Starts below the screen */
  animation-fill-mode: forwards; /* Keeps the final state after animation */
}

[data-scroll="fadeInUp"] {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .advantages {
    padding: 40px;
  }

  .advantages h2 {
    font-size: 2.2rem;
  }

  .advantage-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusting grid */
    gap: 25px;
  }

  .advantage-item {
    padding: 25px;
  }

  .advantage-item h3 {
    font-size: 1.4rem;
  }

  .advantage-item p {
    font-size: 0.95rem;
  }
}

/* Large Mobiles (max-width: 640px) */
@media (max-width: 640px) {
  .advantages {
    padding: 30px;
  }

  .advantages h2 {
    font-size: 1.8rem;
  }

  .advantage-container {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }

  .advantage-item {
    padding: 20px;
  }

  .advantage-item h3 {
    font-size: 1.3rem;
  }

  .advantage-item p {
    font-size: 0.9rem;
  }
}

/* Small Mobiles (max-width: 400px) */
@media (max-width: 400px) {
  .advantages {
    padding: 20px;
  }

  .advantages h2 {
    font-size: 1.5rem;
  }

  .advantage-item {
    padding: 15px;
  }

  .advantage-item h3 {
    font-size: 1.2rem;
  }

  .advantage-item p {
    font-size: 0.85rem;
  }
}

/* Footer Styling */
footer {
  background: #141b26; /* Subtle dark blue background */
  padding: 60px 0;
  text-align: center;
  color: #fff;
  animation: fadeInFooter 2s ease-out;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Content Wrapper */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Website Name Styling with Animation */
.website-name {
  font-size: 28px;
  color: #ffdc00; /* Gold for the website name */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glowEffect 2s infinite alternate; /* Add glowing animation */
}

/* Animation for Glowing Effect */
@keyframes glowEffect {
  0% {
      text-shadow: 0 0 10px #ffdc00, 0 0 20px #ffdc00, 0 0 30px #ffdc00;
  }
  100% {
      text-shadow: 0 0 20px #ffc700, 0 0 40px #ffc700, 0 0 60px #ffc700;
  }
}

/* Footer Links Styling */
.footer-links {
  margin-bottom: 30px;
}

.footer-link {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin: 0 20px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Adding hover underline effect */
.footer-link:hover {
  color: #ffdc00;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #ffdc00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
}

/* Footer Button Container */
.footer-btn-container {
  margin-top: 20px;
}

/* Footer Button Styling */
.footer-btn {
  background-color: #ffdc00;
  color: #1a1a1a;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-btn:hover {
  background-color: #e0b200;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Text */
.footer-text {
  font-size: 14px;
  margin-top: 20px;
  color: #f0f0f0;
  letter-spacing: 0.5px;
}

/* Highlighted Name in Footer Text */
.highlight-name {
  color: #ffdc00;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-links {
      margin-bottom: 20px;
  }

  .footer-btn-container {
      margin-top: 15px;
  }

  .footer-text {
      font-size: 12px;
  }

  .footer-link {
      font-size: 16px;
      margin: 0 15px;
  }

  .website-name {
      font-size: 24px;
  }
}

/* Animation for Footer */
@keyframes fadeInFooter {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}



.new-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4757;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 5px;
  animation: pulse 1.5s infinite;
  text-transform: uppercase;
}

.icon-wrapper {
    position: relative; /* Allows NEW label to sit on top */
    display: flex;
    justify-content: center; /* Center icon horizontally */
    width: 100%;
}

/* Pulsing animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}







