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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 183, 197, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.hero-video {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 3;
    border: 3px solid rgba(255,255,255,0.2);
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-video {
        width: 280px;
        height: 158px;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    .hero-video {
        width: 240px;
        height: 135px;
        bottom: -70px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        width: 200px;
        height: 113px;
        bottom: -60px;
        border: 2px solid rgba(255,255,255,0.2);
    }
}

@media (max-width: 360px) {
    .hero-video {
        width: 180px;
        height: 101px;
        bottom: -50px;
    }
}

/* What We Do Section */
.what-we-do {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.what-we-do h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

.what-we-do p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.service-icon {
    font-size: 3rem;
    color: #ee5a24;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 80px;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ee5a24;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Target Audience Section */
.target-audience {
    background: white;
    padding: 80px 0;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.audience-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.audience-list li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    border-left: 4px solid #ee5a24;
    font-size: 1.1rem;
}

/* Call Expectations Section */
.call-expectations {
    background: #f8f9fa;
    padding: 80px 0;
}

.call-expectations h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.expectation-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.tagline {
    margin-top: 30px !important;
    font-size: 1.5rem !important;
    font-weight: bold;
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-video {
        width: 280px;
        height: 158px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .hero-video {
        width: 240px;
        height: 135px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 50px;
    }

    .hero-video {
        width: 200px;
        height: 113px;
        border: 2px solid rgba(255,255,255,0.2);
    }
}

@media (max-width: 360px) {
    .hero-video {
        width: 180px;
        height: 101px;
    }
}
.our-clients {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9; /* Optional: subtle background */
}

.our-clients h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.clients-logos img {
  max-height: 60px; /* Adjust logo size */
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(60%); /* Optional: gray logos effect */
  transition: filter 0.3s ease;
}

.clients-logos img:hover {
  filter: none; /* Show color on hover */
}






