/* Navbar Styling */
.navbar {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Gradient background */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  font-family: 'Poppins', sans-serif; /* Modern font */
  padding: 1rem; /* Spacing */
}

/* Navbar Brand Logo */
.navbar-brand img {
  border-radius: 5px; /* Rounded corners for the logo */
  max-height: 50px; /* Restrict height */
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #ffffff; /* White text */
  font-weight: 500; /* Medium weight */
  margin: 0 0.8rem; /* Spacing between links */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth effects */
}

.navbar-nav .nav-link:hover {
  color: #ffe082; /* Soft yellow hover effect */
  transform: scale(1.1); /* Enlarge on hover */
}

.navbar-nav .nav-link.active {
  color: #ffe082; /* Highlight active link */
  text-decoration: none;
}


/* Social Media Icons */
.social-icons a {
  color: #ffffff;
  margin: 0 0.5rem; /* Spacing between icons */
  font-size: 1.5rem; /* Icon size */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover */
}

.social-icons a:hover {
  color: #ffe082; /* Hover effect for icons */
  transform: scale(1.2); /* Slight bounce on hover */
}

/* Navbar Toggler (Mobile View) */
.navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.2); /* Transparent toggle button */
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.4); /* Subtle hover effect */
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center; /* Center links on smaller screens */
    margin-top: 1rem;
  }

  .social-icons {
    margin-top: 1rem; /* Add spacing for icons */
  }
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

    /* Design by Web infozen */
    
/* Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient background */
  color: #ffffff; /* White text */
  padding: 3rem 0; /* Vertical padding */
}

/* Headline Text */
.hero-section h1 {
  font-family: 'Poppins', sans-serif; /* Modern font */
  font-size: 3rem; /* Large font size */
  line-height: 1.2; /* Adjust line spacing */
  margin-bottom: 1rem; /* Space below the headline */
}

.hero-section p {
  font-family: 'Roboto', sans-serif; /* Complementary font */
  font-size: 1.2rem; /* Readable text size */
  margin-bottom: 1.5rem; /* Space below the paragraph */
  line-height: 1.8; /* Comfortable line spacing */
}

/* Right-Side Image */
.hero-section img {
  max-width: 100%; /* Ensure responsive image */
  border-radius: 15px; /* Rounded corners for image */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
  transform: scale(1); /* Default scale */
  transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.hero-section img:hover {
  transform: scale(1.05); /* Slight zoom-in effect */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem; /* Adjust headline size for small screens */
  }
  .hero-section p {
    font-size: 1rem; /* Smaller text size for mobile */
  }
}




  
     /* About Us Section */
.about-section {
  background-color: #f7f9fc; /* Light background for better readability */
  font-family: 'Poppins', sans-serif; /* Clean, modern font */
  padding: 3rem 0; /* Vertical spacing */
}

.section-title {
  color: #2980b9; /* Vibrant blue for the title */
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-section p {
  color: #6c757d; /* Subtle gray for paragraph text */
  font-size: 1.1rem; /* Easy-to-read font size */
  line-height: 1.8; /* Comfortable line spacing */
  margin-bottom: 1rem;
}

.about-section .highlight {
  color: #2980b9; /* Highlighted text in blue */
  font-weight: bold;
}

.about-section .about-image {
  max-width: 100%; /* Responsive image */
  border-radius: 15px; /* Rounded corners */
  border: 5px solid #f4e3d9; /* Decorative border */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.about-section .about-image:hover {
  transform: scale(1.05); /* Slight zoom-in effect */
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Call-to-Action Button */
.btn-primary {
  background-color: #2980b9; /* Vibrant blue button */
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover transition */
}

.btn-primary:hover {
  background-color: #2471a3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom-in effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem; /* Smaller headline size for mobile */
  }

  .about-section p {
    font-size: 1rem; /* Adjust paragraph size */
  }

  .about-section .about-image {
    margin-bottom: 2rem; /* Add space below image on smaller screens */
  }
}


/* Services Section Styling */
.services-section {
  background: linear-gradient(180deg, #fefcea, #f1f1f1); /* Subtle gradient background */
  padding: 3rem 0; /* Section spacing */
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
}

.services-section .text-center h2 {
  color: #2980b9; /* Vibrant blue for section title */
  font-size: 2.5rem;
  font-weight: 600;
}

.services-section .text-center p {
  color: #6c757d; /* Subtle gray for the subtitle */
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.service-card:hover {
  transform: scale(1.05); /* Slight zoom-in effect */
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.service-card img {
  max-height: 200px; /* Consistent image height */
  object-fit: cover; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded image corners */
}

.service-card h5 {
  color: #2980b9; /* Blue color for headings */
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem; /* Spacing around heading */
}

.service-card p {
  color: #6c757d; /* Subtle gray for text */
  font-size: 1rem;
  line-height: 1.6; /* Comfortable line spacing */
}

.service-card .btn {
  background-color: #2980b9; /* Vibrant blue button */
  color: #fff; /* White text */
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card .btn:hover {
  background-color: #2471a3; /* Darker blue on hover */
  transform: scale(1.1); /* Slight zoom-in effect */
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section .text-center h2 {
    font-size: 2rem; /* Adjust title size for smaller screens */
  }

  .services-section .text-center p {
    font-size: 1rem; /* Adjust subtitle size for smaller screens */
  }

  .service-card img {
    max-height: 150px; /* Adjust image size for mobile */
  }

  .service-card p {
    font-size: 0.9rem; /* Adjust text size for mobile */
  }
}


/* Testimonials Section Styling */
#testimonials {
  background-color: #f8f9fa; /* Light gray background */
  padding: 3rem 0; /* Section spacing */
  font-family: 'Poppins', sans-serif; /* Clean and modern font */
}

#testimonials .text-center h2 {
  color: #2c3e50; /* Dark blue for title */
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#testimonials .text-center p {
  color: #6c757d; /* Subtle gray for subtitle */
  font-size: 1rem;
}

.card {
  border: none; /* Remove default border */
  background-color: #ffffff; /* White card background */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.card:hover {
  transform: translateY(-10px); /* Slight hover lift effect */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.card-body img {
  border: 4px solid #2c3e50; /* Circle border color */
  transition: border-color 0.3s ease; /* Smooth hover effect on image border */
}

.card-body img:hover {
  border-color: #2980b9; /* Change border color on hover */
}

.card-title {
  color: #2c3e50; /* Dark blue for client name */
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.card-body p.text-muted {
  font-size: 0.9rem; /* Small font for designation */
  margin-bottom: 1rem;
}

.card-text {
  color: #6c757d; /* Subtle gray for testimonial text */
  font-size: 1rem;
  line-height: 1.6; /* Comfortable line spacing */
}

/* Responsive Design */
@media (max-width: 768px) {
  #testimonials .text-center h2 {
    font-size: 2rem; /* Adjust title size for smaller screens */
  }

  #testimonials .text-center p {
    font-size: 0.9rem; /* Adjust subtitle size */
  }

  .card-body img {
    width: 70px;
    height: 70px; /* Slightly smaller image for mobile */
  }

  .card-title {
    font-size: 1rem; /* Adjust name size for smaller screens */
  }

  .card-text {
    font-size: 0.9rem; /* Adjust testimonial text size for smaller screens */
  }
}
    
    /* Design by Web infozen */


/* General Styles for the Services Section */
.services-heading {
  background-color: #f9f6f2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #34495e;
}

.services-heading p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.services-heading .divider {
  width: 60px;
  height: 4px;
  background-color: #d35400;
  border-radius: 2px;
  margin: 2rem auto;
}

/* Service Section Styles */
.services-content .row {
  margin-bottom: 5rem;
}

.services-content .col-md-6 {
  padding: 0;
}

.services-content .content h2 {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 1.5rem;
}

.services-content .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c3e50;
}

.services-content .content ul {
  list-style-type: none;
  padding-left: 0;
}

.services-content .content ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 0.8rem;
}

.services-content .content ul li strong {
  color: #e67e22;
}

/* Image Styling */
.services-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes slide-in-left {
  from {
    transform: translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Apply animations */
.slide-in-left {
  animation: slide-in-left 1s ease-out;
}

.slide-in-right {
  animation: slide-in-right 1s ease-out;
}

/* General Styles for Mobile Responsiveness */
@media (max-width: 768px) {
  /* Adjust headings and paragraph text */
  .services-content .content h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .services-content .content p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
  }

  .services-content .content ul li {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Stack images and text vertically */
  .services-content .row {
    flex-direction: column;
    text-align: center;
  }

  /* Center-align images and content */
  .services-content img {
    margin-bottom: 2.5rem;
    max-width: 100%;
    height: auto;
  }

  .services-content .content {
    padding: 0 1rem;
  }

  /* Adjust spacing between services */
  .services-content .row {
    margin-bottom: 3rem;
  }

  /* Reduce padding around the section */
  .services-content {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  /* Further adjust text for very small screens */
  .services-content .content h2 {
    font-size: 1.3rem;
  }

  .services-content .content p {
    font-size: 0.9rem;
  }

  .services-content .content ul li {
    font-size: 0.8rem;
  }

  /* Add more space around images for smaller screens */
  .services-content img {
    margin-bottom: 2rem;
  }

  /* Adjust divider line in headings */
  .services-heading .divider {
    width: 50px;
    height: 3px;
  }
}


/* General Desktop Styles */
@media (min-width: 769px) {
  /* Adjust Section Padding */
  .services-content {
    padding: 4rem 0;
  }

  /* Adjust Heading Styles */
  .services-content .content h2 {
    font-size: 2.5rem;
    text-align: left;
  }

  .services-content .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
  }

  .services-content .content ul li {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Align Images and Content Side by Side */
  .services-content .row {
    display: flex;
    align-items: center;
  }

  /* Equal Image and Content Width */
  .services-content .col-md-6 {
    flex: 1;
  }

  /* Adjust Image Styles */
  .services-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Space Between Rows */
  .services-content .row {
    margin-bottom: 5rem;
  }

  /* Increase Spacing Between Image and Content */
  .services-content .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Divider Line for Consistency */
  .services-heading .divider {
    width: 80px;
    height: 4px;
  }
}


    #contact {
  background-color: #f9f9f9;
}

#contact .form-control {
  border: 1px solid #ddd;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

#contact .form-control:focus {
  border-color: #f39c12;
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

#contact .btn-primary:hover {
  background-color: #d35400;
}


    
   /* General Footer Styles */
footer {
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
}

/* Footer Link Styles */
footer a {
  color: #f8f9fa; /* Light text for contrast */
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
footer a:hover {
  color: #f39c12; /* Highlight color on hover */
}

/* Footer Icon Sizes */
footer .bi {
  margin-right: 8px;
  font-size: 1rem;
}

/* Mobile-First Responsive Styles */
footer {
  padding: 2rem 1rem;
}

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

footer h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer p, footer ul li {
  font-size: 0.9rem;
}

/* Responsive Grid */
footer .row > div {
  margin-bottom: 2rem;
}

/* Footer Bottom Alignment */
footer hr {
  margin: 1.5rem 0;
  border-color: rgba(255, 255, 255, 0.3);
}

footer .row.align-items-center p {
  font-size: 0.85rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
  footer {
    padding: 3rem 2rem;
  }

  footer h5 {
    font-size: 1.5rem;
  }

  footer p, footer ul li {
    font-size: 1rem;
  }

  /* Adjust grid alignment */
  footer .row > div {
    margin-bottom: 0;
  }

  /* Footer Bottom Section */
  footer .row.align-items-center p {
    font-size: 1rem;
  }
}

    
    
  