 /* Reset and Box Model */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Poppins', sans-serif;
   background-color: #f1f1f1;
   color: #333;
   line-height: 1.6;
   overflow-x: hidden;
 }



 header h1 {
   font-size: 3em;
   margin-bottom: 10px;
 }

 .come-right {
   animation: slideInFromRight 1s ease-out;
 }

 .come-left {
   animation: slideInFromLeft 1s ease-out;
 }

 header p {
   font-size: 1.2em;
   margin-bottom: 20px;
   opacity: 0.8;
   animation: slideInFromRight 1s ease-out;
 }

 /* Navigation Bar */
 nav {
   background-color: #007bff;
   /* Darker Shade of Primary Color */
   position: fixed;
   top: 0;
   width: 100%;
   padding: 10px 0;
   z-index: 1000;
 }

 nav ul {
   display: flex;
   justify-content: center;
   list-style: none;
 }

 nav ul li {
   margin: 0 20px;
 }

 nav ul li a {
   color: white;
   text-decoration: none;
   font-size: 1.1em;
   transition: color 0.3s ease;
 }

 nav ul li a:hover {
   color: #e74c3c;
 }

 .icon {
   font-size: 70px !important;
 }

 /* Contact Us Form */
 .contact-form {
   background-color: #fff;
   padding: 40px;
   border-radius: 8px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   margin-top: 50px;
 }

 .contact-form h2 {
   font-size: 2em;
   margin-bottom: 20px;
   text-align: center;
 }

 .contact-form input,
 .contact-form textarea {
   width: 100%;
   padding: 12px;
   margin-bottom: 15px;
   border: 1px solid #ddd;
   border-radius: 5px;
   font-size: 1em;
 }

 .contact-form button {
   background-color: #3498db;
   /* Primary Blue Color */
   color: white;
   padding: 15px 30px;
   font-size: 1.2em;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }

 .contact-form button:hover {
   background-color: #2980b9;
   /* Darker Blue on Hover */
 }

 /* Footer */
 footer {
   background-color: #2980b9;
   /* New Primary Color */
   color: white;
   text-align: center;
   padding: 20px 0;
   margin-top: 50px;
   font-size: 1em;
 }

 footer a {
   color: white;
   text-decoration: none;
   margin: 0 10px;
 }

 footer a:hover {
   text-decoration: underline;
 }

 /* Animations */
 @keyframes fadeIn {
   0% {
     opacity: 0;
   }

   100% {
     opacity: 1;
   }
 }

 @keyframes slideInFromLeft {
   0% {
     transform: translateX(-100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @keyframes slideInFromRight {
   0% {
     transform: translateX(100%);
     opacity: 0;
   }

   100% {
     transform: translateX(0);
     opacity: 1;
   }
 }

 @media only screen and (max-width: 768px) {
   .features {
     flex-direction: column;
     align-items: center;
   }

   .feature {
     width: 80%;
     margin: 10px 0;
   }

   .cta a {
     font-size: 1.1em;
     padding: 12px 25px;
   }
 }

 .contact-info {
   background-color: #f9f9f9;
   /* Light background for contrast */
   padding: 15px;
   /* Add some padding */
   border-radius: 8px;
   /* Rounded corners */
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   /* Subtle shadow */
   margin-top: 20px;
   /* Space above the contact info */
 }

 .contact-info p {
   font-size: 18px;
   /* Larger font size for readability */
   margin: 0;
   /* Remove default margin */
 }

 .contact-info a {
   display: inline-block;
   /* Make the link a block for better spacing */
   font-size: 18px;
   /* Same font size as the paragraph */
   color: #25D366;
   /* WhatsApp color */
   text-decoration: none;
   /* Remove underline */
   transition: color 0.3s;
   /* Smooth transition for hover effect */
 }

 .contact-info a:hover {
   color: #128C7E;
   /* Darker shade on hover */
 }