/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: #ff238d;
    font-size: 1.8rem;
}

.logo i {
    color: #00549d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff238d;
}

.btn-appointment {
    background: #ff238d;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-appointment:hover {
    background: #ff1a88;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff238d;
    color: white;
}

.btn-primary:hover {
    background: #ff1a88;
}

.btn-secondary {
    background: transparent;
    color: #ff238d;
    border: 2px solid #ff238d;
}

.btn-secondary:hover {
    background: #ff238d;
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 100px 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffeaf4 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ff238d;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff238d 0%, #ff1a88 100%);
    color: white;
    text-align: center;
    padding: 150px 0 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff238d;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #ff238d;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Services Styles */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff238d;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1rem;
    color: #ff238d;
}

.service-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Services Main Page */
.services-main {
    padding: 60px 0;
}

.services-grid-main {
    display: grid;
    gap: 3rem;
}

.service-card-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card-main:hover {
    transform: translateY(-5px);
}

.service-card-main img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    color: #ff238d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #ff238d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text h3 {
    color: #ff238d;
    margin: 2rem 0 1rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    color: #ff238d;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #ff238d;
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.faq-section {
    padding: 60px 0;
   

 
}

.faq-section h2 {
   
    text-align: center;
    font-size: 2.5rem;
    color: #ff238d;
    margin-bottom: 3rem;

 
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #ff238d;
    font-size: 1.1rem;
}

.faq-question i {
    color: #ff238d;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Blog Styles */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta i {
    color: #ff238d;
}

.blog-card h3 a {
    color: #ff238d;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: #ff1a88;
}

.read-more {
    color: #ff238d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #ff1a88;
}

/* Blog Post Styles */
.blog-post-section {
    padding: 100px 0;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.back-link {
    color: #ff238d;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.back-link:hover {
    color: #ff1a88;
}

.blog-post-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.blog-post-main h1 {
    color: #ff238d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.blog-content h3 {
    color: #ff238d;
    margin: 2rem 0 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.comments-section h3,
.comments-section h4 {
    color: #ff238d;
    margin-bottom: 1.5rem;
}

.comment-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header strong {
    color: #ff238d;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

/* Appointment Styles */
.appointment-section {
    padding: 60px 0;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-details h3 {
    color: #ff238d;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #ff238d;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #ff238d;
    margin-bottom: 0.5rem;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-form h3 {
    color: #ff238d;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff238d;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Newsletter Styles */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.newsletter-subscribe,
.newsletter-unsubscribe {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter-subscribe h3,
.newsletter-unsubscribe h3 {
    color: #ff238d;
    margin-bottom: 1rem;
}

.newsletter-benefits {
    margin-top: 2rem;
}

.newsletter-benefits h4 {
    color: #ff238d;
    margin-bottom: 1rem;
}

.newsletter-benefits ul {
    list-style: none;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-benefits i {
    color: #28a745;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    color: #ff238d;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.confirmation-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.confirmation-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-content h3 {
    color: #ff238d;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #ff238d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ccc;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #00549d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ff1a88;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .service-card-main {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
        .features-grid,
    .services-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .features,
    .services-preview,
    .about-content,
    .team,
    .faq-section,
    .blog-section,
    .appointment-section,
    .newsletter-section,
    .blog-post-section {
        padding: 40px 0;
    }
    
    .feature-card,
    .service-card,
    .team-member,
    .booking-form,
    .newsletter-subscribe,
    .newsletter-unsubscribe {
        padding: 1.5rem;
    }
    
    .blog-post-main h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff238d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background-color: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff238d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background: #ff1a88;
    transform: translateY(-2px);
}

.scroll-top i {
    font-size: 1.2rem;
}

/************************Services Page************************/

/* Service Overview Section */
.service-overview {
  background-color: #ffffff;
  padding: 60px 0;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.overview-content {
  flex: 1 1 60%;
}

.overview-content h2 {
  font-size: 32px;
  color: #ff238d;
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.service-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  background-color: #ffeaf4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 150px;
}

.stat-number {
  font-size: 28px;
  color: #ff238d;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #444;
}

/* Features List */
.overview-features {
  flex: 1 1 35%;
}

.overview-features h3 {
  font-size: 24px;
  color: #ff238d;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

.feature-list i {
  color: #ff238d;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overview-grid {
    flex-direction: column;
  }

  .overview-content,
  .overview-features {
    flex: 1 1 100%;
  }

  .service-stats {
    justify-content: space-between;
  }
}

/* Services Offered Section */
.services-offered {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.services-offered h2 {
  text-align: center;
  font-size: 32px;
  color: #ff238d;
  margin-bottom: 40px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Service Card */
.service-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon Styling */
.service-icon {
  font-size: 36px;
  color: #ff238d;
  margin-bottom: 20px;
}

/* Headings and Paragraphs */
.service-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 480px) {
  .services-offered h2 {
    font-size: 26px;
  }

  .service-item {
    padding: 25px 15px;
  }

  .service-icon {
    font-size: 30px;
  }
}

/* Service Process Section */
.service-process {
  background-color: #ffffff;
  padding: 60px 0;
}

.service-process h2 {
  text-align: center;
  font-size: 32px;
  color: #ff238d;
  margin-bottom: 50px;
}

/* Process Steps Layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Individual Step Box */
.step {
  background-color: #ffeaf4;
  border-left: 5px solid #ff238d;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

/* Step Number Circle */
.step-number {
  width: 40px;
  height: 40px;
  background-color: #ff238d;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Step Content */
.step-content h3 {
  font-size: 20px;
  color: #004085;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .service-process h2 {
    font-size: 26px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .step-content h3 {
    font-size: 18px;
  }
}
.service-faq{
 text-align: center;
  color: #ff238d;
  margin-bottom: 40px;
}

