/* Global Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 8px;
  }
  

  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #475569;
    color: white;
  }

  
  .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.65));
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
  }
  
  /* Main Product Showcase */
  .home-first-section {
    display: flex;
    padding: 5rem 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .left-half {
    flex: 1;
    min-width: 300px;
  }
  
  .left-half h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .feature-list {
    margin-top: 2.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .feature-icon {
    margin-right: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
  }
  
  .feature-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
  }
  
  .feature-text p {
    margin: 0;
    color: var(--text-muted);
  }
  
  .right-half {
    flex: 1;
    min-width: 300px;
  }
  
  .right-half-div1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    gap: 0.75rem;
  }
  
  .grid-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .grid-item svg {
    height: 36px;
    width: 36px;
  }
  
  .grid-item span {
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  .explore-button {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .explore-button button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .explore-button button:hover {
    background-color: var(--primary-dark);
  }
  
  /* Feature Carousel */
  .feature-carousel {
    background-color: white;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  
  .feature-carousel h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
  }
  
  .carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
  }
  
  .carousel-item.active {
    opacity: 1;
    position: relative;
  }
  
  .feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  
  .feature-card .feature-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .carousel-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
  }
  
  /* Brand Section */
  .home-second-section {
    padding: 5rem 0;
    background-color: white;
  }
  
  .second-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .second-section-left-half, .second-section-right-half {
    flex: 1;
    min-width: 300px;
  }
  
  .makecloudlogo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .makecloudlogo {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
  
  .second-section-left-half h3 {
    margin: 0;
    font-size: 1.75rem;
  }
  
  .second-section-left-half h5 {
    margin: 0.25rem 0 0;
    color: var(--text-muted);
    font-weight: 500;
  }
  
  .action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .second-section-right-half h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
  }
  
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    background-color: var(--bg-light);
    transition: var(--transition);
  }
  
  .benefits-list li:hover {
    transform: translateX(5px);
  }
  
  .benefits-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
  }
  
  /* Trusted Brands Section */
  .home-third-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
  }
  
  .third-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .clientimgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  .clientimgs img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
  }
  
  .clientimgs img:hover {
    opacity: 1;
    filter: none;
  }
  
  .companyOverview {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
  }
  
  .companyOverview:hover {
    background-color: var(--primary-light);
  }
  
  /* Statistics Section */
  .home-fourth-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    color: white;
  }
  
  .about-makeclouds .header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .about-makeclouds h1 {
    font-size: 2.5rem;
    color: white;
  }
  
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .stat p {
    color: var(--text-muted);
    font-size: 1.1rem;
  }
  
  /* Privacy Section */
  .home-fifth-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
  }
  
  .home-fifth-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .home-fifth-section p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
  }
  
  .privacy-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .privacy-card {
    flex-basis: 300px;
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .card-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
  }
  
  /* Testimonial Section */
  .home-sixth-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
  }
  
  .home-sixth-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
  }
  
  .testimonial {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .testimonial:hover {
    box-shadow: var(--shadow-md);
  }
  
  .client-avatar {
    flex-shrink: 0;
  }
  
  .client-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .rating {
    margin-bottom: 0.75rem;
    color: #ffc107;
  }
  
  .testimonial-text h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .testimonial-text p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* Industry Solutions */
  .industry-solutions {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
  }
  
  .section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
  }
  
  .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .industry-card {
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
  }
  
  .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .industry-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
  }
  
  .industry-card h3 {
    margin-bottom: 1rem;
  }
  
  .learn-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 4rem 0;
    background-color: var(--primary-light);
  }
  
  .newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .newsletter-text {
    flex: 1;
    min-width: 300px;
  }
  
  .newsletter-text h2 {
    margin-bottom: 1rem;
  }
  
  .newsletter-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .newsletter-form {
    flex: 1;
    min-width: 300px;
  }
  
  .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .form-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
  }
  
  .form-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* CTA Section */
  .cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
  }
  
  .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
  }
  
  .cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-section .btn-secondary {
    background-color: transparent;
    border: 1px solid white;
  }
  
  .cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Blog Section */
  .blog-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
  }
  
  .blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .blog-image {
    height: 200px;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  
  .blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  
  .read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
  }
  
  .view-all {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .testimonial {
      flex-direction: column;
    }
    
    .newsletter-content {
      text-align: center;
    }
    
    .form-group {
      flex-direction: column;
    }
    
    .stats {
      gap: 2rem;
    }
    
    .stat {
      flex-basis: 40%;
    }
  }
  
  @media (max-width: 576px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .home-first-section,
    .second-section {
      padding: 3rem 1rem;
    }
    
    .grid-item {
      padding: 1rem;
    }
    
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
    }
    
    .stat {
      flex-basis: 100%;
    }
    
    .hero-cta {
      flex-direction: column;
      align-items: stretch;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .feature-item, .grid-item, .testimonial, .industry-card, .blog-card, .privacy-card {
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  /* Enhanced Accessibility */
  :focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Print Styles */
  @media print {
    .hero-section, .feature-carousel, .cta-section, .newsletter-section {
      display: none;
    }
    
    body {
      font-size: 12pt;
      line-height: 1.3;
      background: white;
      color: black;
    }
    
    a {
      text-decoration: underline;
      color: #000;
    }
    
    .container {
      max-width: 100%;
      width: 100%;
    }
  }