 /* ================================
           CATALYST DIGITAL - THEME 1 CSS
           Modern Tech/SaaS Aesthetic
================================ */

/* Complete Reset - Add at the very beginning */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #0a0a0a;
  min-height: 100vh;
  overflow-x: hidden;
}


/* Ensure html also has dark background */
html {
  background-color: #0a0a0a !important;
  background: #0a0a0a !important;
}

      /* Colors */
      :root {
          --primary-bg: #0a0a0a;
          --secondary-bg: #1a1a2e;
          --accent-bg: #16213e;
          --text-primary: #ccd6f6;
          --text-secondary: #8892b0;
          --accent-cyan: #64ffda;
          --accent-blue: #00f5ff;
          --accent-pink: #ff00ff;
          --accent-green: #00ff88;
          --glass-bg: rgba(255, 255, 255, 0.1);
          --glass-border: rgba(255, 255, 255, 0.2);
      }

      /* Container & Layout */
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .section {
          padding: 100px 0;
      }

      /* Animated Background */
      .gradient-bg {
          background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--accent-bg) 100%);
          position: relative;
          overflow: hidden;
      }

      .gradient-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        background: 
            radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
        animation: pulse 4s ease-in-out infinite alternate;
    }


      @keyframes pulse {
          0% { opacity: 0.5; }
          100% { opacity: 1; }
      }

      /* Logo Styles */
      .logo {
          font-size: 3.5rem;
          font-weight: 900;
          background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink), var(--accent-green));
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: glow 2s ease-in-out infinite alternate;
          text-transform: uppercase;
          letter-spacing: 2px;
          text-align: center;
          margin-bottom: 20px;
      }

      @keyframes glow {
          from { filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5)); }
          to { filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8)); }
      }

      /* Hero Section */
      .hero-section {
          min-height: 100vh;
          padding-top: 0 !important;
          margin-top: 0 !important;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          z-index: 2;
      }

      .hero-content {
          text-align: center;
          max-width: 800px;
      }

      .tagline {
          font-size: 1.7rem;
          color: var(--text-secondary);
          margin-bottom: 30px;
          font-weight: 300;
      }

      .hero-description {
          font-size: 1.3rem;
          color: var(--text-primary);
          margin-bottom: 50px;
          line-height: 1.8;
      }
   
      .btn {
          display: inline-block;
          padding: 15px 35px;
          border-radius: 50px;
          font-weight: bold;
          font-size: 1.1rem;
          text-decoration: none;
          text-transform: uppercase;
          letter-spacing: 1px;
          transition: all 0.3s ease;
          cursor: pointer;
          border: 2px solid;
          font-family: inherit;
      }

      /* offer action button */
      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
      }

      .btn-primary {
        position: relative;
        background: transparent;
        color: white;
        border: none;
        box-shadow: 0 6px 20px rgba(0, 245, 255, 0.3);
        z-index: 1;
    }
    
      .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, #00f5ff, #ff00ff);
        border-radius: inherit;
        z-index: -1;
      }
      
    .btn-primary:hover {
        background: linear-gradient(45deg, #ff00ff, #00f5ff) !important;
        transform: translateY(-5px) !important;
        box-shadow: 0 12px 35px rgba(255, 0, 255, 0.5) !important;
    }

    .btn-primary,
    .btn-secondary {
        cursor: pointer;
        pointer-events: auto;
    }

      /* Learn More Button - Secondary Action */
      .btn-secondary {
        background: transparent;
        color: #64ffda;
        border-color: #64ffda;
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
      }

      .btn-secondary:hover {
        background: #64ffda;
        color: #0a0a0a;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
      }


      /* Services Preview Section */
      .services-preview {
          background: var(--primary-bg);
          position: relative;
          z-index: 2;
      }

      .preview-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 60px;
          align-items: center;
      }

      .preview-content h2 {
          font-size: 2.5rem;
          color: var(--accent-cyan);
          margin-bottom: 30px;
          font-weight: 700;
      }

      .preview-content p {
          font-size: 1.2rem;
          color: var(--text-secondary);
          margin-bottom: 30px;
          line-height: 1.7;
      }

      .preview-image {
          position: relative;
          overflow: hidden;
          border-radius: 20px;
          background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
          padding: 3px;
      }

      .preview-image-inner {
          background: var(--primary-bg);
          border-radius: 17px;
          padding: 40px;
          text-align: center;
          min-height: 300px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
      }

      .preview-icon {
          font-size: 4rem;
          color: var(--accent-cyan);
          margin-bottom: 20px;
      }

      .preview-text {
          color: var(--text-primary);
          font-size: 1.1rem;
      }

      /* CTA Section */
      .cta-section {
          background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
          position: relative;
          overflow: hidden;
      }

      .cta-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: 
              radial-gradient(circle at 30% 40%, rgba(100, 255, 218, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 245, 255, 0.2) 0%, transparent 50%);
          animation: pulse 6s ease-in-out infinite alternate;
          pointer-events: none;
      }

      .cta-content {
          text-align: center;
          position: relative;
          z-index: 2;
          max-width: 800px;
          margin: 0 auto;
      }

      .cta-title {
          font-size: 2.8rem;
          color: var(--text-primary);
          margin-bottom: 20px;
          font-weight: 700;
      }

      .cta-subtitle {
          font-size: 1.4rem;
          color: var(--text-secondary);
          margin-bottom: 40px;
          font-weight: 300;
      }

      .cta-description {
          font-size: 1.1rem;
          color: var(--text-secondary);
          margin-bottom: 50px;
          line-height: 1.7;
      }

      .btn-large {
          padding: 22px 55px;
          font-size: 1.2rem;
          margin: 0 10px 10px 0;
      }

      .btn-outline {
          background: transparent;
          color: var(--accent-cyan);
          border: 2px solid var(--accent-cyan);
      }

      .btn-outline:hover {
          background: var(--accent-cyan);
          color: white;
          transform: translateY(-3px);
      }

      /* Floating Particles */
      .particles {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          overflow: hidden;
          pointer-events: none;
          z-index: 1;
      }

      .particle {
          position: absolute;
          width: 4px;
          height: 4px;
          background: var(--accent-cyan);
          border-radius: 50%;
          opacity: 0.6;
          animation: particle-float 6s ease-in-out infinite;
      }

      .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
      .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
      .particle:nth-child(3) { top: 40%; right: 15%; animation-delay: 2s; }
      .particle:nth-child(4) { top: 80%; right: 25%; animation-delay: 3s; }
      .particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 4s; }

      @keyframes particle-float {
          0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
          50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
      }

/* Services Section */
.services-section {
  background: var(--primary-bg);
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-cyan), var(--accent-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
}

/* Service Card Link Wrapper */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  transform: translateY(-5px);
}

.service-card-link:hover .service-card {
  box-shadow: 0 25px 50px rgba(100, 255, 218, 0.3);
  border-color: var(--accent-blue);
}

.service-card-DELETE:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
  border-color: var(--accent-cyan);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-description p {
  margin-bottom: 15px;
}

.service-description strong {
  color: var(--accent-cyan);
}

/* Philosophy Section */
.philosophy-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
  padding: 80px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 30% 40%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
}

.philosophy-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.philosophy-quote {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  font-weight: 300;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  color: var(--accent-blue);
  font-size: 4rem;
  position: absolute;
  top: -20px;
}

.philosophy-quote::before {
  left: -40px;
}

.philosophy-quote::after {
  right: -40px;
}

.philosophy-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.philosophy-text p {
  margin-bottom: 20px;
}

.philosophy-text strong {
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Case Study, Portfolio & CTA Styling */
/* PPC Case Study Section */
.case-study-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.case-study-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
}

.case-study-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-study-text h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.case-study-highlight {
  font-size: 3rem;
  color: var(--accent-cyan);
  font-weight: 900;
  display: block;
  text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  font-weight: bold;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.case-study-description p {
  margin-bottom: 15px;
}

.case-study-description strong {
  color: var(--accent-cyan);
}

.case-study-visual {
  background: rgba(26, 26, 46, 0.9);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--glass-border);
}

.visual-title {
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.visual-chart {
  width: 100%;
  height: 200px;
  background: linear-gradient(to right, 
      var(--accent-cyan) 0%, 
      var(--accent-cyan) 30%, 
      var(--accent-blue) 30%, 
      var(--accent-blue) 60%,
      var(--accent-green) 60%,
      var(--accent-green) 100%);
  border-radius: 10px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  padding: 20px;
  margin-bottom: 20px;
}

.chart-bar {
  background: rgba(10, 10, 10, 0.8);
  width: 60px;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 10px 5px;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

.bar-week1 { height: 40%; }
.bar-week2 { height: 65%; }
.bar-week3 { height: 85%; }
.bar-week4 { height: 100%; }

.chart-caption {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-section {
  background: var(--primary-bg);
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--glass-border);
}

.portfolio-title {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(100, 255, 218, 0.2);
  color: var(--accent-cyan);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(100, 255, 218, 0.3);
}

.portfolio-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.portfolio-description p {
  margin-bottom: 15px;
}

.portfolio-description ul {
  list-style: none;
  padding: 0;
}

.portfolio-description li {
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.portfolio-description li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.portfolio-visual {
  background: var(--primary-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--accent-cyan);
}

.mockup-browser {
  background: #1a1a2e;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.browser-bar {
  background: #333;
  height: 30px;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27ca3f; }


.portfolio-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--secondary-bg) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 30% 40%, rgba(100, 255, 218, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(0, 245, 255, 0.2) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite alternate;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  line-height: 1.7;
}

.cta-description p {
  margin-bottom: 20px;
}

.cta-description strong {
  color: var(--accent-cyan);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-item {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.portfolio-visit-btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-cyan), var(--accent-blue));
  color: var(--primary-bg);
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.portfolio-visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 255, 218, 0.4);
}


      /* Responsive Design : Small Tablet Optimization */
      @media (max-width: 640px) {
          .container {
              padding: 0 20px;
          }
          
          .section {
              padding: 60px 0;
          }
          
          .logo {
              font-size: 2.5rem;
          }
          
          .tagline {
              font-size: 1.4rem;
          }
          
          .hero-description {
              font-size: 1.2rem;
          }
          
          .preview-grid {
              grid-template-columns: 1fr;
              gap: 40px;
          }
          
          .preview-content h2 {
              font-size: 2rem;
          }
          
          .cta-title {
              font-size: 2.2rem;
          }
          
          .cta-subtitle {
              font-size: 1.2rem;
          }
          
          .btn {
              padding: 15px 35px;
              font-size: 1rem;
          }
          
          .btn-large {
              padding: 18px 40px;
              font-size: 1.1rem;
              margin: 0 5px 15px 0;
          }

          .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        /* Services Styling*/
        .services-section {
          padding: 60px 0;
        }
      
        .section-title {
            font-size: 2rem;
            padding: 0 10px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            padding: 0 15px;
        }

        .service-description {
          font-size: 1.2rem;
        }
        
        .service-card {
            padding: 25px 20px;
        }
        
        .service-icon {
            font-size: 2.5rem;
        }
        
        .service-title {
            font-size: 1.4rem;
        }
        
        .philosophy-section {
            padding: 60px 0;
            margin: 40px 0;
        }
        
        .philosophy-quote {
            font-size: 1.6rem;
        }
        
        .philosophy-text {
            font-size: 1.1rem;
        }

        /* CTA & Porfolio Styling*/
        .case-study-section {
          padding: 60px 0;
        }
          
        .case-study-content {
          grid-template-columns: 1fr;
          gap: 40px;
        }
          
        .case-study-text h2 {
          font-size: 2rem;
        }
          
        .case-study-highlight {
          font-size: 2.5rem;
        }
          
        .case-study-stats {
          grid-template-columns: 1fr;
          gap: 20px;
          margin: 30px 0;
        }
          
        .case-study-visual {
          padding: 30px 20px;
        }
          
        .portfolio-section {
          padding: 60px 0;
        }
          
        .portfolio-item {
          grid-template-columns: 1fr;
          gap: 30px;
          padding: 30px 20px;
        }
          
        .portfolio-title {
          font-size: 1.6rem;
        }
          
        .final-cta-section {
          padding: 60px 0;
        }
          
        .cta-title {
          font-size: 2.2rem;
        }
          
        .cta-subtitle {
          font-size: 1.2rem;
        }
          
        .contact-options {
          grid-template-columns: 1fr;
          gap: 20px;
          margin-top: 40px;
        }
      }


/* Responsive Design : Tablet Optimization */
/*Also works for multi-window desktop*/
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* Logo adjustments */
  .logo {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  
  /* Hero section text */
  .tagline {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  
  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 100px;
  }
  
  .cta-buttons {
    gap: 8px;
    padding: 0 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    margin-left: 0;
    flex: 0 1 auto;
    text-align: center;
    white-space: nowrap;
  }
  
  .btn-secondary {
    flex: 0 1 auto;
    text-align: center;
    white-space: nowrap;
  }
  
  /* CTA Section adjustments */
  .cta-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .cta-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  /* Preview content */
  .preview-content h2 {
    font-size: 1.8rem;
    padding: 0 10px;
  }
  
  .preview-content p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  * {
    max-width: 100%;
  }
  .services-section {
    padding: 40px 0;
  } 

  /*Services Styling*/
  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .service-title {
      font-size: 1.2rem;
      margin-bottom: 12px;
  }

  .service-description {
      font-size: 0.9rem;
  }

  .section-title {
      font-size: 1.8rem;
  }

  .section-subtitle {
      font-size: 1rem;
  }

  .philosophy-section {
      padding: 40px 0;
      margin: 30px 0;
  }

  .philosophy-quote {
      font-size: 1.4rem;
      margin-bottom: 20px;
  }

  .philosophy-text {
      font-size: 1rem;
      line-height: 1.7;
  }

  .philosophy-content {
    padding: 0 15px;
  }

  /* CTA & Porfolio Styling*/
  .case-study-section {
    padding: 40px 0;
  }
    
  .case-study-text h2 {
    font-size: 1.8rem;
  }
    
  .case-study-highlight {
    font-size: 2rem;
  }
    
  .stat-item {
    padding: 15px;
  }
    
  .stat-number {
    font-size: 2rem;
  }
    
  .case-study-visual {
    padding: 20px 15px;
  }
    
  .visual-chart {
    height: 150px;
    padding: 15px;
  }
    
  .chart-bar {
    width: 50px;
    font-size: 0.7rem;
    padding: 8px 3px;
  }
    
  .portfolio-section {
    padding: 40px 0;
  }
    
  .portfolio-item {
    padding: 25px 15px;
  }
    
  .portfolio-title {
    font-size: 1.4rem;
  }
    
    
  .final-cta-section {
    padding: 40px 0;
  }
    
  .cta-title {
    font-size: 1.8rem;
  }
    
  .cta-subtitle {
    font-size: 1.1rem;
  }
    
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
    
  .contact-item {
    padding: 25px 20px;
  }
    
  .contact-icon {
    font-size: 2rem;
  }
  .case-study-description{
    font-size: 1.15rem;
    text-align: center;
  }
}

/* Responsive Design : Mobile Optimization */
/* Small Screens: verticle stacking*/
@media (max-width: 360px) {
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.6rem;
}

  .service-card {
    padding: 18px 12px;
  }

  .service-icon {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .philosophy-quote {
    font-size: 1.2rem;
  }

  .philosophy-text {
    font-size: 0.95rem;
  }

  /* Styling for CTA & Portfolio & case study*/
  .case-study-section {
    padding: 40px 0;
}

  .case-study-text h2 {
      font-size: 1.8rem;
  }

  .case-study-highlight {
      font-size: 2rem;
  }

  .stat-item {
      padding: 15px;
  }

  .stat-number {
      font-size: 2rem;
  }

  .case-study-visual {
      padding: 20px 15px;
  }

  .visual-chart {
      height: 150px;
      padding: 15px;
  }

  .chart-bar {
      width: 50px;
      font-size: 0.7rem;
      padding: 8px 3px;
  }

  .portfolio-section {
      padding: 40px 0;
  }

  .portfolio-item {
      padding: 25px 15px;
  }

  .portfolio-title {
      font-size: 1.4rem;
  }



  .final-cta-section {
      padding: 40px 0;
  }

  .cta-title {
      font-size: 1.8rem;
  }

  .cta-subtitle {
      font-size: 1.1rem;
  }

  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }

  .contact-item {
      padding: 25px 20px;
  }

  .contact-icon {
      font-size: 2rem;
  }
  .case-study-description{
    font-size: 1rem;
    text-align: center;
  }
}

/* Serenity-Sakoon Image styling ALL */
.serenitysakoon-snapshot {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

/* Base image styles */
.responsive-site-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* Mobile: below 768px */
@media (max-width: 767px) {
  .serenitysakoon-snapshot {
      width: 100%;
  }
  
  .responsive-site-image {
      width: 100%;
      height: auto;
  }
}

/* Tablet: 768px to 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .serenitysakoon-snapshot {
      width: 100%;
  }
  
  .responsive-site-image {
      width: 100%;
      height: auto;
  }
}

/* Desktop: 1200px and up */
@media (min-width: 1200px) {
  .serenitysakoon-snapshot {
      width: 100%;
  }
  
  .responsive-site-image {
      width: 100%;
      height: auto;
  }
}