@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:#ffffff;
  display:flex;
  flex-direction:column;
}
/*header*/
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;
}
/* Hover effect for links */
.nav-links li a:hover {
  background-color:#fff34fcf;
}
/* 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;
}
}/* Content */
.content {
  margin-left:260px;
  /* Ensure content doesn't overlap with sidebar */
  padding:20px;
}
.contact-body {
  max-width:1320px;
  margin:0 auto;
  padding:0 1rem;
}
.contact-info {
  margin:2rem 0;
  text-align:center;
  padding:2rem 0;
}
.contact-info span {
  display:block;
}
.contact-info div {
  margin:0.8rem 0;
  padding:1rem;
}
.contact-info span .fas {
  font-size:2rem;
  padding-bottom:0.9rem;
  color:#630168;
}
.contact-info div span:nth-child(2) {
  font-weight:500;
  font-size:1.1rem;
}
.contact-info .text {
  padding-top:0.4rem;
}
.contact-form {
  padding:2rem 0;
  border-top:1px solid #c7c7c7;
}
.contact-form form {
  padding-bottom:1rem;
}
.form-control {
  width:100%;
  border:1.5px solid #c7c7c7;
  border-radius:5px;
  padding:0.7rem;
  margin:0.6rem 0;
  font-size:1rem;
  outline:0;
}
.form-control:focus {
  box-shadow:0 0 6px -3px rgba(48,48,48,1);
}
.contact-form form div {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:0.6rem;
}
.send-btn {
  font-size:1rem;
  color:#fff;
  background:#753BBD;
  border:none;
  border-radius:5px;
  padding:0.7rem 1.5rem;
  cursor:pointer;
  transition:all 0.4s ease;
}
.send-btn:hover {
  opacity:0.8;
  background:#Fff44f;
}
.contact-form>div img {
  width:60%;
}
.contact-form>div {
  margin:0 auto;
  text-align:center;
}
/* Contact Footer */
.contact-footer {
  padding:20px;
  color:#753BBD;
  text-align:center;
  border-radius:5px;
  font-family:'Montserrat',sans-serif;
  position:relative;
  overflow:hidden;
}
.contact-footer h3 {
  font-size:20px;
  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;
  height:2px;
  background-color:#ffd700;
  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 */
}
@keyframes appear {
  from {
  opacity:0;
  scale:0.5;
}
to {
  opacity:1;
  scale:1;
}
}/*responsive*/

@media screen and (min-width:768px) {
  .contact-bg .text {
  width:70%;
  margin-left:auto;
  margin-right:auto;
}
.contact-info {
  display:grid;
  grid-template-columns:repeat(2,1fr);
}
}@media screen and (min-width:992px) {
  .contact-bg .text {
  width:50%;
}
.contact-form {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  align-items:center;
}
}@media screen and (min-width:1200px) {
  .contact-info {
  grid-template-columns:repeat(4,1fr);
}
}@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:#ffffff;
  padding:30px 20px;
  text-align:center;
  border-bottom:2px solid #eee;
  box-shadow:0px 10px 20px rgba(0,0,0,0.05);
}
.contact-text {
  font-family:'Arial',sans-serif;
}
.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;
}
/* Contact Info Section */
.contact-info-section {
  padding:50px 20px;
  background-color:#ffffff;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.contact-info-section .contact-heading {
  font-size:32px;
  color:#7b2cbf;
  font-weight:bold;
  margin-bottom:15px;
  transition:color 0.3s ease,transform 0.3s ease;
}
.contact-info-section .contact-heading:hover {
  color:#ffdb58;
  transform:translateY(-5px);
}
.contact-info-section .contact-description {
  font-size:16px;
  margin-bottom:30px;
  color:#777;
  transition:color 0.3s ease;
}
.contact-info-section .contact-description:hover {
  color:#7b2cbf;
}
.contact-info {
  display:flex;
  justify-content:space-around;
  margin-bottom:50px;
  opacity:0;
  transform:translateY(50px);
  animation:slideUp 1s forwards;
  animation-delay:0.3s;
}
.contact-info .info-item {
  width:200px;
  font-size:16px;
  color:#555;
  transition:transform 0.3s ease,color 0.3s ease;
}
.contact-info .info-item:hover {
  transform:scale(1.1);
  color:#7b2cbf;
}
.contact-info .info-item span {
  display:block;
  margin-bottom:5px;
}
.contact-info .info-item i {
  font-size:24px;
  color:#7b2cbf;
  margin-right:10px;
  transition:color 0.3s ease;
}
.contact-info .info-item:hover i {
  color:#ffdb58;
}
/* Mobile (up to 480px) */
@media (max-width:480px) {
  .contact-section {
  padding:20px 15px;
}
.contact-text ul {
  flex-direction:column;
  align-items:center;
  font-size:14px;
}
.contact-text ul a {
  margin:5px 0;
}
.contact-text ul a i {
  font-size:18px;
  margin-right:5px;
}
.contact-text ul li {
  margin:5px 0;
  font-size:16px;
}
.contact-text hr {
  width:90%;
}
.contact-info-section {
  padding:30px 15px;
}
.contact-info {
  flex-direction:column;
  margin-bottom:30px;
}
.contact-info .info-item {
  width:100%;
  margin-bottom:20px;
  font-size:14px;
}
.contact-info .info-item i {
  font-size:22px;
}
}/* Tablet (481px to 768px) */
@media (min-width:481px) and (max-width:768px) {
  .contact-section {
  padding:30px 20px;
}
.contact-text ul {
  flex-direction:column;
  font-size:16px;
}
.contact-text ul li {
  margin:5px 0;
}
.contact-text hr {
  width:90%;
}
.contact-info-section {
  padding:40px 20px;
}
.contact-info {
  flex-direction:row;
  justify-content:space-evenly;
}
.contact-info .info-item {
  width:150px;
  font-size:16px;
}
.contact-info .info-item i {
  font-size:22px;
}
}/* Laptop (769px to 1024px) */
@media (min-width:769px) and (max-width:1024px) {
  .contact-section {
  padding:40px 20px;
}
.contact-text ul {
  font-size:18px;
}
.contact-text ul li {
  margin:10px 0;
}
.contact-text hr {
  width:80%;
}
.contact-info-section {
  padding:50px 30px;
}
.contact-info {
  flex-direction:row;
  justify-content:space-evenly;
}
.contact-info .info-item {
  width:200px;
  font-size:16px;
}
.contact-info .info-item i {
  font-size:24px;
}
}/* Desktop (1025px and above) */
@media (min-width:1025px) {
  .contact-section {
  padding:50px 40px;
}
.contact-text ul {
  font-size:18px;
}
.contact-text ul li {
  margin:10px 0;
}
.contact-text hr {
  width:80%;
}
.contact-info-section {
  padding:60px 40px;
}
.contact-info {
  flex-direction:row;
  justify-content:space-around;
  margin-bottom:60px;
}
.contact-info .info-item {
  width:200px;
  font-size:16px;
}
.contact-info .info-item i {
  font-size:24px;
}
}/* Contact Form Styling */
.contact-form {
  padding:2rem 0;
  border-top:1px solid #c7c7c7;
}
.contact-form form {
  padding-bottom:1rem;
}
.contact-form form div {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:0.6rem;
}
.contact-form>div img {
  width:100%;
}
.contact-form>div {
  margin:0 auto;
  text-align:center;
}
@media screen and (min-width:992px) {
  .contact-bg .text {
  width:50%;
}
.contact-form {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  align-items:center;
}
}/* Contact Image Styling */
.contact-image {
  margin-top:30px;
}
.image-circle {
  width:250px;
  height:250px;
  border-radius:100%;
  border:5px solid #ddd;
  overflow:hidden;
  box-shadow:0 0 15px rgba(123,44,191,0.4);
}
.image-circle:hover {
  border:5px solid #7b2cbf;
  box-shadow:0 0 20px rgba(123,44,191,0.8);
}
.image-circle img {
  width:100%;
  height:100%;
  object-fit:cover;
}
/* Keyframes for Fade In Effect */
@keyframes fadeIn {
  from {
  opacity:0;
  transform:scale(0.95);
}
to {
  opacity:1;
  transform:scale(1);
}
}@media (max-width:768px) {
  .contact-form .form-row {
  flex-direction:column;
}
.contact-form .form-control {
  width:100%;
  /* Full width on smaller screens */
    padding:12px 20px;
  /* Adjust padding for smaller screens */
}
.contact-form .form-control,.contact-form select,.contact-form textarea {
  font-size:16px;
  /* Adjust font size for smaller screens */
}
}/* Map Section */
.map-section {
  padding:80px 20px;
  /* Increased padding for better spacing */
  background-color:#f5f5f5;
  text-align:center;
  position:relative;
  overflow:hidden;
  /* Prevent overflow when scaling */
}
.map-section .map-heading {
  font-size:32px;
  font-weight:700;
  color:#7b2cbf;
  margin-bottom:30px;
  transition:transform 0.4s ease,color 0.4s ease;
}
.map-section .map-heading:hover {
  color:#ffdb58;
  transform:translateY(-10px);
}
.map-section .map-description {
  font-size:18px;
  color:#777;
  margin-bottom:30px;
  transition:color 0.3s ease;
  line-height:1.5;
}
.map-section .map-description:hover {
  color:#7b2cbf;
  /* Color change on hover */
}
.map iframe {
  width:100%;
  height:450px;
  border:none;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  /* Enhanced box shadow for depth */
  border-radius:10px;
  /* Rounded corners for a smoother look */
  transition:transform 0.3s ease,box-shadow 0.3s ease;
  filter:brightness(90%);
  /* Slight dimming for an elegant feel */
}
.map iframe:hover {
  transform:scale(1.05);
  /* Zoom effect on hover */
  box-shadow:0 10px 30px rgba(123,44,191,0.3);
  /* Glowing shadow on hover */
  filter:brightness(100%);
  /* Brighten on hover */
}
/* Map Section Animation */
.map-section {
  animation:fadeInUp 1s ease-out forwards;
  /* Added fade-in and slide-up effect */
}
@keyframes fadeInUp {
  from {
  opacity:0;
  transform:translateY(20px);
}
to {
  opacity:1;
  transform:translateY(0);
}
}/* Additional Hover Effects for Map Container */
.map-section:hover .map-description {
  color:#7b2cbf;
  transform:scale(1.05);
  /* Slight scaling effect for the description */
}
/* Social Media Section */
.social-media-section {
  padding:30px 20px;
  /* Reduced padding for a more compact section */
  color:#7b2cbf;
  text-align:center;
  position:relative;
  border-radius:50px;
  /* Subtle shadow */
  max-width:100%;
  /* Reduced width for compactness */
  margin:0 auto;
  height:20vh;
}
.social-media-section .social-links {
  display:flex;
  justify-content:center;
  gap:12px;
  /* Reduced gap */
}
.social-media-section .social-links a {
  font-size:22px;
  /* Smaller icons for compact layout */
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  width:40px;
  text-decoration:none;
  height:40px;
  border-radius:50%;
  border:2px solid #fff;
  transition:transform 0.3s,color 0.3s;
}
.social-media-section .social-links a:hover {
  transform:scale(1.1);
  /* Slight icon scaling on hover */
  color:#ffdb58;
  box-shadow:0 0 10px rgba(255,219,88,0.8);
  /* Glowing effect */
}
/* Media Query for Tablets and Smaller Screens */
@media (max-width:768px) {
  .social-media-section {
  padding:20px 15px;
  /* Slightly reduced padding for smaller screens */
    height:auto;
  /* Adjust height for flexibility */
}
.social-media-section .social-links {
  gap:10px;
  /* Reduced gap for tighter layout */
}
.social-media-section .social-links a {
  font-size:20px;
  /* Slightly smaller icons */
    width:35px;
  /* Slightly smaller icons */
    height:35px;
}
}/* Media Query for Mobile Screens */
@media (max-width:480px) {
  .social-media-section {
  padding:15px 10px;
  /* Further reduced padding for small screens */
    height:auto;
  /* Flexible height */
}
.social-media-section .social-links {
  gap:8px;
  /* Reduced gap for mobile */
}
.social-media-section .social-links a {
  font-size:18px;
  /* Smaller icons for mobile screens */
    width:30px;
  /* Even smaller icon size */
    height:30px;
}
}/* Testimonials Section */
.testimonials-section {
  padding:70px 20px;
  background:linear-gradient(135deg,rgba(123,44,191,0.1),rgba(255,219,88,0.1));
  /* Soft gradient background */
  text-align:center;
  position:relative;
  overflow:hidden;
  border-radius:20px;
  /* Rounded corners for elegance */
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
  /* Floating box shadow */
  animation:fadeInBackground 2s ease-out;
  /* Background fade-in */
}
/* Background Animation */
@keyframes fadeInBackground {
  0% {
  background:rgba(123,44,191,0.1);
}
100% {
  background:linear-gradient(135deg,rgba(123,44,191,0.1),rgba(255,219,88,0.1));
}
}/* Heading Styling */
.testimonials-section .testimonials-heading {
  font-weight:700;
  color:#7b2cbf;
  margin-bottom:40px;
  animation:fadeIn 1.5s ease-out;
}
/* Testimonial Styling */
.testimonials-section .testimonial {
  margin-bottom:40px;
  opacity:0;
  transform:translateY(50px);
  animation:slideUp 1s forwards,fadeInText 1s ease-in-out;
  animation-delay:0.3s;
  position:relative;
  transition:transform 0.3s ease,box-shadow 0.3s ease,filter 0.3s ease;
  border-radius:10px;
  padding:30px;
  background-color:rgba(255,255,255,0.9);
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}
/* Hover Effects */
.testimonials-section .testimonial:hover {
  transform:translateY(-5px) rotateY(5deg);
  /* 3D Tilt effect */
  box-shadow:0 20px 40px rgba(123,44,191,0.5);
  /* Glowing border on hover */
  filter:brightness(1.05);
}
/* Slide Up Animation */
@keyframes slideUp {
  0% {
  opacity:0;
  transform:translateY(50px);
}
100% {
  opacity:1;
  transform:translateY(0);
}
}/* Text Fade-In Effect for the Author Name */
@keyframes fadeInText {
  0% {
  opacity:0;
}
100% {
  opacity:1;
}
}/* Text Styling */
.testimonials-section .testimonial p {
  font-size:14px;
  color:#555;
  font-style:italic;
  line-height:1.5;
  margin-bottom:20px;
  position:relative;
  z-index:1;
}
/* Testimonial Author Name */
.testimonials-section .testimonial span {
  display:block;
  font-size:16px;
  color:#7b2cbf;
  margin-top:10px;
  font-weight:600;
  text-transform:capitalize;
  position:relative;
  z-index:2;
}
/* Testimonial Image */
.testimonials-section .testimonial img {
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:50%;
  border:5px solid #7b2cbf;
  /* Border around image */
  margin-bottom:20px;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.testimonials-section .testimonial img:hover {
  transform:scale(1.1);
  /* Slight zoom on hover */
  box-shadow:0 0 20px rgba(123,44,191,0.7);
  /* Glowing border effect */
}
/* Particle Animation (Floating particles) */
.testimonials-section .particle {
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  height:100%;
  background-image:url('particles.png');
  /* You can replace with actual particle image */
  animation:floatParticles 10s infinite linear;
}
/* Floating Particles Animation */
@keyframes floatParticles {
  0% {
  transform:translateX(-50%) translateY(0);
}
50% {
  transform:translateX(-50%) translateY(-20px);
}
100% {
  transform:translateX(-50%) translateY(0);
}
}/* Media Query for Large Desktop (1200px and above) */
@media (min-width:1200px) {
  .testimonials-section {
  padding:100px 40px;
  /* More padding for larger screens */
}
.testimonials-section .testimonials-heading {
  font-size:32px;
  /* Larger heading font size */
}
.testimonials-section .testimonial {
  padding:40px;
  /* More padding inside testimonials */
}
.testimonials-section .testimonial p {
  text-align:justify;
  font-size:16px;
  /* Larger text for testimonials */
}
.testimonials-section .testimonial img {
  width:80px;
  /* Larger profile picture */
    height:80px;
}
}/* Media Query for Laptops (768px to 1199px) */
@media (max-width:1199px) and (min-width:768px) {
  .testimonials-section {
  padding:70px 30px;
  /* Reduced padding for laptops */
}
.testimonials-section .testimonials-heading {
  font-size:32px;
  /* Slightly smaller heading font size */
}
.testimonials-section .testimonial {
  padding:30px;
  /* Standard padding for testimonials */
}
.testimonials-section .testimonial p {
  text-align:justify;
  font-size:18px;
  /* Standard testimonial text size */
}
.testimonials-section .testimonial img {
  width:70px;
  /* Standard image size */
    height:70px;
}
}/* Media Query for Tablets (600px to 767px) */
@media (max-width:767px) and (min-width:600px) {
  .testimonials-section {
  padding:50px 20px;
  /* Reduced padding for tablets */
}
.testimonials-section .testimonials-heading {
  font-size:28px;
  /* Smaller heading */
}
.testimonials-section .testimonial {
  padding:20px;
  /* Smaller padding for testimonials */
}
.testimonials-section .testimonial p {
  text-align:justify;
  font-size:16px;
  /* Smaller text for testimonials */
}
.testimonials-section .testimonial img {
  width:60px;
  /* Smaller profile picture */
    height:60px;
}
}/* Media Query for Mobile Devices (max-width:599px) */
@media (max-width:599px) {
  .testimonials-section {
  padding:40px 10px;
  /* Further reduced padding */
}
.testimonials-section .testimonials-heading {
  font-size:24px;
  /* Smaller heading */
}
.testimonials-section .testimonial {
  padding:15px;
  /* Smaller padding for mobile */
}
.testimonials-section .testimonial p {
  text-align:justify;
  font-size:14px;
  /* Smaller text for testimonials */
}
.testimonials-section .testimonial img {
  width:50px;
  /* Smallest profile picture */
    height:50px;
}
}/* FAQ Section */
.faq-section {
  padding:80px 20px;
  background:radial-gradient(circle,rgba(255,255,255,0.8),rgba(245,245,245,0.7));
  position:relative;
  border-radius:30px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  /* Soft shadow */
  overflow:hidden;
  /* Hidden overflow for the slanted background */
  text-align:left;
  transition:all 0.3s ease;
}
.faq-section:hover {
  transform:scale(1.02);
  /* Slight zoom-in effect */
  box-shadow:0 20px 60px rgba(123,44,191,0.3);
  /* Enhanced shadow */
}
.faq-section .faq-heading {
  font-weight:600;
  color:#753BBD;
  text-align:center;
  margin-bottom:30px;
  position:relative;
  transition:color 0.3s ease;
}
.faq-section .faq-item {
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  /* Subtle shadow */
  margin-bottom:20px;
  padding:20px;
  opacity:0;
  transform:translateX(-50px);
  animation:slideIn 0.8s forwards;
}
.faq-section .faq-item h4 {
  font-size:26px;
  color:#333;
  margin-bottom:10px;
  position:relative;
  letter-spacing:1px;
  transition:color 0.3s ease;
}
.faq-section .faq-item h4:hover {
  color:#7b2cbf;
}
.faq-section .faq-item p {
  font-size:16px;
  color:#777;
  line-height:1.7;
  font-family:'Open Sans',sans-serif;
  transition:color 0.3s ease;
}
.faq-section .faq-item:hover {
  transform:translateX(0);
  box-shadow:0 6px 18px rgba(123,44,191,0.2);
  /* Shadow expansion */
}
.faq-section .faq-item:hover h4 {
  color:#ffdb58;
  /* Change text color on hover */
}
.faq-section .faq-item p:hover {
  color:#333;
  /* Text color change */
}
.faq-section .faq-item:hover p {
  text-shadow:0 2px 6px rgba(123,44,191,0.3);
  /* Glow effect on paragraph */
}
/* Keyframe Animations */
@keyframes slideIn {
  0% {
  opacity:0;
  transform:translateX(-50px);
}
100% {
  opacity:1;
  transform:translateX(0);
}
}@keyframes scalePulse {
  0% {
  transform:scaleX(1);
}
50% {
  transform:scaleX(1.3);
}
100% {
  transform:scaleX(1);
}
}/* Base Styles for Desktop and Larger Screens */
.faq-section {
  padding:80px 20px;
  background:radial-gradient(circle,rgba(255,255,255,0.8),rgba(245,245,245,0.7));
  position:relative;
  border-radius:30px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  /* Soft shadow */
  overflow:hidden;
  text-align:left;
  transition:all 0.3s ease;
}
.faq-section:hover {
  transform:scale(1.02);
  box-shadow:0 20px 60px rgba(123,44,191,0.3);
  /* Enhanced shadow */
}
.faq-section .faq-item {
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  margin-bottom:20px;
  padding:20px;
  opacity:0;
  transform:translateX(-50px);
  animation:slideIn 0.8s forwards;
}
.faq-section .faq-item p {
  font-size:16px;
  color:#777;
  line-height:1.7;
  font-family:'Open Sans',sans-serif;
}
/* Keyframe Animations */
@keyframes slideIn {
  0% {
  opacity:0;
  transform:translateX(-50px);
}
100% {
  opacity:1;
  transform:translateX(0);
}
}@keyframes scalePulse {
  0% {
  transform:scaleX(1);
}
50% {
  transform:scaleX(1.3);
}
100% {
  transform:scaleX(1);
}
}/* Media Query for Large Desktop (1200px and above) */
@media (min-width:1200px) {
  .faq-section {
  padding:100px 40px;
}
.faq-section .faq-heading {
  font-size:32px;
}
.faq-section .faq-item h4 {
  font-size:20px;
}
.faq-section .faq-item p {
  font-size:16px;
}
}/* Media Query for Laptops (768px to 1199px) */
@media (max-width:1199px) and (min-width:768px) {
  .faq-section {
  padding:80px 30px;
}
.faq-section .faq-heading {
  font-size:1.8rem;
}
.faq-section .faq-item h4 {
  font-size:1.4rem;
}
.faq-section .faq-item p {
  font-size:16px;
}
}/* Media Query for Tablets (600px to 767px) */
@media (max-width:767px) and (min-width:600px) {
  .faq-section {
  padding:60px 20px;
  /* Smaller padding for tablets */
}
.faq-section .faq-heading {
  font-size:1.6rem;
  /* Slightly smaller heading */
}
.faq-section .faq-item {
  padding:15px;
  /* Adjust padding for smaller screens */
}
.faq-section .faq-item h4 {
  font-size:1.3rem;
  /* Smaller question text size */
}
.faq-section .faq-item p {
  font-size:14px;
  /* Smaller paragraph text size */
}
}/* Media Query for Mobile Devices (max-width:599px) */
@media (max-width:599px) {
  .faq-section {
  padding:40px 10px;
  /* Reduced padding for mobile */
}
.faq-section .faq-heading {
  font-size:1.4rem;
  /* Smaller font size for mobile */
}
.faq-section .faq-item h4 {
  font-size:1.2rem;
  /* Smaller heading text for mobile */
}
.faq-section .faq-item p {
  font-size:14px;
  /* Smaller paragraph text */
}
}/* SlideUp Animation */
@keyframes slideUp {
  from {
  opacity:0;
  transform:translateY(50px);
}
to {
  opacity:1;
  transform:translateY(0);
}
}/* SlideUp Animation */
@keyframes slideUp {
  from {
  opacity:0;
  transform:translateY(50px);
}
to {
  opacity:1;
  transform:translateY(0);
}
}.copywrite {
  padding-top:15px;
  padding-bottom:15px;
  text-align:center;
  color:#753BBD;
}
