
/* Simple Styling */
* {
  margin: 0;
  padding: 0 ;
  box-sizing: border-box;
}

:root {
  --grdclr1: linear-gradient(
    #2C3E50, /* Dark Navy */
    #4CA1AF, /* Teal */
    #F26767, /* Soft Coral */
    #FC8368, /* Bright Coral */
    #F9D423, /* Yellow Orange */
    #FDEB71, /* Light Yellow */
    #FFF5CC  /* Pale Yellow */
);

--grdclr3: linear-gradient(130deg,
 rgba(0,85,85,0.9724264705882353) 15%, 
 rgba(0,85,85,0.9668242296918768) 26%,
rgba(0,85,85,0.9612219887955182) 63%,
rgba(0,0,0,0.9640231092436975) 95%
);

  --grdclr2: Radial-gradient(
    rgb(43, 0, 43),   /* Dark Purple */
    #7209B7,  /* Bright Purple */
    #B5179E,  /* Magenta */
    #F72585,  /* Bright Pink */
    #FF4D6D,  /* Hot Pink */
    #FF82AB,  /* Light Pink */
    #FFC2E1   Pale Pink
  );
  --primary-color: rgba(255, 255, 0, 0.842); /* Dark purple */
  --secondary-color: rgba(255, 255, 255, 0.849); /* Neon green */
  --tertiary-color: rgba(0, 0, 0, 0.774); /* Neon green */
  --mx-width:1200px;
  --fts:bold;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--grdclr3);
  color: #333;
  margin: 0; /* Ensures there is no default margin affecting the layout */
  padding: 0; /* Ensures there is no default padding affecting the layout */
  min-height: 100vh; /* Ensures the background covers the full viewport height */
  position: relative; /* Allows child elements to be positioned relative to the body */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Example shadow */

}
/* Full-screen overlay */
#animated-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0); /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure it's on top of other content */
  color: #fff; /* Text color */
  overflow: hidden;
}

/* Container for the animated text */
.animated-overlayed {
  text-align: center;
}

/* Typing effect styles */
.typing-text {
  font-size: 2.5rem;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

.typing-text .typed-word {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid #fff;
  opacity: 0; /* Hide initially */
}

/* Keyframes for typing */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Keyframes for erasing */
@keyframes erasing {
  from { width: 100%; }
  to { width: 0; }
}

/* Typing and erasing styles */
.typing {
  animation: typing 1s steps(30, end) forwards;
}

.erasing {
  animation: erasing 0.5s steps(30, end) forwards;
}

.pan-zoom {
  animation: panZoom 5s ease-in-out forwards;
}

/* Pan and zoom effect */
@keyframes panZoom {
  0% {
      transform: scale(1) translateX(0) translateY(0);
      opacity: 1;
  }
  50% {
      transform: scale(1.2) translateX(10%) translateY(-10%);
      opacity: 0.8;
  }
  100% {
      transform: scale(1) translateX(0) translateY(0);
      opacity: 1;
  }
}
.hidden {
  display: none !important;
}
header {
  /* position: fixed; */
  width: 100%;
}
/* Navbar */
.navbar {
  background:linear-gradient(  rgba(0,0,0,0.9640231092436975) 14% ,rgba(0,85,85,0.9612219887955182)75%);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.274);
  color: rgb(255, 255, 255) !important;
  padding: 10px 0 !important;
  width: 100% !important;
  display: flex;
  justify-content: flex-end; /* Align items to the end */
  position: relative; /* Ensure proper layering */
}

#cont {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Optional: to control the max width */
  margin: 0 auto; /* Optional: to center the content */
}

.logo {
  display: flex;
  margin-top: 10px;
  align-items: center;
  margin-right: auto; /* Pushes the logo to the start */
}

.logo img {
  max-width: 130px;
  height: 90px;
  background: rgb(245, 245, 245);
  border-radius: 50%;
}

#navbar-toggler {
  position: relative;
}

.toggler-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px; /* Adjust size of the icon */
  color: #fff !important; /* Icon color */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Ensure z-index works */
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

.toggler-btn .fa-bars {
  transition: transform 0.3s ease;
}

.toggler-btn .nav-links {
  display: none; /* Hide links by default */
  position: fixed; /* Position it in front of other elements */
  top: 0;
  left: 0;
  width: 100%; /* Full width of the viewport */
  height: 100%; /* Full height of the viewport */
  background-color: black;
  padding: 20px;
  list-style: none;
  margin: 0;
  z-index: 1000; /* Ensure it comes in front of other elements */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.toggler-btn:hover .nav-links {
  display: flex; /* Show links on hover */
}

.nav-links li {
  margin: 15px 0; /* Space out links vertically */
}

.nav-links li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.5rem; /* Adjust font size as needed */
}
.hero {
  margin-top: 50px;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  align-items: center; /* Centers the image vertically */
  position: relative;
}

.hero-place img {
  width: 1050px; /* Image will take its natural width */
  height: auto; /* Maintains the aspect ratio */
  max-height: 100%; /* Ensures the image doesn't exceed the height of .hero */
}
.carousel {
  position: relative;
  width: 100%;
  height: 100%; /* Adjusts height based on content */
  overflow: hidden; /* Hides any overflow */
}

.carousel-images {
  display: flex;
  width: 300%; /* Adjust based on the number of images */
  transition: transform 0.5s ease-in-out; /* Smooth transition between slides */
}

.carousel-images img {
  width: 100%; /* Ensures only one image is visible at a time */
  height: auto; /* Maintains the image’s aspect ratio */
  display: block; /* Removes any extra space below images */
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for buttons */
  color: #ffffff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2; /* Ensures buttons are above other elements */
  border-radius: 5px; /* Rounded corners for buttons */
}

.carousel-button.prev {
  left: 10px; /* Position the previous button on the left */
}

.carousel-button.next {
  right: 10px; /* Position the next button on the right */
}

/* Optional: Add hover effect for buttons */
.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
}
/* Main Section */
main {
  padding: 50px 20px;
}
.contact-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 400px; /* Adjust as needed */
}

.contact-detail p {
  margin: 0;
  font-size: 12px;
  margin: 5px;
}

.contact-detail a {
  color: #007bff;
  text-decoration: none;
  font-size: 15px;
  margin: 5px;
}

.contact-detail a:hover {
  text-decoration: underline;
}
/* Services Section */
.services {
  /* background-color: #f9f9f9; */
  padding: 100px 0;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services h2 {
  font-size: 2.75rem;
  margin-bottom: 60px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.service-offered {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  flex-basis: calc(25% - 30px);
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service i {
  font-size: 3.5rem;
  color: #1d725f;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.75rem;
  margin-top: 15px;
  color: #333;
  font-weight: 600;
}

.service p {
  font-size: 1rem;
  color: #777;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  text-justify: inter-word; /* Ensures more consistent spacing between words */
  hyphens: auto; /* Allows words to break with hyphenation if needed */
}


/* About Section */
.about-us {
  padding: 80px 20px;
  /* background-color: #f9f9f9; */
  color: #333;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color:#ffffff !important;
}

.about-us p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: white;
}

.learn-more-btn {
  padding: 15px 30px;
  background-color: #1d725f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  margin-top: 20px;
}

.learn-more-btn:hover {
  background-color: #333;
}
/* Contact Us Section */
.contact-us {
  /* background-color: #fff; */

  padding: 80px 20px !important;
  text-align: center;
}

.contact-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: bold;
}

.contact-us p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #ffffff;
}

.contact-us button {
  padding: 15px 30px;
  background-color: #1d725f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.contact-us button:hover {
  background-color: #333;
}

/* Contact Details Section */
.contact-details {
  padding: 10px;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
  margin-right: 25px !important;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.contact-details h3 {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-details i {
  font-size: 1.25rem;
  color: #f5f5f5;
  margin-right: 10px;
}

.contact-details a {
  color: #ffffff;;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Map Section */
.map {
  margin-bottom: 40px;
}

.map h3 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 20px;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 8px;
}

/* Call-to-Action Section */
.cta {
  text-align: center;
  margin-top: 10px;
}

.cta h3 {
  font-size: 1.75rem;
  color: #ffffff;;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1rem;
  color: #ffffff;;
  margin-bottom: 20px !important;
}

.cta button {
  padding: 15px 30px;
  background-color: #1d725f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.cta button:hover {
  background-color: #333;
}

/* General Styling for Contact Form Section */
.contact-form {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
  /* background-color: #f9f9f9; */
}

/* Style for the form content on the left */
.form-content {
  flex: 1;
  max-width: 700px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Style for the contact information */
#contact-content, #contact-how-to {
  margin-bottom: 20px;
}

/* Style for the contact information headings */
#contact-content h2, #contact-how-to h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000;
}

/* Style for the contact information text */
#contact-content p, #contact-how-to p {
  font-size: 16px;
  margin: 10px 0;
  color: #000;
}

/* Style for the contact form container on the right */
.form-Container {
  flex: 1;
  max-width: 500px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
  color: #000000 !important;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #030303 !important;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea,
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  color: #000000;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input[type="file"] {
  padding: 5px;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Container for form items with a grid layout */
.form-group-1 {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Style for the label above the checkbox options */
.form-group-1 > label {
  grid-column: span 2;
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Hide default checkbox */
.checkbox-opt input[type="checkbox"] {
  display: none;
}

/* Style the label to look like a button */
.checkbox-opt label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 30px;
  background-color: #749cc5;
  border: 1px solid #ccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

/* Style for checkbox options when hovered */
.checkbox-opt label:hover {
  background-color: #030303;
  color: rgb(0, 0, 0);
}

/* Style for the checked checkbox option */
.checkbox-opt input[type="checkbox"]:checked + label {
  background-color: #007bff;
  color: #000000;
  border-color: #007bff;
}

/* Icon styling */
.checkbox-opt i {
  margin-right: 5px;
  font-size: 10px;
}

/* Contact Instructions Styling */
#contact-how-to {
  margin-top: 30px;
}

#contact-how-to h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #050505;
}

#contact-how-to p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #0a0a0a;
}

#contact-how-to ul {
  list-style: disc;
  margin-left: 20px;
  list-style: none;
}

#contact-how-to li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #000000;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  text-decoration: underline;
}

.job-list {
  /* background-color: #fff; */
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-list h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

#job-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.job-listing {
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}

.job-listing:hover {
  background-color: #bdc3c7;
  transform: translateY(-5px);
}

.job-listing h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #34495e;
}

.apply-button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.apply-button:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.apply-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}
 /* About Us Section */
 .about {
  text-align: center;
  padding: 50px 0;
}

.about .cout {
  max-width: 800px;
  margin: 0 auto;
}

.about h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.about .values {
  list-style: none;
  padding: 0;
  margin: 0;
}
#abouts-card {
  max-width: 1200px; /* Ensures content doesn’t stretch too wide */
  margin: 0 auto; /* Centers the container */
  padding: 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates a 3-column layout */
  gap: 20px; /* Space between the cards */
}

.about-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 1rem;
  color: #555;
}
.about .values li {
  font-size: 18px;
  margin-bottom: 20px !important;
  color: #ffffff;
  gap: 10px;
}

.about .values li i {
  margin-right: 10px;
  color: #ffffff;
}
#apply-sect {
  /* background-color: #fff; */
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.apply-form-container {
  padding: 20px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

h2 #job-title {
  font-weight: normal;
  color: #3498db;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 1em;
  color: #ffffff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"] {
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  padding: 10px;
  font-size: 1em;
  color: #000000;
  transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="file"]:focus {
  border-color: #3498db;
  outline: none;
}

.submit-button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}
#success {
  background-color: #fff;
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.Successful {
  padding: 20px;
}

.Successful h2 {
  font-size: 2em;
  color: #27ae60; /* Success color */
  margin-bottom: 20px;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

p:last-of-type {
  margin-bottom: 0;
}

.services-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0 auto;
}

.service-container {
  display: flex;
  flex-direction: column; /* Stack the slider and the text */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  position: relative;
}

/* Slider Container */
#Web-Development-Slideshow 
#Graphic-Designing-Slideshow{
  width: 100%; /* Slider takes up 100% of the container */
  height: 600px; /* Adjust the height to fit your images */
  overflow: hidden;
  position: relative;
}

/* Slider Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Images inside the slider */
.slider-track img {
  width: 100%; /* Image width set to fill the slider container */
  height: 100%;
  object-fit: contain;
}

/* Details Section */
.Web-Development-Details,
.Graphic-Designing-Details {
  width: 100%;
  padding: 20px;
  text-align: center; /* Center align the text */
  box-sizing: border-box;
}

.Web-Development-Details h3,
.Graphic-Designing-Details h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.Web-Development-Details p,
.Graphic-Designing-Details p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
}
#gallery{
  width: 100%;
  height: auto;
}
/* Base Styles */
.service-Grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

#Digital-Art-Designing-Grid-Gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 20px; /* Space between gallery and details */
}

#Digital-Art-Designing-Grid-Gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#Digital-Art-Designing-Grid-Gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.Digital-Design-Details {
  max-width: 1200px;
  width: 100%;
  text-align: center; /* Center text for better readability */
  padding: 0 20px; /* Padding for responsive text layout */
}

.Digital-Design-Details h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}

.Digital-Design-Details p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: white;
}

.Digital-Design-Details strong {
  font-weight: bold;
}

#industries-we-work-for {
  padding: 60px 0;
}

.containedd {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#industries-we-work-for h1 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #333;
}

.industry-place {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

#industries-listed {
  display: flex;
  width: 290px;
  height: 340px;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#industries-listed:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

#industries-listed img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}

#card-detail h1 {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 10px;
}

#read-more {
  margin-top: auto;
}

.read-more-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

/* Main Overlay Section */
#overlayed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hidden initially */
  background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensures it's above all other content */
}

/* Overlay content */
#overlay-content {
  background-color: #fff; /* White background */
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
}

/* Close button styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

/* Overlay Title */
#overlay-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* Overlay Description */
#overlay-description {
  font-size: 16px !important;
  color: #666;
  line-height: 1.5;
}
/* Container for sidebar and blog */
#oc {
  display: flex; /* Align children side by side */
  height: 100vh; /* Full viewport height */
}

/* Sidebar Styling */
#scroll-sidebar {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  border: 3px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 80vh; /* Limit height for scrolling */
  overflow-y: auto; /* Add vertical scrollbar if needed */
  position: sticky;
  top: 20px; /* Position sticky top */
  z-index: 10; /* Ensure it stays above other content */
  width: 330px; /* Fixed width for the sidebar */
  flex-shrink: 0; /* Prevent shrinking of the sidebar */
}

/* Custom Scrollbar Styling */
#scroll-sidebar::-webkit-scrollbar {
  width: 12px;
}

#scroll-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

#scroll-sidebar::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

#scroll-sidebar::-webkit-scrollbar-corner {
  background: var(--secondary-color);
}

/* Sidebar Links Styling */
#sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar-links a {
  display: block;
  text-decoration: none;
  color: rgb(71, 160, 212);
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding: 10px;
  transition: color 0.3s;
}

#sidebar-links a:hover {
  color: var(--tertiary-color);
}

#blog {
  flex: 1; /* Allow the blog container to take up remaining space */
  padding: 20px;
  overflow: auto; /* Handle any overflow from content */
}

.blog-container {
  max-width:  100%; /* Adjust to fit remaining space */
}

.blog-post {
  background-color: #ffffff; /* White background for readability */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  padding: 20px; /* Space inside the container */
  margin-bottom: 20px; /* Space below each blog post */
  border: 1px solid #ddd; /* Light border for definition */
}

.blog-post h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #135a22;
}

.blog-post p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-post h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #555;
}

.blog-post ol, .blog-post ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.blog-post pre {
  background-color: #f4f4f4; /* Light gray background for the code block */
  border-radius: 4px; /* Rounded corners */
  padding: 10px; /* Padding inside the code block */
  overflow-x: auto; /* Horizontal scroll for overflowed content */
  white-space: pre; /* Preserve spaces and line breaks */
}

.blog-post code {
  font-family: 'Courier New', Courier, monospace;
  background-color: #eee;
  padding: 2px 4px;
  border-radius: 4px;
}

.blog-post img {
  max-width: 100%; /* Ensure images are responsive */
  height: auto;
  display: block;
  margin: 10px 0;
}
/* Footer */
.footer {
  background-image: url('./footer-background.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.map {
  width: 100%;
  margin-bottom: 30px;
}

.map h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
}

.social-media {
  margin-bottom: 30px;
}

.social-media h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1d725f;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1d725f;
}

/* Footer Paragraph */
.footer p {
  font-size: 1rem;
  margin-top: 20px;
}

@media screen and (min-width: 280px) and (max-width: 914px) {
  /* Full-screen overlay adjustments */
  #animated-overlay {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    width: 100%;
  }

  /* Container for the animated text */
  .animated-overlayed {
    /* Adjust text alignment if needed */
    text-align: center;
  }

  /* Typing effect styles */
  .typing-text {
    font-size: 1.0rem; /* Smaller font size for better fit on small screens */
  }

  .typing-text .typed-word {
    border-right: .1em solid #fff; /* Adjust border width for smaller screens */
  }

  /* Adjust keyframes duration for smaller screens if necessary */
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }

  @keyframes erasing {
    from { width: 100%; }
    to { width: 0; }
  }

  /* Typing and erasing styles */
  .typing {
    animation: typing 1s steps(20, end) forwards; /* Reduce steps for smoother effect on smaller screens */
  }

  .erasing {
    animation: erasing 0.5s steps(20, end) forwards; /* Reduce steps for smoother effect on smaller screens */
  }

  .pan-zoom {
    animation: panZoom 4s ease-in-out forwards; /* Adjust duration for a quicker effect on smaller screens */
  }

  /* Pan and zoom effect */
  @keyframes panZoom {
    0% {
      transform: scale(1) translateX(0) translateY(0);
      opacity: 1;
    }
    50% {
      transform: scale(1.1) translateX(5%) translateY(-5%); /* Slightly less scale and translation for smaller screens */
      opacity: 0.8;
    }
    100% {
      transform: scale(1) translateX(0) translateY(0);
      opacity: 1;
    }
  }
  /* Adjusted padding for .container */
  .container {
    padding: 0 10px;
  }

  /* Adjusted background size for #container */
  #container {
    padding: 0 10px;
    background-image: url(./images.jpeg);
    background-size: 100% 100%;
  }
  
   
    /* Adjust the navbar to ensure toggler is at the end */
  .navbar {
    padding: 5px 0 !important; /* Reduce padding for smaller screens */
  }

  #cont {
    display: flex;
    justify-content: flex-end; /* Align items to the end */
    width: 100%;
    margin: 0 auto; /* Center the content */
  }

  .logo {
    display: flex;
    margin-top: 10px;
    align-items: center;
    margin-right: auto; /* Push the logo to the start */
  }

  .logo img {
    max-width: 100px; /* Adjust logo size for smaller screens */
    height: auto; /* Maintain aspect ratio */
  }

  #navbar-toggler {
    margin-left: auto; /* Align toggler to the end */
  }

  .toggler-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px; /* Adjust size of the icon */
    color: #fff !important; /* Icon color */
    transition: all 0.3s ease; /* Smooth transition for all properties */
  }

  .toggler-btn .fa-bars {
    transition: transform 0.3s ease;
  }

  .nav-links {
    display: none; /* Hide links by default */
    position: fixed; /* Position it in front of other elements */
    top: 0;
    left: 0;
    width: 100%; /* Full width of the viewport */
    height: 100%; /* Full height of the viewport */
    background-color: black;
    padding: 20px;
    list-style: none;
    margin: 0;
    z-index: 1000; /* Ensure it comes in front of other elements */
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
  }

  .toggler-btn:hover .nav-links {
    display: flex; /* Show links on hover */
  }

  .toggler-btn:hover .fa-bars {
    transform: rotate(45deg); /* Rotate the bars to form an "X" */
  }

  .nav-links li {
    margin: 15px 0; /* Space out links vertically */
  }

  .nav-links li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem; /* Adjust font size for readability on small screens */
  }

  .hero {
    height: 600px; /* Adjust the height for smaller screens */
    width: 100%;
  }

  .hero-place img {
    width:100%; /* Scale down the image width to fit smaller screens */
    max-height: 80%; /* Ensure the image doesn't exceed the height of the hero section */
  }
    /* Main Section */
    main {
      padding: 30px 10px;
    }
    /* Services Section */
    .services {
      padding: 60px 0;
    }
  
    .services h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
  
    .service-offered {
      flex-direction: column;
      align-items: center;
    }
  
    .service {
      flex-basis: 90%;
      margin-bottom: 20px;
      padding: 20px;
    }
  
    .service i {
      font-size: 3rem;
    }
  
    .service h3 {
      font-size: 1.5rem;
    }
  
    .service p {
      font-size: 0.9rem;
      max-width: 100%;
    }
  
    /* About Section */
    .about-us {
      padding: 60px 10px;
    }
  
    .about-us h2 {
      font-size: 2rem;
    }
  
    .learn-more-btn {
      padding: 12px 24px;
      font-size: 1rem;
    }
  
    /* Contact Us Section */
    .contact-us {
      padding: 60px 10px;
    }
  
    .contact-us h2 {
      font-size: 2rem;
    }
  
    .contact-us p {
      font-size: 0.9rem;
    }
  
    .contact-us button {
      padding: 12px 24px;
      font-size: 1rem;
    }
  
    /* Contact Details Section */
    .contact-details {
      max-width: 100%;
      padding: 10px;
      margin-top: 10px !important;
      margin-bottom: 0px !important;
      margin-right: 0px !important;
      text-align: left;
      margin: 0 auto;
    }
  
    .contact-details h3 {
      font-size: 1.1rem;
    }
  
    .contact-details p , a {
      font-size: 0.9rem;
    }
  
    /* Map Section */
    .map iframe {
      height: 300px;
    }
  
    /* Call-to-Action Section */
    .cta h3 {
      font-size: 1.5rem;
    }
  
    .cta p {
      font-size: 0.9rem;
    }
  
    .cta button {
      padding: 12px 24px;
      font-size: 1rem;
    }
  
  /* General Styling for Contact Form Section */
  .contact-form {
    flex-direction: column; /* Stack content and form vertically */
    padding: 10px; /* Adjust padding */
  }

  /* Style for the form content on the left */
  .form-content {
    max-width: 100%; /* Ensure full width on smaller screens */
    margin-bottom: 20px; /* Add space below the form content */
  }

  /* Style for the contact form container on the right */
  .form-Container {
    max-width: 100%; /* Ensure full width on smaller screens */
  }

  /* Form Styling */
  form {
    width: 100%; /* Full width of the container */
  }

  .form-group {
    margin-bottom: 10px; /* Adjust margin for smaller screens */
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="number"],
  .form-group textarea,
  .form-group input[type="file"] {
    padding: 8px; /* Adjust padding for smaller screens */
  }

  .form-group textarea {
    height: 80px; /* Adjust height for smaller screens */
  }

  button[type="submit"] {
    padding: 8px 16px; /* Adjust padding for smaller screens */
    font-size: 14px; /* Adjust font size */
  }

  /* Container for form items with a grid layout */
  .form-group-1 {
    max-width: 100%; /* Ensure full width on smaller screens */
    grid-template-columns: 1fr; /* Single column layout */
  }

  /* Style for the label above the checkbox options */
  .form-group-1 > label {
    font-size: 16px; /* Adjust font size for smaller screens */
  }

  /* Style the label to look like a button */
  .checkbox-opt label {
    width: 100%; /* Full width on smaller screens */
    height: auto; /* Allow height to adjust automatically */
    font-size: 12px; /* Adjust font size */
    padding: 10px; /* Add padding */
  }

  /* Icon styling */
  .checkbox-opt i {
    font-size: 12px; /* Adjust icon size */
  }

  /* Contact Instructions Styling */
  #contact-how-to {
    margin-top: 20px; /* Adjust margin */
  }

  #contact-how-to h2 {
    font-size: 20px; /* Adjust font size */
  }

  #contact-how-to p {
    font-size: 14px; /* Adjust font size */
  }

  #contact-how-to ul {
    margin-left: 15px; /* Adjust margin */
  }

  #contact-how-to li {
    font-size: 14px; /* Adjust font size */
  }
    
   
    .job-list {
      padding: 20px 10px;
      margin: 10px auto;
    }
  
    .job-list h1 {
      font-size: 2rem;
    }
  
    #job-listings {
      flex-direction: column;
      align-items: center;
    }
  
    .job-listing {
      width: 90%;
      margin-bottom: 20px;
    }
    
    /* General container adjustments */
  .Container {
    flex: 1;
    padding: 10px; /* Adjust padding for smaller screens */
  }

  /* Header and headings */
  h1, h2, h3 {
    font-size: 1.5em; /* Adjust font size for headings */
  }

  /* Contact content adjustments */
  #contact-content {
    margin-right: 5px; /* Adjust margin for smaller screens */
  }

  #contact-content h3 {
    font-size: 1.2em; /* Smaller font size for headings */
  }

  #contact-content p {
    font-size: 0.9em; /* Smaller font size for paragraphs */
  }

  #contact-content ol {
    margin-bottom: 10px; /* Adjust margin for lists */
  }

  #contact-content li {
    margin-bottom: 8px; /* Adjust margin for list items */
  }

  #contact-content li strong {
    color: #555; /* Slightly lighter color for emphasis */
  }
/* Apply form adjustments */
  .apply-form-container {
    padding: 10px; /* Adjust padding */
  }

  /* Service section adjustments */
  .services-cont {
    padding: 10px; /* Adjust padding */
  }
  .service-Grid-container {
    padding: 10px;
}

#Digital-Art-Designing-Grid-Gallery {
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}

#Digital-Art-Designing-Grid-Gallery img {
    border-radius: 5px;
    width: 110px;
    height: 150px;
}

#Digital-Art-Designing-Grid-Gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.Digital-Design-Details {
    padding: 0 10px;
}

.Digital-Design-Details h3 {
    font-size: 15px;
}

.Digital-Design-Details p {
    font-size: 14px;
}
  #industries-we-work-for {
    padding: 40px 0;
  }

  .containedd {
    max-width: 100%;
    padding: 0 10px;
  }

  #industries-we-work-for h1 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .industry-place {
    display: block; /* Change to block display for stacked layout */
  }

  #industries-listed {
    width: 100%;
    height: auto; /* Adjust height to auto for better content fit */
    margin-bottom: 20px; /* Add margin between blocks */
    padding: 15px;
    box-sizing: border-box; /* Ensure padding is included in width */
  }

  #industries-listed img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
  }

  #card-detail h1 {
    font-size: 1.1rem;
  }

  .read-more-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  #overlayed {
    display: none;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    width: 100%; /* Ensure the overlay container spans the full width */
    height: 100%; /* Ensure the overlay container spans the full height */
    position: fixed; /* Fixed position to cover the entire screen */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    z-index: 1000; /* Ensures it's above all other content */
  }

  #overlay-content {
    width: 90%; /* Use a percentage width for better responsiveness */
    max-width: 500px; /* Adjust maximum width for better readability on smaller screens */
    padding: 20px !important;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-left: 14.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #fff; /* Ensure the content has a white background */
    box-sizing: border-box; /* Ensure padding is included in the width calculation */
  }

  .close-btn {
    position: absolute; /* Absolute positioning relative to #overlay-content */
    top: 15px;
    right: 15px;
    font-size: 20px; /* Slightly smaller font size for close button */
    cursor: pointer;
  }

  #overlay-title {
    font-size: 24px; /* Adjust title size for better fit on smaller screens */
    margin-bottom: 15px; /* Adjust margin for better spacing */
  }

  #overlay-description {
    font-size: 14px; /* Adjust description size for better readability */
    line-height: 1.4; /* Improve readability */
  }
  #oc {
    flex-direction: column; /* Stack sidebar and blog vertically */
  }

  /* Sidebar Styling */
  #scroll-sidebar {
    width: 100%; /* Full width for smaller screens */
    max-height: 50vh; /* Limit height for better visibility */
    position: static; /* Static position for vertical stack */
    border: none; /* Remove border for a cleaner look */
    box-shadow: none; /* Remove shadow for simpler design */
  }
  #sidebar-links a{
    font-size: 0.9rem;
  }
  /* Blog Container Styling */
  #blog {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .blog-container {
    max-width: 100%; /* Ensure full width */
  }

  .blog-post {
    padding: 15px; /* Reduce padding inside blog posts */
    margin-bottom: 15px; /* Reduce space between blog posts */
  }

  .blog-post h2 {
    font-size: 1.5rem; /* Reduce font size for headings */
  }

  .blog-post h3 {
    font-size: 1.2rem; /* Reduce font size for subheadings */
  }

  .blog-post pre {
    font-size: 0.9rem; /* Reduce font size in code blocks */
  }
  #abouts-card {
    padding: 15px;
  }

  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts layout to fit smaller screens */
    gap: 15px;
  }

  .about-card {
    padding: 15px;
  }

  .about-card i {
    font-size: 1.5rem; /* Slightly smaller icons for better fit */
  }

  .about-card h3 {
    font-size: 1.25rem; /* Adjusts the size of headings for smaller screens */
  }

  .about-card p {
    font-size: 0.875rem; /* Adjusts the font size of paragraphs */
  }
  .contact-card {
    padding: 10px; /* Reduce padding for smaller screens */
    margin-bottom: 10px; /* Reduce bottom margin for better fit */
    max-width: 100%; /* Ensure the card fits within smaller screens */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Reduce shadow for smaller screens */
  }

  .contact-detail p {
    font-size: 0.5rem; /* Smaller font size for better readability on small screens */
    margin: 4px; /* Reduce margin to save space */
  }

  .contact-detail a {
    font-size: 0.4rem !important; /* Smaller font size for links */
    margin: 4px; /* Reduce margin to save space */
  }
    /* Footer Top Section */
    .footer-top {
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }
  
    /* Map Section */
    .map {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .map h3 {
      font-size: 1.5rem; /* Slightly smaller heading for better fit */
      margin-bottom: 15px;
    }
  
    .map iframe {
      width: 100%;
      height: 250px; /* Adjusted height for smaller screens */
    }
  
    /* Social Media Section */
    .social-media h3 {
      font-size: 1.5rem; /* Smaller heading size */
      margin-bottom: 15px;
    }
  
    .social-links {
      gap: 15px; /* Reduced gap between icons */
    }
  
    .social-links a {
      font-size: 1.5rem; /* Smaller icon size */
    }
  
    /* Footer Links */
    .footer-links {
      flex-direction: column; /* Stack links vertically */
      align-items: center;
      gap: 15px; /* Reduced gap between links */
      margin-bottom: 15px;
    }
  
    .footer-links a {
      font-size: 1rem; /* Slightly smaller text */
    }
  
    /* Footer Paragraph */
    .footer p {
      font-size: 0.9rem; /* Slightly smaller text */
      margin-top: 15px;
    }
  
}
