
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            padding: 20px;
            font-family: 'Poppins', sans-serif;
            background-color: #E9EAF8;
            color: #333;
            line-height: 1.6;
        }

        .hero-banner {
        position: relative;
    height: 690px;
    background:linear-gradient(rgb(84 36 97 / 40%), rgb(51 36 135 / 47%)), url(../img/movie2.jpg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 15px
        }

        .hero-content h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 1.2em;
            font-weight: 300;
        }

        .container {
            /* max-width: 1000px; */
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            background: white;
            margin: 40px auto;
            padding: 60px 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .section-title {
            text-align: center;
            font-size: 2em;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-subtitle {
padding-top: 30PX;
    text-align: center;
    color: #666;
    font-size: 1.05em;
        }

        .services-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .service-row {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .service-row.reverse {
            flex-direction: row-reverse;
        }

        .service-illustration {
            flex: 1;
            text-align: center;
        }

        .service-illustration img {
            max-width: 280px;
            width: 100%;
            height: auto;
        }

        .service-content {
            flex: 1;
        }

        .service-content h3 {
            color: #747ED1;
            font-size: 1.4em;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .service-content a {
        color: #747ED1;
    text-decoration: none;
    font-weight: 500;
    background-color: #E9EAF8;
    padding: 10px;
    border-radius: 11px;
        }

        .team-section {
            text-align: center;
        }

        .team-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 0px auto;
            display: block;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #f0f1ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
        }

        .feature-item h4 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        .feature-item p {
            color: #666;
            font-size: 0.9em;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .portfolio-card {
            background: #f5f5f5;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

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

        .portfolio-card img {
            width: 100%;
            /* height: 220px; */
            object-fit: cover;
        }

        .portfolio-info {
            padding: 20px;
    text-align: center;
    background: white;
        }

        .portfolio-info h4 {
            color: #333;
            margin-bottom: 5px;
            font-size: 1em;
        }

        .portfolio-info p {
            color: #999;
            font-size: 0.85em;
        }

        .btn-view-all {
     display: inline-block;
    background: #747ED1;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 500;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
        


        .email{
    background-color: #3a3f45;
    margin-top: 28px;
    width: 250px;
    padding: 18px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px
        }

        .logos-section {
            text-align: center;
            display: flex;
            justify-content: space-evenly;
        }

        .logos-section h3 {
            font-size: 1.3em;
            color: #333;
            margin-bottom: 10px;
        }

        .logos-section p {
            color: #666;
            margin-bottom: 40px;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            align-items: center;
            justify-items: center;
            margin-bottom: 30px;
        }

        .logos-grid img {
            max-width: 100px;
            height: auto;
        }

        .logos-grid img:hover {
            opacity: 1;
        }

        .testimonial-section {
            background: #f8f9fa;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e0e0e0;
        }

        .testimonial-info h5 {
            color: #333;
            font-size: 1em;
            margin-bottom: 3px;
        }

        .testimonial-info p {
            color: #999;
            font-size: 0.85em;
        }

        .testimonial-text {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
        }

        .stats-section {
            text-align: center;
            padding: 60px 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 40px;
        }

        .stat-item h3 {
            font-size: 3em;
            color: #747ED1;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-item p {
            color: #666;
            font-size: 1.1em;
        }

        footer {
            background-color: #21262C;
            color: white;
            padding: 50px 40px 30px;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        .footer-section p,
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-size: 0.9em;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3a3f45;
            color: #888;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .service-row,
            .service-row.reverse {
                flex-direction: column;
                gap: 30px;
            }

            .features-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2em;
            }
        }


        /* //////////////////////// */
        .col{
            display: flex;
           flex-direction: row;
          
        }
        .col .row1 img{
                width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    margin: 0px auto;
    display: block;
        }
        .col .h1{
       width: 100%;
    font-size: 21px;
    font-weight: 700;

        }
        

        .col .div11{
            display: grid;
            grid-template-columns: repeat(2 ,1fr);
            gap: 40px;
            margin-top: 20px;
        }

        .col .div11 .div1 h5 img{
            margin-left: 20px;
        }

        .col .div11 .div1 p{
            font-size: 15px;
        }

        .row2 .div2{
            margin-top: 100px;
            padding-bottom: 10px;
        }
         .row2 .div2 p{
           color: #AAB0BC; 
         }

         .row2 .div2 h4{
            font-size: 25px;
    font-weight: 700;
         }
         
         .div3 {
            display: flex;
    text-align: center;
    justify-content: center;
    gap: 50px;
         }
         .div3 span{
     color: #747ED1;
    font-size: 35px;
    font-weight: 600;
         }

         .div3 p{
            font-size: 15px;
    color: #60697B;
         }

         .row2 img{
                max-width: 800px;
    width: 100%;
    margin-bottom: -8PX;
         }

         .stats-section{
                text-align: center;
    padding: 80px 40px 0px;
         }

         .icon {
            color: white;
         }
        .icon i{
            font-size: 20px;
    margin-left: 5px;
        }

    .footer-section p{
        padding: 10px 0;
    }
    .form{
        display: flex;
    }


/* Mobile First Approach - Base Styles */

@media (max-width: 767px) {
  /* Hero Section */
  .hero-banner {
    height: 400px;
    margin: 10px;
    border-radius: 10px;
  }
  
  .hero-content h1 {
    font-size: 2em;
    padding: 0 15px;
  }
  
  .hero-content p {
    font-size: 1em;
    padding: 0 15px;
  }
  
  /* Container adjustments */
  .container {
    padding: 0 10px;
  }
  
  .section {
    margin: 20px auto;
    padding: 30px 20px;
  }
  
  /* Typography improvements */
  .section-title {
    font-size: 1.5em;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 1em;
    padding-top: 15px;
  }
  
  /* Service sections */
  .service-row, 
  .service-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-illustration img {
    max-width: 200px;
  }
  
  .service-content h3 {
    text-align: center;
  }
  
  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Portfolio grid */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Logos section */
  .logos-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .logos-grid img {
    max-width: 80px;
  }
  
  /* Stats section layout */
  .col {
    flex-direction: column;
  }
  
  .col .div11 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .row2 .div2 {
    margin-top: 40px;
    text-align: center;
  }
  
  .div3 {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* Footer improvements */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .form {
    flex-direction: column;
    align-items: center;
  }
  
  .email {
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .btn-view-all {
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
  }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-banner {
    height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
  }
  
  .service-row, 
  .service-row.reverse {
    gap: 40px;
  }
  
  .service-illustration img {
    max-width: 220px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .col {
    flex-direction: column;
  }
  
  .col .div11 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .div3 {
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Screen Optimizations */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }
  
  .service-content p img {
    margin-right: 5px;
  }
  
  .logos-section {
    align-items: center;
  }
  
  .div3 {
    justify-content: space-around;
  }
}

/* Additional Touch-Friendly Improvements */
@media (hover: none) and (pointer: coarse) {
  .service-content a,
  .btn-view-all {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  
  .portfolio-card {
    cursor: pointer;
  }
  
  .footer-section a {
    padding: 5px 0;
  }
}

/* High-DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-banner {
    background-image: linear-gradient(rgba(84, 36, 97, 0.4), rgba(51, 36, 135, 0.47)), 
                      url(../img/movie2.jpg.png);
    background-size: cover;
  }
  
  .team-image,
  .portfolio-card img,
  .service-illustration img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .hero-banner {
    background: #6c5ce7 !important;
    color: #000 !important;
    height: auto !important;
  }
  
  .btn-view-all,
  .form,
  .icon {
    display: none !important;
  }
  
  .section {
    box-shadow: none !important;
    break-inside: avoid;
  }
  
  footer {
    background: #fff !important;
    color: #000 !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .portfolio-card {
    transition: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* These styles will only apply if the user prefers dark mode */
  body {
    background-color: #E9EAF8;
  }
  
  .section {
    background:#FEFEFE;
    
  }
  
  
  .section-subtitle {
    color: #b0b0b0;
  }
  
  .service-content p {
    color: #b0b0b0;
  }
    
 
  
  
  .feature-item p {
    color: #b0b0b0;
  }
}

/* Accessibility Improvements */
@media (prefers-contrast: high) {
  .service-content a {
    background-color: #5a4fcf;
    color: white;
    border: 2px solid #5a4fcf;
  }
  
  .btn-view-all {
    border: 2px solid #5a4fcf;
  }
}

/* Orientation-specific adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-banner {
    height: 300px;
  }
  
  .hero-content h1 {
    font-size: 1.8em;
  }
}
        