

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .content-heading h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2a0072
    margin-bottom: 20px; /* Added space for divider */
  }
  
  .heading-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
    margin-bottom: 30px;
    border-radius: 2px;
  }
  
  .content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #00012c;
    padding-left: 20px;
    border-left: 2px solid #F97316 /* Optional subtle left border */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .content-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .content-heading h1 {
      font-size: 2rem;
    }
    
    .heading-divider {
      margin-bottom: 20px;
    }
    
    .content-text p {
      padding-left: 0;
      border-left: none;
      padding-top: 20px;
      border-top: 2px solid #eee; /* Moves border to top on mobile */
    }
  }

  /* Social Media Services Section */
  .social-media-services {
    padding: 50px 0;
    background-color: #ffffff;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #1e293b;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    padding: 25px;
    
    
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-icon {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1e293b;
  }
  
  .service-card p {
    color: #040035;
    line-height: 1.6;
    font-size: 0.9rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .service-card {
      padding: 25px;
    }
  }
  

/* Section Styles */
/* Section Container */
.full-width-image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px; /* Adjust height as needed */
  }
  
  /* Full-Width Image */
  .full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  /* Text Content */
  .image-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image-content h4 {
    font-size: 1.8rem;
    color: #ffffff;
    
    margin: 0;
    width: 50%; /* Left-aligned text block */
    line-height: 1.4;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .full-width-image-section {
      min-height: 350px;
    }
    
    .image-content h4 {
      width: 70%;
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 768px) {
    .full-width-image-section {
      min-height: 300px;
    }
    
    .image-content h4 {
      width: 80%;
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 576px) {
    .full-width-image-section {
      min-height: 250px;
    }
    
    .image-content {
      padding: 40px 20px;
    }
    
    .image-content h4 {
      width: 100%;
      font-size: 1.2rem;
    }
  }

/* Attractive Button Styles */
.attractive-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fa9600 0%, #ffd900 100%);
    color: white;
    border: none;
    border-radius: 50px; /* Rounded corners */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
   
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Hover Effects */
  .attractive-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #00aa00 0%, #54e401 100%);
  }
  
  /* Active/Pressed State */
  .attractive-btn:active {
    transform: translateY(1px);
  }
  
  /* Optional Ripple Effect */
  .attractive-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }
  
  .attractive-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
    100% {
      transform: scale(20, 20);
      opacity: 0;
    }
  }
  
  /* Alternative Color Schemes */
  /* Coral */
  .btn-coral {
    background: linear-gradient(135deg, #FF7E5F 0%, #FEB47B 100%);
    box-shadow: 0 4px 15px rgba(254, 180, 123, 0.3);
  }
  
  .btn-coral:hover {
    background: linear-gradient(135deg, #FEB47B 0%, #FF7E5F 100%);
    box-shadow: 0 8px 25px rgba(254, 180, 123, 0.4);
  }
  
  /* Emerald */
  .btn-emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }
  
  .btn-emerald:hover {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .attractive-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
  }
  
<!-- Include Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">