@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap');

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Varela Round",serif;
}
html,body {
  background-color:#fff;
  display:flex;
  flex-direction:column;
}
header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px;
  background-color:#753BBD;
  color:white;
  position:sticky;
  top:0;
  z-index:1000;
}
.logo {
  font-size:1.5rem;
  padding-left:20px;
}
.logo img {
  width:140px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
/* Navbar */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background-color:#753BBD;
  padding:15px 40px;
  border-radius:30px;
}
/* When navbar is active (scroll down or interact) */
nav.active {
  background-color:#9c27b0;
  /* Slightly lighter purple */
  box-shadow:0px 8px 20px rgba(0,0,0,0.2);
  /* Darker shadow */
}
/* Navbar links */
.nav-links {
  list-style:none;
  display:flex;
  gap:2px;
}
.nav-links li a {
  color:white;
  text-decoration:none;
  padding:8px 16px;
  border-radius:41px;
  transition:background-color 0.3s ease,transform 0.3s ease;
}
/* Hover effect for links */
.nav-links li a:hover {
  background-color:#fff34fcf;
  transform:scale(1.1);
  /* Slight scaling effect */
}
/* Sidebar styles */
.sidebar {
  height:100%;
  width:250px;
  position:fixed;
  top:0;
  left:0;
  background-color:#753BBD;
  overflow-x:hidden;
  transition:0.5s;
  padding-top:60px;
  z-index:1000;
}
.sidebar a {
  padding:8px 8px 8px 32px;
  text-decoration:none;
  font-size:25px;
  color:white;
  display:block;
  transition:0.3s;
}
/* Hover effect for sidebar links */
.sidebar a:hover {
  background-color:#530363;
  border-radius:20px;
}
.sidebar .closebtn {
  position:absolute;
  top:0;
  right:25px;
  font-size:36px;
  margin-left:50px;
}
#sidebarBtn {
  font-size:30px;
  cursor:pointer;
  color:white;
}
/* Initially hide sidebar button */
#sidebarBtn {
  display:none;
}
.content {
  margin-left:260px;
  /* Ensure content doesn't overlap with sidebar */
  padding:20px;
}
/* Media queries for different screen sizes */

/* Mobile screens (max-width:480px) */
@media screen and (max-width:480px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
  /* Show sidebar button on mobile */
}
.sidebar a {
  font-size:18px;
  line-height:40px;
}
.logo img {
  width:100px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
}/* Tablets (min-width:481px and max-width:768px) */
@media screen and (min-width:481px) and (max-width:768px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
  /* Show sidebar button on tablets */
}
.sidebar a {
  font-size:20px;
  line-height:40px;
}
}/* Laptops and Small Desktops (min-width:769px and max-width:1024px) */
@media screen and (min-width:769px) and (max-width:1024px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Large Screens and Desktops (min-width:1025px) */
@media screen and (min-width:1025px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}@media screen and (max-width:480px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
}
.sidebar a {
  font-size:18px;
  line-height:40px;
}
.logo img {
  width:100px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
}/* Tablets (min-width:481px and max-width:768px) */
@media screen and (min-width:481px) and (max-width:768px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
}
.sidebar a {
  font-size:20px;
  line-height:40px;
}
}/* Laptops and Small Desktops (min-width:769px and max-width:1024px) */
@media screen and (min-width:769px) and (max-width:1024px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Large Screens and Desktops (min-width:1025px) */
@media screen and (min-width:1025px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* General styling for the contact section */
.contact-section {
  background-color:#f9f9f9;
  padding:30px 20px;
  text-align:center;
  border-bottom:2px solid #eee;
  box-shadow:0px 10px 20px rgba(0,0,0,0.05);
}
.contact-text ul {
  list-style-type:none;
  padding:0;
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:18px;
  color:#555;
}
.contact-text ul a {
  text-decoration:none;
  color:#7b2cbf;
  transition:color 0.3s ease,transform 0.3s ease;
  margin:0 10px;
  font-weight:500;
}
.contact-text ul a:hover {
  color:#5e19a6;
  transform:scale(1.1);
}
.contact-text ul a i {
  font-size:20px;
  margin-right:5px;
}
.contact-text ul li {
  margin:0 10px;
  font-size:20px;
  color:#7b2cbf;
}
.contact-text hr {
  margin-top:20px;
  width:80%;
  border:0;
  border-top:2px solid #7b2cbf;
  transition:width 0.3s ease;
}
.contact-text:hover hr {
  width:90%;
  transition:width 0.3s ease;
}
.contact-text a:last-child {
  font-weight:bold;
  color:#5e19a6;
  text-decoration:underline;
}
/* For mobile responsiveness */
@media (max-width:768px) {
  .contact-text ul {
  flex-direction:column;
  font-size:16px;
}
.contact-text ul li {
  margin:5px 0;
}
.contact-text hr {
  width:90%;
}
}/* Content Section */
.content-section {
  padding:20px 40px;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color:#ffffff;
}
/* Content Container */
.content-container {
  padding:20px 40px;
  background:#ffffff;
  color:#753BBD;
  transform:translateY(60px);
  opacity:0;
  transition:transform 1s ease,opacity 1s ease;
  position:relative;
  overflow:hidden;
  animation:fadeInUp 1.5s ease-out forwards;
}
/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
  transform:translateY(60px);
  opacity:0;
}
to {
  transform:translateY(0);
  opacity:1;
}
}/* Content Description */
.content-description {
  font-size:1.3rem;
  line-height:1.7;
  color:#555555;
  /* Dark Gray Text for readability */
  margin-bottom:30px;
  text-align:center;
  position:relative;
  z-index:1;
  opacity:0;
  transform:translateY(50px);
  transition:opacity 1s ease,transform 1s ease;
}
/* Decorative Accent Under Content Description */
.content-description::after {
  content:"";
  display:block;
  width:100px;
  height:4px;
  border-radius:50px;
  animation:sparkleEffect 2s ease-in-out infinite alternate;
}
/* Visible Class for Animation */
.visible {
  transform:translateY(0);
  opacity:1;
}
/* Call-to-Action Button */
.cta-button {
  display:inline-block;
  padding:15px 30px;
  color:#ffffff;
  font-size:1.1rem;
  font-weight:bold;
  border-radius:50px;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 10px 20px rgba(157,78,221,0.2);
  border:2px solid transparent;
  margin-top:20px;
  text-decoration:none;
}
.cta-button:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 25px rgba(157,78,221,0.3);
}
.cta-button:active {
  transform:translateY(2px);
  box-shadow:none;
}
/* Highlighted Heading with Glow */
.highlight-heading {
  font-size:32px;
  text-align:center;
  margin-bottom:10px;
  color:#9d4edd;
  /* Soft Purple */

  position:relative;
  letter-spacing:2px;
  font-weight:600;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
  .content-section {
  padding:20px 20px;
  height:auto;
}
.content-container {
  padding:20px 40px;
  height:auto;
}
.content-description {
  font-size:1rem;
  margin-bottom:20px;
  text-align:justify;
}
.cta-button {
  font-size:1rem;
  padding:12px 25px;
}
.highlight-heading {
  font-size:1.8rem;
  letter-spacing:1px;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
  .content-section {
  padding:20px 30px;
  height:auto;
}
.content-container {
  padding:20px 40px;
  height:auto;
}
.content-description {
  font-size:1rem;
  margin-bottom:25px;
  text-align:justify;
}
.cta-button {
  font-size:1.1rem;
  padding:14px 28px;
}
.highlight-heading {
  font-size:2.2rem;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
  .content-section {
  padding:20px 40px;
  height:auto;
}
.content-container {
  padding:20px 40px;
  height:auto;
}
.content-description {
  font-size:1rem;
  margin-bottom:30px;
  text-align:justify;
}
.cta-button {
  font-size:1.2rem;
  padding:15px 30px;
}
.highlight-heading {
  font-size:2rem;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
  .content-section {
  padding:20px 80px;
  height:auto;
}
.content-container {
  padding:20px 40px;
  height:auto;
}
.content-description {
  font-size:1.10rem;
  margin-bottom:30px;
  text-align:justify;
}
.cta-button {
  font-size:1.2rem;
  padding:15px 30px;
}
.highlight-heading {
  font-size:32px;
}
}/* Section Styling */
.section {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  height:100vh;
  background-color:#f8f8f8;
  padding:50px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  overflow:hidden;
}
/* Founder Section Title */
.founder h1 {
  text-align:center;
  color:#9d4edd;
  letter-spacing:2px;
  margin-bottom:20px;
  position:relative;
  animation:glowingText 2s ease-in-out infinite alternate;
}
/* Founder Details Styling */
.founder-details {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  animation:slideUp 1.5s ease-out;
  opacity:0;
}
.founder-details img {
  max-width:200px;
  border-radius:50%;
  margin:20px 0;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.founder-details img:hover {
  transform:scale(1.1);
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}
.founder-details p {
  font-size:18px;
  font-weight:500;
  color:#333;
  text-align:justify;
  line-height:1.8;
  margin:20px 50px;
}
.founder-box {
  display:flex;
  flex-direction:column;
  align-items:center;
  background-color:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  max-width:950px;
  text-align:center;
}
.founder-box img {
  width:250px;
  height:250px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
}
.founder-box p {
  font-size:1.1rem;
  color:#555;
  line-height:1.6;
  text-align:left;
}
/* Slide Up Animation */
@keyframes slideUp {
  from {
  transform:translateY(50px);
  opacity:0;
}
to {
  transform:translateY(0);
  opacity:1;
}
}/* Default Styles - Desktop and Large Screens */
/* Media Query for Tablets */
@media (max-width:768px) {
  .section {
  height:auto;
  /* Allow dynamic height for smaller screens */
    padding:30px;
  border-radius:10px;
}
.founder h1 {
  font-size:28px;
  /* Reduce font size for smaller screens */
    letter-spacing:1.5px;
  margin-bottom:15px;
}
.founder-details {
  max-width:700px;
  /* Adjust width for tablets */
    margin-top:20px;
}
.founder-details img {
  max-width:150px;
  /* Smaller image size */
    margin:15px 0;
}
.founder-details p {
  font-size:16px;
  margin:15px 30px;
  line-height:1.6;
}
}/* Mobile (up to 480px) */
@media screen and (max-width:480px) {
  .section {
  padding:20px;
  height:auto;
  /* Reduce padding for smaller screens */
}
.founder h1 {
  font-size:24px;
  /* Smaller font size for mobile */
}
.founder-box {
  width:100%;
  /* Take full width on mobile */
    padding:15px;
  /* Adjust padding */
}
.founder-box img {
  width:180px;
  /* Smaller image size */
    height:180px;
  /* Ensure aspect ratio is maintained */
}
.founder-details p {
  font-size:16px;
  /* Smaller font size for text */
    margin:10px;
  /* Adjust margin for text */
    text-align:justify;
}
.founder-details {
  margin-top:20px;
  /* Add some space above the text */
}
}/* Tablet (481px to 768px) */
@media screen and (min-width:481px) and (max-width:768px) {
  .section {
  padding:30px;
  height:auto;
  /* Moderate padding for tablets */
}
.founder h1 {
  font-size:28px;
  /* Adjust font size for tablets */
}
.founder-box {
  width:90%;
  /* Allow some space around the content */
    padding:20px;
  /* Adjust padding */
}
.founder-box img {
  width:220px;
  /* Larger image size for tablets */
    height:200px;
  /* Maintain aspect ratio */
}
.founder-details p {
  font-size:17px;
  /* Adjust font size */
    margin:15px;
  /* Adjust text margin */
    text-align:justify;
}
.founder-details {
  margin-top:25px;
  /* Add more space above text */
}
}/* Tablet to Laptop (768px to 1019px) */
@media screen and (min-width:768px) and (max-width:1019px) {
  .section {
  padding:40px;
  height:auto;
}
.founder h1 {
  font-size:28px;
}
.founder-box {
  width:85%;
  padding:25px;
}
.founder-box img {
  width:230px;
  /* Adjust image size for this range */
    height:230px;
  /* Maintain aspect ratio */
}
.founder-details p {
  font-size:18px;
  /* Adjust paragraph font size for better readability */
    margin:20px;
  /* Provide more margin for text */
    text-align:justify;
}
.founder-details {
  margin-top:30px;
  /* More space above the text */
}
}/* Media Query for Extra Large Screens (1440px and above) */
@media screen and (min-width:1441px) {
  .section {
  padding:60px;
  height:auto;
  border-radius:25px;
}
.founder h1 {
  font-size:32px;
  margin-bottom:25px;
}
.founder-details {
  max-width:1000px;
}
.founder-details img {
  max-width:250px;
}
.founder-details p {
  font-size:16px;
  text-align:justify;
}
}/* Media Query for Laptops (1024px to 1440px) */
@media screen and (min-width:1024px) and (max-width:1440px) {
  .section {
  padding:40px;
  height:auto;
  border-radius:20px;
}
.founder h1 {
  font-size:32px;
  margin-bottom:20px;
}
.founder-details {
  max-width:800px;
}
.founder-details img {
  max-width:200px;
}
.founder-details p {
  font-size:18px;
  text-align:justify;
}
}/* Call-to-Action Section */
.cta-section {
  background-color:white;
  padding:40px;
  border-radius:20px;
  margin-top:60px;
  text-align:center;
}
.cta-section h2 {
  font-size:32px;
  font-weight:700;
  margin-bottom:20px;
  color:#9d4edd;
}
.cta-section p {
  font-size:18px;
  font-weight:500;
  margin-bottom:30px;
  color:#9d4edd;
}


.cta-button:active {
  transform:translateY(2px);
  box-shadow:none;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
  .cta-section {
  padding:20px;
  margin-top:30px;
}
.cta-section h2 {
  font-size:24px;
  /* Smaller font size for the heading */
    margin-bottom:15px;
}
.cta-section p {
  font-size:16px;
  /* Adjust paragraph font size */
    margin-bottom:20px;
  text-align:justify;
}
.cta-button {
  padding:12px 25px;
  /* Smaller button for mobile */
    font-size:1rem;
  /* Smaller font size for button */
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
  .cta-section {
  padding:30px;
  margin-top:40px;
}
.cta-section h2 {
  font-size:26px;
  /* Slightly smaller heading for tablets */
    margin-bottom:18px;
}
.cta-section p {
  font-size:17px;
  /* Adjust font size for paragraphs */
    margin-bottom:25px;
  text-align:justify;
}
.cta-button {
  padding:13px 28px;
  /* Adjust button size for tablets */
    font-size:1.05rem;
  /* Slightly smaller button font */
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
  .cta-section {
  padding:40px;
  margin-top:50px;
}
.cta-section h2 {
  font-size:28px;
  /* Medium font size for the header */
    margin-bottom:20px;
}
.cta-section p {
  font-size:18px;
  /* Adjust font size for paragraphs */
    margin-bottom:30px;
  text-align:justify;
}
.cta-button {
  padding:14px 30px;
  /* Adjust button size */
    font-size:1.1rem;
  /* Standard button font size */
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
  .cta-section {
  padding:40px;
  margin-top:60px;
}
.cta-section h2 {
  font-size:30px;
  /* Larger font size for desktop */
    margin-bottom:20px;
}
.cta-section p {
  font-size:18px;
  /* Standard paragraph font size */
    margin-bottom:30px;
  text-align:justify;
}
.cta-button {
  padding:15px 30px;
  /* Larger button size */
    font-size:1.1rem;
  /* Standard button font size */
}
}/* General Styling */
.why-choose-us {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  background-color:#f9f9f9;
  padding:100px 20px;
  height:100vh;
  overflow:hidden;
}
.container {
  display:flex;
  justify-content:center;
  align-items:center;
  max-width:1200px;
  width:100%;
  flex-wrap:wrap;
  gap:40px;
  animation:slideUp 1.5s ease-out;
  opacity:0;
  transform:translateY(50px);
}
/* Image Slider Section */
.image-slider {
  position:relative;
  width:350px;
  height:350px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background-color:#f4f4f4;
  /* Optional:background color for contrast */
}
/* Image Section */
.image {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.image img {
  width:90%;
  height:90%;
  object-fit:cover;
  border-radius:50%;
  box-shadow:0 12px 40px rgba(0,0,0,0.15);
}
/* Image Slider Active Class */
.image.active {
  opacity:1;
}
/* Text Section */
.text {
  flex:2;
  max-width:700px;
  background-color:#ffffff;
  padding:40px;
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  color:#333;
  text-align:center;
  transition:transform 0.3s ease,background-color 0.3s ease;
}
.text h1 {
  font-size:38px;
  color:#7b2cbf;
  /* Purple */
  font-weight:700;
  margin-bottom:20px;
  position:relative;
}
.text h1:hover::after {
  transform:scaleX(1);
}
.text .intro {
  font-size:20px;
  font-weight:500;
  margin-bottom:30px;
  color:#555;
}
/* Benefits Section */
.product-benefits {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}
.benefit {
  padding:20px;
  background:#f4f4f4;
  border-radius:15px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.benefit:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
}
.benefit h3 {
  font-size:24px;
  color:#7b2cbf;
  font-weight:600;
  margin-bottom:10px;
}
.benefit p {
  font-size:16px;
  line-height:1.7;
  color:#555;
}
/* Call to Action */
.cta-button {
  display:inline-block;
  background:#753BBD;
  padding:15px 30px;
  color:#fff;
  font-size:1.1rem;
  font-weight:bold;
  border-radius:50px;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 10px 20px rgba(123,44,191,0.2);
  margin-top:20px;
}
.cta-button:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(123,44,191,0.3);
}
.cta-button:active {
  transform:translateY(2px);
  box-shadow:none;
}
/* Scroll Animation */
@keyframes slideUp {
  from {
  transform:translateY(50px);
  opacity:0;
}
to {
  transform:translateY(0);
  opacity:1;
}
}/* General Styling for Vision Section */
.vision-section {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  padding:100px 20px;
  height:100vh;
  overflow:hidden;
  animation:slideUp 1.5s ease-out forwards;
}
.vision-content {
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  flex-wrap:wrap;
  gap:50px;
  opacity:0;
  transform:translateY(50px);
  animation:slideUp 1.5s ease-out forwards;
}
/* Vision Text Section */
.vision-text {
  flex:1;
  max-width:500px;
  padding:30px;
  border-radius:20px;
  text-align:center;
  transition:transform 0.3s ease,background-color 0.3s ease;
  position:relative;
  animation:slideInLeft 1.5s ease-out forwards;
}
.vision-text h1 {
  font-size:38px;
  color:#ffffff;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:1px;
  color:#9d4edd;
}
.vision-text h1::after {
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:50%;
  height:4px;
  border-radius:2px;
}
.vision-text p {
  font-size:16px;
  line-height:1.7;
  color:#9d4edd;
  margin-bottom:15px;
}
/* Vision Image Section */
.vision-image {
  max-width:300px;
  position:relative;
  height:200px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
}
/* Image Inside Circle */
.vision-image img {
  width:70%;
  height:70%;
  object-fit:cover;
}
@media (max-width:480px) {
  /* General Styling */
  .why-choose-us {
  padding:30px 10px;
  height:50%;
}
.container {
  flex-direction:column;
  gap:15px;
}
/* Image Slider Section */
  .image-slider {
  width:200px;
  height:200px;
}
.image img {
  width:85%;
  height:85%;
}
/* Text Section */
  .text {
  padding:15px;
  font-size:14px;
}
.text h1 {
  font-size:22px;
}
.text .intro {
  font-size:14px;
}
/* Benefits Section */
  .product-benefits {
  grid-template-columns:1fr;
  gap:10px;
}
.benefit {
  padding:15px;
}
.benefit h3 {
  font-size:18px;
}
.benefit p {
  font-size:12px;
}
/* Call to Action */
  .cta-button {
  font-size:0.9rem;
  padding:10px 15px;
}
/* Vision Section */
  .vision-section {
  padding:30px 10px;
}
.vision-content {
  flex-direction:column;
  gap:20px;
}
.vision-text {
  padding:15px;
  max-width:100%;
}
.vision-text h1 {
  font-size:22px;
}
.vision-text p {
  font-size:12px;
}
.vision-image {
  max-width:250px;
  height:250px;
}
.vision-image img {
  width:90%;
  height:90%;
}
}/* Mobile Devices:486px to 781px */
@media (min-width:480px) and (max-width:781px) {
  .why-choose-us {
  padding:60px 15px;
  height:50%;
  /* Adjust padding for smaller mobile devices */
}
.container {
  flex-direction:column;
  /* Stack content vertically for better mobile layout */
    gap:20px;
}
.image-slider {
  width:250px;
  height:250px;
  border-radius:50%;
}
.text {
  padding:20px;
  max-width:100%;
}
.text h1 {
  font-size:28px;
  /* Slightly smaller font size for mobile */
}
.text .intro {
  font-size:16px;
  /* Adjust intro text size */
}
.product-benefits {
  grid-template-columns:1fr;
  /* One column for benefits */
    gap:20px;
}
.benefit {
  padding:15px;
}
.cta-button {
  padding:12px 25px;
  font-size:1rem;
}
.vision-section {
  padding:60px 15px;
}
.vision-text {
  padding:20px;
  max-width:100%;
}
.vision-text h1 {
  font-size:30px;
  /* Slightly smaller heading for this range */
}
.vision-text p {
  font-size:14px;
  /* Smaller text for mobile readability */
}
.vision-image {
  max-width:100%;
  height:300px;
  /* Adjust image height */
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Tablet (Up to 1024px) */
@media (max-width:1024px) {
  .why-choose-us {
  padding:80px 10px;
}
.container {
  flex-direction:column;
  /* Stack content vertically */
    gap:20px;
}
.image-slider {
  width:250px;
  height:250px;
  border-radius:50%;
}
.text {
  padding:25px;
  max-width:100%;
}
.text h1 {
  font-size:28px;
}
.text .intro {
  font-size:16px;
}
.product-benefits {
  grid-template-columns:1fr;
  /* Single column layout */
    gap:20px;
}
.benefit {
  padding:15px;
}
.cta-button {
  padding:12px 25px;
  font-size:1rem;
}
.vision-section {
  padding:60px 10px;
}
.vision-text {
  padding:20px;
  max-width:100%;
}
.vision-text h1 {
  font-size:32px;
}
.vision-text p {
  font-size:14px;
}
.vision-image {
  max-width:100%;
  height:300px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Laptop (Up to 1440px) */
@media (max-width:1440px) {
  .why-choose-us {
  padding:80px 20px;
}
.container {
  flex-direction:row;
  gap:30px;
}
.image-slider {
  width:300px;
  height:300px;
  border-radius:50%;
}
.text {
  padding:30px;
  max-width:700px;
}
.text h1 {
  font-size:32px;
}
.text .intro {
  font-size:18px;
}
.product-benefits {
  grid-template-columns:1fr 1fr;
  /* Two-column layout */
    gap:30px;
}
.cta-button {
  padding:15px 30px;
  font-size:1.1rem;
}
.vision-section {
  padding:80px 20px;
}
.vision-text {
  padding:30px;
  max-width:600px;
}
.vision-text h1 {
  font-size:36px;
}
.vision-text p {
  font-size:16px;
}
.vision-image {
  max-width:400px;
  height:400px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Desktop (Above 1440px) */
@media (min-width:1440px) {
  .why-choose-us {
  padding:100px 40px;
}
.container {
  flex-direction:row;
  gap:40px;
}
.image-slider {
  width:350px;
  height:350px;
  border-radius:50%;
}
.text {
  padding:40px;
  max-width:700px;
}
.text h1 {
  font-size:30px;
}
.text .intro {
  font-size:20px;
}
.product-benefits {
  grid-template-columns:1fr 1fr;
  /* Two-column layout */
    gap:30px;
}
.cta-button {
  padding:15px 30px;
  font-size:1.1rem;
}
.vision-section {
  padding:100px 40px;
}
.vision-text {
  padding:40px;
  max-width:700px;
}
.vision-text h1 {
  font-size:38px;
}
.vision-text p {
  font-size:16px;
}
.vision-image {
  max-width:400px;
  height:400px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Contact Footer */
.contact-footer {
  padding:20px;
  color:#753BBD;
  text-align:center;
  border-radius:5px;
  /* Smaller border-radius */
  position:relative;
  overflow:hidden;
}
.contact-footer h3 {
  font-size:20px;
  /* Smaller font size */
  font-weight:600;
  margin-bottom:15px;
  letter-spacing:1px;
  position:relative;
}
.contact-footer h3::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-5px;
  transform:translateX(-50%);
  width:30px;
  /* Smaller underline */
  height:2px;
  background-color:#ffd700;
  /* Accent color for underline */
  border-radius:10px;
  animation:underlineAnim 1.5s infinite;
}
.contact-footer .social-links {
  display:flex;
  justify-content:center;
  gap:10px;
  /* Reduced gap between icons */
  margin-top:15px;
}
.contact-footer .social-links a {
  font-size:20px;
  /* Equalized and smaller icon size */
  color:#fff;
  background-color:#753BBD;
  /* Dark background for icons */
  width:40px;
  /* Smaller circle size */
  height:40px;
  /* Equal height and width for circle */
  display:flex;
  text-decoration:none;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  /* Perfect circle */
  border:2px solid transparent;
  transition:all 0.3s ease;
}
.contact-footer .social-links a:hover {
  transform:translateY(-3px);
  /* Slight lift effect */
  background-color:#ffd700;
  /* Accent color for hover */
  color:#fff;
  box-shadow:0 5px 15px rgba(255,111,97,0.3);
  /* Soft glowing effect */
  border:2px solid #ffd700;
  /* Accent border on hover */
}
.contact-footer .social-links a:active {
  transform:translateY(1px);
  /* Slight downward effect on click */
  box-shadow:0 5px 15px rgba(255,111,97,0.5);
  /* Stronger glow on click */
}
/* Keyframe for the underline animation */
@keyframes underlineAnim {
  0% {
  width:30px;
}
50% {
  width:45px;
}
100% {
  width:30px;
}
}/* Mobile (up to 480px) */
@media (max-width:480px) {
  .vision-section {
  padding:50px 15px;
  height:auto;
  /* Allow content to flow vertically */
}
.vision-content {
  flex-direction:column;
  gap:30px;
  /* Reduce the gap between content */
    padding:20px;
}
.vision-text {
  max-width:100%;
  padding:20px;
  text-align:justify;
  font-size:14px;
  /* Smaller text for mobile */
}
.vision-text h1 {
  font-size:28px;
  /* Smaller heading */
}
.vision-text p {
  font-size:14px;
  /* Smaller paragraph text */
}
.vision-image {
  max-width:80%;
  height:250px;
  /* Reduce height for mobile */
    margin-bottom:20px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
  .vision-section {
  padding:80px 20px;
  height:auto;
}
.vision-content {
  flex-direction:column;
  gap:40px;
}
.vision-text {
  max-width:80%;
  padding:25px;
  text-align:justify;
  font-size:16px;
  /* Slightly larger text */
}
.vision-text h1 {
  font-size:32px;
  /* Adjust heading size */
}
.vision-image {
  max-width:80%;
  height:350px;
  /* Increase height for tablets */
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
  .vision-section {
  padding:100px 30px;
  height:auto;
}
.vision-content {
  flex-direction:row;
  gap:50px;
}
.vision-text {
  max-width:500px;
  padding:30px;
  font-size:18px;
  text-align:justify;
}
.vision-text h1 {
  font-size:36px;
}
.vision-image {
  max-width:450px;
  height:450px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
  .vision-section {
  padding:120px 50px;
  height:100vh;
  /* Ensure section takes full viewport height */
}
.vision-content {
  flex-direction:row;
  gap:60px;
}
.vision-text {
  max-width:500px;
  padding:30px;
  text-align:justify;
  font-size:20px;
  /* Larger text for readability */
}
.vision-text h1 {
  font-size:38px;
}
.vision-image {
  max-width:500px;
  height:500px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Large Tablets (1025px to 1280px) */
@media (min-width:1025px) and (max-width:1280px) {
  .vision-section {
  padding:120px 40px;
}
.vision-content {
  flex-direction:row;
  gap:50px;
}
.vision-text {
  max-width:600px;
  padding:35px;
}
.vision-text h1 {
  font-size:40px;
}
.vision-image {
  max-width:550px;
  height:550px;
}
.vision-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
}/* Wider Desktops (1281px and above) */
@media (min-width:1281px) {
  .vision-section {
  padding:10px 70px;
  max-height:500px;
}
.vision-content {
  flex-direction:row;
  gap:80px;
}
.vision-text {
  max-width:650px;
  padding:40px;
  font-size:22px;
}
.vision-text h1 {
  font-size:32px;
}
.vision-image {
  max-width:650px;
  height:650px;
}
.vision-image img {
  width:60%;
  height:58%;
  object-fit:cover;
}
}.copywrite {
  padding-top:15px;
  padding-bottom:15px;
  text-align:center;
  color:#753BBD;
}
.strong_font {
  font-size:15px;
  color: #753BBD;
  

}

