

#getQuoteBtn:hover {
    background: #ffcc00;
}/* Get Quote Button */
#getQuoteBtn {
    position: fixed;
    bottom: 20px;
    left:  20px;
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    color: black;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

#getQuoteBtn:hover {
    background: linear-gradient(135deg, #ff8800, #ffcc00);
    
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 350px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #444;
}

/* Happy Person Icon */
.happy-icon {
    font-size: 50px;
    margin-bottom: 10px;
    color: #ff8800;
}

/* Form Inputs */
.popup-content input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 7px;
}

.popup-content button {
    background: linear-gradient(135deg, #ffcc00, #ff8800);
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 7px;
    margin-top: 12px;
    transition: 0.3s;
}

.popup-content button:hover {
    background: linear-gradient(135deg, #ff8800, #ffcc00);
}

/* Thank You Message */
.thank-you-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6b5ff0;
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.5s ease-in-out, fadeOut 3s 2s forwards;
}

/* Celebration Balloons */
.balloons {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 100px;
    background: url('https://cdn-icons-png.flaticon.com/512/2762/2762445.png') no-repeat center/contain;
    animation: floatUp 3s infinite;
}

/* Confetti Animation */
.confetti {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: url('https://cdn-icons-png.flaticon.com/512/1057/1057093.png') no-repeat center/contain;
    animation: fadeOut 3s forwards;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

@keyframes floatUp {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(-100px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; display: none; }
}
/* Gradient Background Section */
#gradient-container {
    width: 100%;
    padding: 60px 40px;
    border-radius: 12px;
    background: linear-gradient(-45deg, #673147, #AA336A, #5e189a, #3c096c);
    background-size: 400% 400%;
    animation: gradientBG 8s ease-in-out infinite;
    min-height: 450px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Gradient Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Service Section Wrapper */
/* Service Section Wrapper */
.service-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Box (No Background) */
.service-box {
    width: 30%;
    padding: 30px;
    text-align: center;
}

/* Separator Line */
.service-box:not(:last-child) {
    position: relative;
}

.service-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 4px;
    background: rgba(255, 255, 255, 0.3);
}

/* Heading Icon - Placed Above the Heading */
.service-heading-icon {
    font-size: 50px;
    color: #ffffff;  /* White Color */
    margin-bottom: 15px;
    display: block;
    
    /* Animation */
    animation: bounceEffect 2s infinite ease-in-out;
    transition: transform 0.3s ease-in-out;
}

/* Icon Hover Effect */
.service-heading-icon:hover {
    transform: scale(1.1); /* Slight zoom effect */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)); /* Glow effect */
}

/* Bounce Animation */
@keyframes bounceEffect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); } /* Move up slightly */
}

/* Service Item Icons - Smooth Entrance */
.service-icon {
    font-size: 22px;
    color: #ffffff;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInLeft 0.8s ease-in-out forwards;
}

/* List Item Animation */
.service-item {
    opacity: 0;
    transform: translateX(-15px);
    animation: slideIn 0.8s ease-in-out forwards;
    animation-delay: 0.2s;
}

/* Fade-in Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide-in Effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animation for list items */
.service-item:nth-child(1) { animation-delay: 0.2s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.8s; }
.service-item:nth-child(5) { animation-delay: 1s; }
.service-item:nth-child(6) { animation-delay: 1.2s; }


/* Service Category Title */
.service-category {
    font-size: 32px;
    font-family: 'Poppins', sans-serif; /* Modern Font */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Service Item */
.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

/* Service Icons */
.service-icon {
    margin-right: 12px;
    color: #e0aaff;
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #services-container {
        padding: 40px 20px;
    }
    .service-box {
        width: 100%;
    }
    .service-box:not(:last-child)::after {
        display: none; /* Remove separator on smaller screens */
    }
}
.email-link {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps original text color */
    transition: color 0.3s ease;
}
.trust-badge {
    display: block;
    max-width: 150px; /* Adjust size as needed */
    width: 100%;
    margin: 15px auto 0; /* Adds space above & centers image */
}
.email-link:hover {
    color: #ffcc00; /* Change color on hover */
}
  /* Global Resets */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
  }
/* Topbar Styles */
.topbar {
  background-color:  rgb(78, 4, 78); /* Light purple */
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.topbar .contact-info span {
  margin-right: 15px;
}

.topbar .contact-info i {
  margin-right: 5px;
}
/* Navbar Styles */
.navbar {
  background: linear-gradient(185deg, #d6b3ff, #6061AB);
  padding: 2px 0px; /* Adjusted horizontal padding for better spacing */
}
.container {
  max-width: 1200px; /* Adjust as needed */
  padding-left: 15px;
  padding-right: 15px;
}
.navbar .nav-item {
  padding: 8px 2px; /* Reduced top padding to balance spacing */
}
.navbar-brand img {
  max-height: 120px; /* Keeps the logo from getting too large */
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white !important;
  margin-right: 20px; /* Added spacing between brand and links */
}

.navbar-nav {
  display: flex;
  align-items: center; /* Ensures proper vertical alignment */
}

.navbar-nav .nav-link {
  padding: 10px 14px; /* Adjusted padding for better clickability */
  color: white !important;
  margin: 0 8px; /* Slightly increased spacing between links */
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important; /* Highlight on hover */
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .topbar {
    text-align: center;
    font-size: 0.8rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-toggler {
    border: none;
  }
}
/* General Styles */
#header {background-image: linear-gradient(135deg, rgba(51, 51, 51, 0.7), rgba(106, 0, 218, 0.7)),url('images/GettyImages-10582626.jpg'); /* Replace with your image URL */
  background-size: cover; /* Ensures it covers the entire viewport */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center; /* Centers the image in the viewport */
  background-attachment: fixed; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 20px;
    color: white;
    font-family: Arial, sans-serif;
}

/* Left Panel (Content) */
.left-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #d6b3ff;
    margin-bottom: 18px;
}

h2 {
    font-size: 1.5rem;
    margin: 8px 0;
    color: #d6b3ff;
      font-weight: bold;
    
}

p {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    flex: 1 1 45%;
}

.icon-box {
    width: 26px;
    height: 25px;
    background: #d6b3ff;
    color: #fff;
    border-radius: 50%;
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

/* Right Panel (Contact Form) - Moved to Top */
.right-content {
    flex: 1;
    max-width: 45%;
    background: rgba(0, 0, 0, 0.55); /* 85% opacity */
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Moves content to top */
}


/* Contact Form */
.contact-heading {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form label {
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: block;
    color: #ccc;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 7px;
    margin-bottom: 8px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 0.85rem;
}

.contact-form button {
    width: 100%;
    padding: 9px;
    background: #d6b3ff;
    border: none;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: purple;
    color: white;
}.btn-custom {
    width: 60%;
    padding: 9px;
    background: #d6b3ff;
    border: none;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center; /* Centers text */
    display: flex;
    justify-content: center; /* Ensures text is centered */
    align-items: center; /* Centers vertically */
    margin: 0 auto; /* Centers the button itself */
}

.btn-custom:hover {
    background: purple;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #header {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 6%;
    }

    .left-content, .right-content {
        max-width: 100%;
    }

    .right-content {
        order: -1; /* Moves form above text on mobile */
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }

    p {
        font-size: 0.85rem;
    }

    .features-list {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1rem;
    }

    p {
        font-size: 0.85rem;
    }

    .btn-custom {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.8rem;
    }

    .btn-custom {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

  /* Basic styling for the navbar */
.navbar-brand {
    margin-top:-30px;
  display: flex;
  align-items: center; /* Vertically aligns text and image */
  font-size: 1.5rem; /* Default font size for larger screens */
  color: #fff; /* Color of the text */
}

/* Logo Image */
.navbar-brand img {
  height: 120px; /* Set the logo height */
  margin-right: 10px; /* Space between logo and name */
  transition: all 0.3s ease; /* Smooth transition for resizing */
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem; /* Adjust font size for mobile screens */
  }

  /* Make logo smaller on mobile */
  .navbar-brand img {
    height: 40px; /* Smaller logo size for mobile */
    margin-right: 8px; /* Adjust space between logo and text */
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1rem; /* Further reduce font size on very small screens */
  }

  .navbar-brand img {
    height: 60px; /* Even smaller logo for very small screens */
    margin-right: 5px; /* Tighter spacing */
    margin-top: 10px;
  }
}
@media (max-width: 320px) {
  .navbar-brand {
    font-size: 1rem; /* Further reduce font size on very small screens */
  }

  .navbar-brand img {
    height: 40px; /* Even smaller logo for very small screens */
    margin-right: 5px; /* Tighter spacing */
  }
}
  
/* Import font-awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
/* General Reset */

  
  /* Services Section */
  #services {
    padding: 50px 0;
    background: #121212; /* Darker background for contrast */
    color: white;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
  }
  
/* Section Title */
#services h2 {
  font-size: 3.5rem; /* Prominent size */
  font-weight: bold; /* Emphasizes the heading */
  margin-bottom: 15px; /* Proper spacing */
  text-align: center; /* Center alignment for balance */
 background: linear-gradient(135deg, #d6b3ff, #6061AB); /* Gradient for stylish text */
-webkit-background-clip: text; /* Applies gradient to text */
-webkit-text-fill-color: transparent; /* Ensures gradient is visible */
background-clip: text; /* Compatibility for modern browsers */
letter-spacing: 3px; /* Adds sophistication */
text-transform: uppercase; /* Bold and impactful look */
padding-bottom: 10px; /* Space between text and underline */
animation: slideInFromTop 1s ease-out, textWave 2s ease-in-out infinite; /* Adds smooth animations */

}

/* Slide in from top animation */
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Text wave effect */
@keyframes textWave {
  0%, 100% {
    letter-spacing: 2px;
  }
  50% {
    letter-spacing: 5px;
  }
}

  
  #services p {
    color: #fffafa;
    font-size: 1rem;
  }
  
  /* Service Container Grid */
  .service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive 3 cards per row */
    gap: 20px;
    padding: 20px;
  }
  
  /* Service Card */
  .service-card {
background: linear-gradient(135deg, #6A2C9D, #2C3E50); 

    border: 2px solid transparent;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    height: 250px; /* Keeps them square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: slideUpFromLeft 0.8s ease-out;
    position: relative;
  }
  
  /* Hover Effects */
  .service-card:hover {
    transform: translateX(10px) scale(1.1);
    background-color: #9b5fff; /* Purple hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    color: white;
  }
  
  /* Icon Styling */
  .service-card .icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  /* On hover, icon will change */
  .service-card:hover .icon {
    color: purple;
  }

  
  
  /* Title Styling */
  .service-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
  }
  
  /* Read More button */
  .read-more {
    margin-top: 10px;
      margin-bottom: 30px;
    color: white;
    text-decoration: none;
    background-color: #6a0dad;
    padding: 5px 10px;
    border-radius: 5px;
   transition: transform 0.7s ease, background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
  }
 
  
  .service-card:hover .read-more {
    background-color: purple; /* Darker purple */
    transform: scale(1.05); /* Slightly enlarge the button */
    text-decoration: none; /* Ensure no underline on hover */
    color: white;
  }
  
  /* Animations */
  @keyframes slideUpFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromTop {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 768px) {
    .service-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    #services h2 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .service-container {
      grid-template-columns: 1fr; /* Single column for small screens */
    }
  }

  
  /* Section Main Wrapper */
  #about1 {
    padding-top:20px;

    background: #1c1c1c;
    color: white;
    font-family: Arial, sans-serif;
  }
  .about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative; /* Ensures .corner-image stays inside */
}

/* Small Bottom-Left Image */
.corner-image {
    position: absolute;
    top: 80%;
    left: 10px;
    width: 560px; /* Adjust size for responsiveness */
    height: auto;
    max-width: 550%;
    z-index: 2;
    
    transform: scale(0.8); /* Slightly smaller at start */
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out, left 0.8s ease-in-out;
}

/* Slide in from left on page load */
.corner-image.show {
    left: 10px; /* Move to final position */
    opacity: 1;
    transform: scale(1); /* Normal size */
}

/* Hover effect: Grow */
.corner-image:hover {
    transform: scale(1.1);
}
/* Responsive Fix */
@media (max-width: 768px) {
    .corner-image {
       display: none;
    }
}

  /* Left Section: Intro and Image */
  .about-left {
    flex: 1 1 400px;
    text-align: center;
    padding: 20px;
  }
  
  .about-left h2 {
    font-size: 2.2rem;
    color:  #d6b3ff;
    margin-bottom: 10px;
  }
  
  .about-left p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
  }
  
  /* Right Section: Features List */
  .about-right {
    flex: 1 1 500px;
    padding: 20px;
    color: #ddd;
    line-height: 1.6;
  }
  
  .feature-item {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
  }
  
  .feature-item h3 span {
    font-size: 2.4rem;
    margin-right: 10px;
    background: linear-gradient(to right, #a71eeb, #9b5fff); /* Light purple to dark purple gradient */
    -webkit-background-clip: text; /* Clips the background to the text */
    -webkit-text-fill-color: transparent; /* Makes the text itself transparent */
    background-clip: text; /* Standard property for other browsers */
  }
  
  
  .feature-item p {
    font-size: 0.95rem;
    color: #aaa;
  }
  
  /* Call-to-Action Button */
  .btn-contact {
    display: inline-block;
    margin: 20px 0;
    color: white;
    background: #9b5fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn-contact:hover {
    background: #7a3ef9;
    transform: translateY(-3px);
    color:white;
  text-decoration: none;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  
    .about-left,
    .about-right {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 480px) {
    #about1 {
      padding: 20px 5px;
    }
  
    .about-left h2 {
      font-size: 2rem;
    }
  
    .btn-contact {
      padding: 8px 15px;
    }
  }
  
    
  /* Responsive Styles */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
  
    .about-description,
    .about-features {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 480px) {
    #about {
      padding: 20px 5px;
    }
  
    .about-header h2 {
      font-size: 2rem;
    }
  
    .btn-contact {
      padding: 5px 12px;
    }
  }
  
.about-right h2{
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    color: #d6b3ff;
    letter-spacing: 2px;
    animation: slideInFromLeft 1s ease-out;
}

/* Base Styling for Section */
#about {
padding: 50px 20px;
background: #121212;
color: white;
animation: fadeIn 1.5s ease-in-out;
}

/* Container Flexbox */
.about-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
}

/* Left Side Content */
.about-left {
flex: 1 1 48%;
line-height: 1.7;
}

.about-left h2 {
  font-size: 3.5rem; /* Larger size for prominence */
  font-weight: bold; /* Bold for emphasis */
  margin-bottom: 15px; /* More space for visual clarity */
  text-align: left; /* Align text neatly */
  background:  linear-gradient(185deg, #d6b3ff, #6061AB); /* Smooth gradient */
  -webkit-background-clip: text; /* Applies gradient to text */
   /* Ensures only text has gradient */
  background-clip: text; /* Standard property for modern browsers */
   /* Ensures compatibility */
  letter-spacing: 2px; /* Adds sophistication */
  animation: slideInFromLeft 1s ease-out; /* Combines two animations */
}

/* Animation for sliding in */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}




.about-left p {
color: #ccc;
font-size: 1rem;
margin: 10px 0 20px;
}

/* 2x2 Grid */
.info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-top: 20px;
}

.info-box {
background: rgba(30, 30, 30, 0.9);
border: 1px solid #9b5fff;
border-radius: 10px;
padding: 15px;
text-align: center;
color: white;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.info-box h4 {
color: #9b5fff;
margin: 10px 0;
font-size: 1.1rem;
font-weight: bold;
}

.info-box p {
font-size: 0.9rem;
color: #d3d3d3;
}

/* Icon Styling */
.icon-container {
font-size: 1.3rem;
margin-bottom: 10px;
background: purple;
color: white;
padding: 15px;
border-radius: 8px;
display: inline-block;
width: 50px;
height: 50px;
line-height: 24px;
text-align: center;
transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-container:hover {
transform: scale(1.1);
}

/* Right Animated Section */
.about-right {
flex: 1 1 48%;
}

.animated-image-container {
position: relative;
overflow: hidden;
}
.animated-image {
  width: 100%;
  height: 620px;
  border-radius: 10px;
  animation: zoomIn 1.5s ease-in-out;
  margin-top: 130px;
  transition: transform 0.4s ease-in-out;
}

/* Hover Grow Effect */
.animated-image:hover {
  transform: scale(1.05); /* Slightly enlarges the image */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .animated-image {
    height: 550px; /* Adjusts for smaller desktops */
  }
}

@media (max-width: 1024px) {
  .animated-image {
    height: 500px; /* Adjusts for tablets */
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .animated-image {
    height: 400px; /* Adjusts for larger mobile screens */
    margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .animated-image {
    height: 300px; /* Adjusts for smaller mobile screens */
    margin-top: 50px;
  }
}

/* Zoom-in Animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* Pulsing Background Effect */
.pulse-effect {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 120px;
width: 120px;
background: rgba(155, 95, 255, 0.3);
border-radius: 50%;
animation: pulse 2s infinite ease-in-out;
}

/* Animations */
@keyframes bounce {
0% {
  transform: translateY(0);
}
50% {
  transform: translateY(-5px);
}
}

@keyframes pulse {
0% {
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 1;
}
50% {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.7;
}
100% {
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 1;
}
}

/* Responsive Styles */
@media (max-width: 768px) {
.about-container {
  gap: 20px;
  flex-direction: column;
}

.about-left,
.about-right {
  flex: 1 1 100%;
}

.info-grid {
  grid-template-columns: 1fr;
}
}



  /* Header Section */
  .pricing-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #000, #6a0dad);
    color: white;
  }
  
  .pricing-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
     animation: slideInFromTop 4s ease-out, textWave 4s ease-in-out infinite; /* Adds smooth animations */
  }
  
/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-header h1 {
        font-size: 2rem; /* Adjusts for tablets */
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 1.8rem; /* Smaller size for mobile */
    }
}

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 1.5rem; /* Further adjust for very small screens */
    }
}

/* Slide-in animation */
@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Text wave effect */
@keyframes textWave {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
  .pricing-header p {
    font-size: 1.1rem;
    color: #d9d9d9;
  }
  
  /* Pricing Section Container */
  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 15px;
  }
  
/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, purple, #6b5ff0);
    animation: fadeIn 1s ease-out;
    border: 2px solid gold;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 20px;
    width: 280px;
    height: 450px; /* Fixed Height */
    overflow-y: auto; /* Scrollbar if content overflows */
    scrollbar-width: thin; /* Make scrollbar thinner */
    scrollbar-color: gold transparent; /* Custom scrollbar colors */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

/* Scrollbar Styling for Webkit Browsers (Chrome, Edge, Safari) */
.pricing-card::-webkit-scrollbar {
    width: 6px;
}

.pricing-card::-webkit-scrollbar-thumb {
    background-color: gold; /* Gold scrollbar */
    border-radius: 10px;
}

.pricing-card::-webkit-scrollbar-track {
    background: transparent;
}
/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, purple, #6b5ff0);
    animation: fadeIn 1s ease-out;
    border: 2px solid gold;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 20px;
    width: 280px;
    height: 700px; /* Increased height for spacing */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps content & buttons separate */
    color: white;
}

/* Scrollable Content */
.pricing-card ul {
    flex-grow: 1; /* Pushes buttons to the bottom */
    max-height: 450px; /* Limit height */
    overflow-y: auto; /* Enable scrollbar */
    padding-right: 10px;
}

/* Custom Scrollbar */
.pricing-card ul::-webkit-scrollbar {
    width: 6px;
}

.pricing-card ul::-webkit-scrollbar-thumb {
    background-color: gold;
    border-radius: 10px;
}

.pricing-card ul::-webkit-scrollbar-track {
    background: transparent;
}

/* Buttons - Fixed at Bottom */
.pricing-card button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

  .pricing-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .card-header {
    margin-bottom: 10px;
  }
  
  .card-header .icon {
    font-size: 28px;
    color: #fff;
  }
  
  .card-header h3 {
    margin-top: 10px;
    font-size: 1.3rem;
  }
  
  /* Price Section */
  .price {
    font-size: 2rem;
    color: #ffd700;
    margin: 10px 0;
  }
  
  /* Description */
  .description {
    font-size: 0.9rem;
    margin: 10px 0;
  }
  
  /* Feature List */
  ul {
    list-style: none;
    padding: 10px;
  }
  
  ul li {
    font-size: 0.85rem;
    margin: 8px 0;
  }
  /* Pushes button to the end without adding gaps */
.select-btn {
  margin-top: 10px;
  padding: 12px 15px;
  color: white;
  background: purple;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem; /* Default font size */
  width: 99%;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: solid 2px gold;
}

/* Hover Effect */
.select-btn:hover {
  background-color: darkorchid;
  transform: scale(1.05);
}

/* Responsive Font Size Adjustments */
@media (max-width: 1024px) {
  .select-btn {
    font-size: 0.9rem; /* Adjust for tablets */
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .select-btn {
    font-size: 0.85rem; /* Adjust for small tablets */
    padding: 9px 12px;
  }
}

@media (max-width: 480px) {
  .select-btn {
    font-size: 0.8rem; /* Adjust for mobile devices */
    padding: 8px 10px;
  }
}

@media (max-width: 360px) {
  .select-btn {
    font-size: 0.75rem; /* Adjust for smaller mobile screens */
    padding: 7px 10px;
  }
}

.select-btn:hover {
    background: #6a0dad;
}
  
  /* Featured Card */
  .featured {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, purple, #6b5ff0);

  }
  
  .gold-plan {
    background: purple;
    color: gold;
  }

  .gold-plan select-btn{
    background: gold;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .pricing-container {
      gap: 15px;
    }
  
    .pricing-card {
      width: 100%;
    }
  }

  /* Animation Keyframes */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .contact-form2 h3{
      
    font-family: 'Roboto', sans-serif; /* Clean and modern font */
    font-weight: bold; /* Makes the font bold */
    font-size: 34px; /* Adjust the font size as needed */
    color: #ffffff; /* White text color, change if needed */
    text-transform: uppercase; /* Makes it all uppercase for a bolder look */
    letter-spacing: 2px; /* Adds space between letters for extra clarity */

 
  }
  
   .info-panel h3{
      
    font-family: 'Roboto', sans-serif; /* Clean and modern font */
    font-weight: bold; /* Makes the font bold */
    font-size: 34px; /* Adjust the font size as needed */
    color: #ffffff; /* White text color, change if needed */
    text-transform: uppercase; /* Makes it all uppercase for a bolder look */
    letter-spacing: 2px; /* Adds space between letters for extra clarity */

 
  }
/* Form Styling */
.contact-form2 {
background: linear-gradient(185deg,#6061AB,#d6b3ff);
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }
  
  .contact-form2:hover {
    transform: translateY(-5px);
  }
  /* Info Panel Styling */
.info-panel {
  background-color: #6b5ff0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  position: relative;
  top: 70px;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  margin: auto;
}

/* Hover Effect */
.info-panel:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .info-panel {
    top: 50px;
    padding: 18px;
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .info-panel {
    top: 40px;
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .info-panel {
    top: 30px;
    padding: 12px;
    font-size: 0.9rem;
    max-width: 100%;
  }
}

  
  /* Animated Hover Effects */
  .contact-item:hover {
    transform: scale(1.1);
    transition: all 0.6s ease-in-out;
  }
  
  /* Button Style */
  .btn-primary {
    background: linear-gradient(90deg, #4facfe, #00dbde);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: linear-gradient(90deg, #00dbde, #4facfe);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container .col-md-6 {
      margin-bottom: 20px;
    }
  }
/* Section Title Style */
#contact h1.text-gradient {
  font-size: 3rem;
  font-weight: bold;
  color: transparent;
  background-clip: text;
  color: #d6b3ff;
}

#contact p.lead {
  font-size: 1.25rem;
  color: white !important;
  font-weight: 300;
}

  /* Header Style */
.portfolio-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #6a0dad, #8c43ff); /* Gradient for a modern, sleek look */
  border-bottom: 3px solid #8c43ff; /* Elegant border with modern look */
  color: #331111; /* White text for contrast */
  text-align: center; /* Center text for a clean, structured layout */
}

.category-slider {
  display: flex;
  gap: 15px; /* Increased spacing for a clean look */

  scrollbar-width: none; /* Hide scrollbar for Firefox */
  position: relative; /* Positioning for connecting lines */
}


.category-btn {
  background: #1e1e2f; /* Darker background for buttons */
  color: #fff; /* White text for contrast */
  border: 2px solid #8c43ff; /* Accent border with a modern touch */
  padding: 10px 20px;
  border-radius: 50px; /* Rounded buttons */
  font-size: 16px;
  font-weight: bold;

  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth effects */
 
}

.category-btn.active,
.category-btn:hover {
  background: #8c43ff; /* Accent background on active and hover */
  color: #fff; /* Maintains contrast with white text */
  transform: scale(1.05); /* Slight scale up for hover effect */
}


    /* Portfolio Section */
    .portfolio-section {
      display: none; /* Hidden by default */
      grid-template-columns: repeat(2, 1fr); /* Two columns by default */
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .portfolio-section.active {
      display: grid; /* Show only the active section */
    }
    .portfolio-item {
      position: relative;
      overflow: hidden;
      border: 2px solid #8c43ff;
      border-radius: 10px;
    }
    .portfolio-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .portfolio-item:hover img {
      transform: scale(1.1);
    }
/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  
  max-width: 90%;
  max-height: 80%;
  border: 5px solid #8c43ff;
  border-radius: 10px;
  transform: scale(1); /* Initial zoom level */
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Smooth zoom-in/out transition */
  filter: none; /* Reset filter */
  cursor: pointer; /* Pointer cursor to indicate hover effect */
}

.modal img.magnified {
  transform: scale(2); /* Zoom in */
}

.modal img.zoomed {
  transform: scale(1); /* Reset zoom */
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}



/* For tablets (768px and below) */
@media screen and (max-width: 768px) {
  .portfolio-header {
    font-size: 1.1rem; /* Smaller font size for tablets */
  }

  .portfolio-section {
    padding: 10px; /* Smaller padding for tablets */
  }

  .category-btn {
    font-size: 13px; /* Smaller font for buttons */
    padding: 6px 12px;
  }
}

/* For smartphones (576px and below) */
@media screen and (max-width: 576px) {
  .portfolio-header {
    font-size: 1rem; /* Further reduce font size */
    padding: 10px;
  }

  .category-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .portfolio-section {
    gap: 10px; /* Reduce gaps for tighter layout */
    padding: 5px;
  }

  .portfolio-item {
    border-width: 1px;
  }

  .modal img {
    max-width: 90%; /* Allow more space for the image */
    max-height: 90%;
  }
}

/* For extra-small devices (400px and below) */
@media screen and (max-width: 400px) {
  .portfolio-header {
    font-size: 0.9rem;
    padding: 8px;
  }

  .category-btn {
    font-size: 11px;
    padding: 4px 8px;
  }

  .portfolio-section {
    gap: 5px;
    padding: 2px;
  }

  .modal-close {
    font-size: 20px; /* Smaller close button */
  }
}


    /* Section Styling */
        #clients-reviews {
                background: linear-gradient(135deg, #000, #6a0dad);
            padding: 60px 20px;
            text-align: center;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
        }

        /* Swiper Container */
        .reviews-container {
            max-width: 900px;
            margin: auto;
            padding: 0 20px;
        }

        .swiper {
            overflow: hidden;
            padding-bottom: 50px;
        }

        /* Review Card */
        .review-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: scale(1.03);
        }

        .client-info {
            margin-bottom: 15px;
        }

        .client-name {
            font-size: 1.4rem;
            font-weight: bold;
            color: #333;
        }

        .client-role {
            font-size: 0.9rem;
            color: #777;
        }

        .review-text {
            font-size: 1rem;
            color: #555;
            margin: 15px 0;
            line-height: 1.5;
        }

        .review-rating {
            font-size: 1.2rem;
            color: #ffcc00;
        }

     

        /* Pagination */
        .swiper-pagination-bullet {
            background: #999;
            opacity: 0.6;
        }

        .swiper-pagination-bullet-active {
            background: #ff6600;
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .review-card {
                padding: 15px;
            }
        }

.section-title {
    
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 10px;
  text-align: center; /* Ensures proper alignment on all screens */
  text-shadow: 0 0 5px #000000;
  animation: slideInFromTop 2s ease-out, textWave 2s ease-in-out infinite; /* Adds smooth animations */
}


/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3rem; /* Adjusts for tablets */
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem; /* Adjusts for mobile screens */
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem; /* Adjusts for small mobile screens */
  }
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d8c1f4;
  text-shadow: 0 0 5px #a865e1;
  text-align: center; /* Centers text on mobile screens */
}

/* Slide-in animation from the top */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Wave animation for individual letters */
@keyframes textWave {
  0%, 100% {
    letter-spacing: 2px;
    transform: translateY(0);
  }
  50% {
    letter-spacing: 4px;
    transform: translateY(-5px);
  }
}
.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d8c1f4;
  text-shadow: 0 0 5px #a865e1;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 0 0 15px #d19aff;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.client-info .client-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e5ccff;
}

.client-info .client-role {
  font-size: 0.9rem;
  color: #cdaaff;
}

.review-text {
  font-size: 1rem;
  color: #ffffff;
  margin: 15px 0;
  line-height: 1.6;
}

.review-rating {
  color: #ffd700;
  font-size: 1.2rem;
}

.review-rating i {
  margin: 0 2px;
}

.review-rating i.fa-star-half-alt {
  color: #ffc107;
}


.about-left img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover; /* Ensures the image doesn't stretch or distort */
}

/* Positioning the image container at the bottom right */
.bottom-right-container {
  position: relative;
  bottom: 80px;
  right: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;  /* Align the images at the bottom */
  width: 100%;
  margin-top: auto;
  padding-right: 10px;  /* Adds some padding on the right */
  padding-bottom:-90px;
  z-index: -2;
}

/* Style for the images */
.bottom-right-img {
  width: 12%; /* Adjust size */
  height: auto;
  margin-left: 60px;  /* Adds space between images */
}

@media (max-width: 480px) {
   .bottom-right-container {
    position: relative;
    bottom: 13px;
    right: 82px;
    display: flex
;
    justify-content: flex-end;
    align-items: flex-end;
    width: 126%;
    margin-top: auto;
    padding-right: 87px;
    padding-bottom: -90px;
}

.bottom-right-img {
    width: 41%;
    height: auto;
    margin-left: 94px;
}
}


.contact-item a {
    color: white !important; /* Ensures white color */
    text-decoration: none !important; /* Removes underline */
}
.contact-item a:hover {
    color: #ffc107 !important; /* Optional: Change color on hover (adjust as needed) */
}/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #2a0c4d, #6a0dad); /* Dark to Light Purple */
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Footer Sections */
.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

/* Company Info */
.about img {
  max-width: 120px;
  margin-bottom: 10px;
}

.about h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.about p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Quick Links */
.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 8px;
}

.links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: #ffcc00;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffcc00;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 10px;
  }
}


